qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4176] Use a common constant for temp_buf size


From: Blue Swirl
Subject: [Qemu-devel] [4176] Use a common constant for temp_buf size
Date: Tue, 08 Apr 2008 19:29:55 +0000

Revision: 4176
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4176
Author:   blueswir1
Date:     2008-04-08 19:29:54 +0000 (Tue, 08 Apr 2008)

Log Message:
-----------
Use a common constant for temp_buf size

Modified Paths:
--------------
    trunk/cpu-defs.h
    trunk/translate-all.c

Modified: trunk/cpu-defs.h
===================================================================
--- trunk/cpu-defs.h    2008-04-08 18:37:39 UTC (rev 4175)
+++ trunk/cpu-defs.h    2008-04-08 19:29:54 UTC (rev 4176)
@@ -132,6 +132,7 @@
                    sizeof(target_phys_addr_t))];
 } CPUTLBEntry;
 
+#define CPU_TEMP_BUF_NLONGS 128
 #define CPU_COMMON                                                      \
     struct TranslationBlock *current_tb; /* currently executing TB  */  \
     /* soft mmu support */                                              \
@@ -145,7 +146,8 @@
     /* The meaning of the MMU modes is defined in the target code. */   \
     CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE];                  \
     struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE];           \
-    long temp_buf[128]; /* buffer for temporaries in the code generator */ \
+    /* buffer for temporaries in the code generator */                  \
+    long temp_buf[CPU_TEMP_BUF_NLONGS];                                 \
                                                                         \
     /* from this point: preserved by CPU reset */                       \
     /* ice debug support */                                             \

Modified: trunk/translate-all.c
===================================================================
--- trunk/translate-all.c       2008-04-08 18:37:39 UTC (rev 4175)
+++ trunk/translate-all.c       2008-04-08 19:29:54 UTC (rev 4176)
@@ -85,7 +85,7 @@
 {
     tcg_context_init(&tcg_ctx); 
     tcg_set_frame(&tcg_ctx, TCG_AREG0, offsetof(CPUState, temp_buf),
-                  128 * sizeof(long));
+                  CPU_TEMP_BUF_NLONGS * sizeof(long));
 }
 
 /* return non zero if the very first instruction is invalid so that






reply via email to

[Prev in Thread] Current Thread [Next in Thread]