* [Qemu-devel] [4951] Map code buffers below 2G on Sparc64
@ 2008-07-26 15:05 Blue Swirl
0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2008-07-26 15:05 UTC (permalink / raw)
To: qemu-devel
Revision: 4951
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4951
Author: blueswir1
Date: 2008-07-26 15:05:57 +0000 (Sat, 26 Jul 2008)
Log Message:
-----------
Map code buffers below 2G on Sparc64
Modified Paths:
--------------
trunk/exec.c
trunk/sparc64.ld
Modified: trunk/exec.c
===================================================================
--- trunk/exec.c 2008-07-26 11:21:03 UTC (rev 4950)
+++ trunk/exec.c 2008-07-26 15:05:57 UTC (rev 4951)
@@ -89,9 +89,9 @@
/* 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 @@
#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);
+#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(NULL, code_gen_buffer_size,
- PROT_WRITE | PROT_READ | PROT_EXEC,
+ 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");
Modified: trunk/sparc64.ld
===================================================================
--- trunk/sparc64.ld 2008-07-26 11:21:03 UTC (rev 4950)
+++ trunk/sparc64.ld 2008-07-26 15:05:57 UTC (rev 4951)
@@ -69,6 +69,7 @@
. = ALIGN(0x100000) + (. & (0x100000 - 1));
.data :
{
+ *(.gen_code)
*(.data)
*(.gnu.linkonce.d*)
CONSTRUCTORS
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-07-26 15:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-26 15:05 [Qemu-devel] [4951] Map code buffers below 2G on Sparc64 Blue Swirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).