From: blueswir1 Date: Sat, 26 Jul 2008 15:05:57 +0000 (+0000) Subject: Map code buffers below 2G on Sparc64 X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~14335 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=141ac468abbd1f1d17d8969e8ee1b62cce65091e;p=sdk%2Femulator%2Fqemu.git Map code buffers below 2G on Sparc64 git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4951 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/exec.c b/exec.c index 47f35e5..3ab4ad0 100644 --- a/exec.c +++ b/exec.c @@ -89,9 +89,9 @@ int nb_tbs; /* any access to the tbs or the page table must use this lock */ spinlock_t tb_lock = SPIN_LOCK_UNLOCKED; -#if defined(__arm__) -/* The prologue must be reachable with a direct jump. ARM has a - limited branch range (possibly also PPC and SPARC?) so place it in a +#if defined(__arm__) || defined(__sparc_v9__) +/* The prologue must be reachable with a direct jump. ARM and Sparc64 + have limited branch ranges (possibly also PPC) so place it in a section close to code segment. */ #define code_gen_section \ __attribute__((__section__(".gen_code"))) \ @@ -410,15 +410,23 @@ void code_gen_alloc(unsigned long tb_size) #if defined(__linux__) { int flags; + void *start = NULL; + flags = MAP_PRIVATE | MAP_ANONYMOUS; #if defined(__x86_64__) flags |= MAP_32BIT; /* Cannot map more than that */ if (code_gen_buffer_size > (800 * 1024 * 1024)) code_gen_buffer_size = (800 * 1024 * 1024); -#endif - code_gen_buffer = mmap(NULL, code_gen_buffer_size, - PROT_WRITE | PROT_READ | PROT_EXEC, +#elif defined(__sparc_v9__) + // Map the buffer below 2G, so we can use direct calls and branches + flags |= MAP_FIXED; + start = (void *) 0x60000000UL; + if (code_gen_buffer_size > (512 * 1024 * 1024)) + code_gen_buffer_size = (512 * 1024 * 1024); +#endif + code_gen_buffer = mmap(start, code_gen_buffer_size, + PROT_WRITE | PROT_READ | PROT_EXEC, flags, -1, 0); if (code_gen_buffer == MAP_FAILED) { fprintf(stderr, "Could not allocate dynamic translator buffer\n"); diff --git a/sparc64.ld b/sparc64.ld index 54d2f7d..f728634 100644 --- a/sparc64.ld +++ b/sparc64.ld @@ -69,6 +69,7 @@ SECTIONS . = ALIGN(0x100000) + (. & (0x100000 - 1)); .data : { + *(.gen_code) *(.data) *(.gnu.linkonce.d*) CONSTRUCTORS