Re: [Qemu-devel] [PATCH 24/26] tcg: Use CPUClass::tlb_fill in cputlb.c

2019-05-08 Thread Philippe Mathieu-Daudé
On 4/29/19 7:28 PM, Peter Maydell wrote: > On Wed, 3 Apr 2019 at 05:05, Richard Henderson > wrote: >> >> We can now use the CPUClass hook instead of a named function. >> >> Create a static tlb_fill function to avoid other changes within >> cputlb.c. This also which also isolates the asserts

Re: [Qemu-devel] [PATCH 24/26] tcg: Use CPUClass::tlb_fill in cputlb.c

2019-04-29 Thread Peter Maydell
On Wed, 3 Apr 2019 at 05:05, Richard Henderson wrote: > > We can now use the CPUClass hook instead of a named function. > > Create a static tlb_fill function to avoid other changes within > cputlb.c. This also which also isolates the asserts implied. I'm not sure what this sentence is trying to

[Qemu-devel] [PATCH 24/26] tcg: Use CPUClass::tlb_fill in cputlb.c

2019-04-02 Thread Richard Henderson
We can now use the CPUClass hook instead of a named function. Create a static tlb_fill function to avoid other changes within cputlb.c. This also which also isolates the asserts implied. Remove the named tlb_fill function from all of the targets. Signed-off-by: Richard Henderson ---