Re: [Qemu-devel] [PATCH v4 23/26] tcg: Emit prologue to the beginning of code_gen_buffer

2015-10-01 Thread Aurelien Jarno
On 2015-09-30 15:09, Richard Henderson wrote: > By putting the prologue at the end, we risk overwriting the > prologue should our estimate of maximum TB size. Given the > two different placements of the call to tcg_prologue_init, > move the high water mark computation into tcg_prologue_init. > >

Re: [Qemu-devel] [PATCH v4 23/26] tcg: Emit prologue to the beginning of code_gen_buffer

2015-10-01 Thread Richard Henderson
On 10/01/2015 02:17 AM, Aurelien Jarno wrote: On 2015-09-30 15:09, Richard Henderson wrote: By putting the prologue at the end, we risk overwriting the prologue should our estimate of maximum TB size. Given the two different placements of the call to tcg_prologue_init, move the high water mark

[Qemu-devel] [PATCH v4 23/26] tcg: Emit prologue to the beginning of code_gen_buffer

2015-09-30 Thread Richard Henderson
By putting the prologue at the end, we risk overwriting the prologue should our estimate of maximum TB size. Given the two different placements of the call to tcg_prologue_init, move the high water mark computation into tcg_prologue_init. Reviewed-by: Peter Maydell