Re: [Qemu-devel] [PATCH 06/35] tcg-s390: Allocate the code_gen_buffer near the main program.

2010-06-11 Thread Aurelien Jarno
On Thu, Jun 10, 2010 at 03:05:16PM -0700, Richard Henderson wrote: > On 06/09/2010 03:59 PM, Aurelien Jarno wrote: > >> +start = (void *)0x9000UL; > > > > Is there any reason for this address? > > The default link address for the main application is 0x8000, > so this is near-by. >

Re: [Qemu-devel] [PATCH 06/35] tcg-s390: Allocate the code_gen_buffer near the main program.

2010-06-10 Thread Richard Henderson
On 06/09/2010 03:59 PM, Aurelien Jarno wrote: >> +start = (void *)0x9000UL; > > Is there any reason for this address? The default link address for the main application is 0x8000, so this is near-by. r~

Re: [Qemu-devel] [PATCH 06/35] tcg-s390: Allocate the code_gen_buffer near the main program.

2010-06-09 Thread Aurelien Jarno
On Fri, Jun 04, 2010 at 12:14:14PM -0700, Richard Henderson wrote: > This allows the use of direct calls to the helpers, > and a direct branch back to the epilogue. > > Signed-off-by: Richard Henderson > --- > exec.c |7 +++ > 1 files changed, 7 insertions(+), 0 deletions(-) > > diff --

[Qemu-devel] [PATCH 06/35] tcg-s390: Allocate the code_gen_buffer near the main program.

2010-06-04 Thread Richard Henderson
This allows the use of direct calls to the helpers, and a direct branch back to the epilogue. Signed-off-by: Richard Henderson --- exec.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/exec.c b/exec.c index bb3dcad..7bbfe60 100644 --- a/exec.c +++ b/exec.c @@ -519