提交 c4c7e3e6 编写于 作者: B bellard

ppc code gen size fix


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@554 c046a42c-6fe2-441c-8c8c-71466251a162
上级 b516f85c
...@@ -106,7 +106,7 @@ int tlb_set_page(CPUState *env, uint32_t vaddr, uint32_t paddr, int prot, ...@@ -106,7 +106,7 @@ int tlb_set_page(CPUState *env, uint32_t vaddr, uint32_t paddr, int prot,
/* maximum total translate dcode allocated */ /* maximum total translate dcode allocated */
/* NOTE: the translated code area cannot be too big because on some /* NOTE: the translated code area cannot be too big because on some
archs the range of "fast" function calls are limited. Here is a archs the range of "fast" function calls is limited. Here is a
summary of the ranges: summary of the ranges:
i386 : signed 32 bits i386 : signed 32 bits
...@@ -119,7 +119,7 @@ int tlb_set_page(CPUState *env, uint32_t vaddr, uint32_t paddr, int prot, ...@@ -119,7 +119,7 @@ int tlb_set_page(CPUState *env, uint32_t vaddr, uint32_t paddr, int prot,
#if defined(__alpha__) #if defined(__alpha__)
#define CODE_GEN_BUFFER_SIZE (2 * 1024 * 1024) #define CODE_GEN_BUFFER_SIZE (2 * 1024 * 1024)
#elif defined(__powerpc__) #elif defined(__powerpc__)
#define CODE_GEN_BUFFER_SIZE (6 * 1024) #define CODE_GEN_BUFFER_SIZE (6 * 1024 * 1024)
#else #else
#define CODE_GEN_BUFFER_SIZE (8 * 1024 * 1024) #define CODE_GEN_BUFFER_SIZE (8 * 1024 * 1024)
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册