Re: [Qemu-devel] [PATCH v7 1/9] tcg: pass down TranslationBlock to tcg_code_gen

2016-02-26 Thread Richard Henderson
On 02/22/2016 07:59 AM, Alex Bennée wrote: > My later debugging patches need access to the origin PC which is held in > the TranslationBlock structure. Pass down the whole structure as it also > holds the information about the code start point. > > Signed-off-by: Alex Bennée > > --- > v1 > - ch

[Qemu-devel] [PATCH v7 1/9] tcg: pass down TranslationBlock to tcg_code_gen

2016-02-22 Thread Alex Bennée
My later debugging patches need access to the origin PC which is held in the TranslationBlock structure. Pass down the whole structure as it also holds the information about the code start point. Signed-off-by: Alex Bennée --- v1 - checkpatch fixes v5 - much simplified due to changes since las