Re: [Qemu-devel] [PATCH 14/22] tcg: take .helpers out of TCGContext

2017-07-12 Thread Alex Bennée
Emilio G. Cota writes: > Before TCGContext is made thread-local. > > The hash table becomes read-only after it is filled in, > so we can save space by keeping just a global pointer to it. > > Signed-off-by: Emilio G. Cota Reviewed-by: Alex Bennée > --- > tcg/tcg.h | 2 -- > tcg/tcg.c | 10

Re: [Qemu-devel] [PATCH 14/22] tcg: take .helpers out of TCGContext

2017-07-09 Thread Richard Henderson
On 07/08/2017 09:50 PM, Emilio G. Cota wrote: Before TCGContext is made thread-local. The hash table becomes read-only after it is filled in, so we can save space by keeping just a global pointer to it. Signed-off-by: Emilio G. Cota --- tcg/tcg.h | 2 -- tcg/tcg.c | 10 +- 2 files

[Qemu-devel] [PATCH 14/22] tcg: take .helpers out of TCGContext

2017-07-09 Thread Emilio G. Cota
Before TCGContext is made thread-local. The hash table becomes read-only after it is filled in, so we can save space by keeping just a global pointer to it. Signed-off-by: Emilio G. Cota --- tcg/tcg.h | 2 -- tcg/tcg.c | 10 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --g