Re: [Qemu-devel] [PATCH v3 1/6] accel/tcg: adding structure to store TB statistics

2019-07-04 Thread Alex Bennée
vandersonmr writes: > We want to store statistics for each TB even after flushes. > We do not want to modify or grow the TB struct. > So we create a new struct to contain this statistics and > we link one of it to each TB as they are generated. > > Signed-off-by: Vanderson M. do Rosario > ---

Re: [Qemu-devel] [PATCH v3 1/6] accel/tcg: adding structure to store TB statistics

2019-07-04 Thread Alex Bennée
vandersonmr writes: > We want to store statistics for each TB even after flushes. > We do not want to modify or grow the TB struct. > So we create a new struct to contain this statistics and > we link one of it to each TB as they are generated. Mini note, what happened to the cover letter? --

[Qemu-devel] [PATCH v3 1/6] accel/tcg: adding structure to store TB statistics

2019-07-02 Thread vandersonmr
We want to store statistics for each TB even after flushes. We do not want to modify or grow the TB struct. So we create a new struct to contain this statistics and we link one of it to each TB as they are generated. Signed-off-by: Vanderson M. do Rosario --- accel/tcg/translate-all.c | 60 +