Re: [PATCH 17/18] target/arm: Add cur_el parameter to arm_generate_debug_exceptions

2022-05-31 Thread Richard Henderson
On 5/31/22 05:07, Peter Maydell wrote: On Mon, 23 May 2022 at 22:07, Richard Henderson wrote: We often have this value already handy in the caller. Signed-off-by: Richard Henderson True, but it makes the function clunkier to use. Does it really make a noticeable difference to performance ?

Re: [PATCH 17/18] target/arm: Add cur_el parameter to arm_generate_debug_exceptions

2022-05-31 Thread Peter Maydell
On Mon, 23 May 2022 at 22:07, Richard Henderson wrote: > > We often have this value already handy in the caller. > > Signed-off-by: Richard Henderson True, but it makes the function clunkier to use. Does it really make a noticeable difference to performance ? thanks -- PMM

[PATCH 17/18] target/arm: Add cur_el parameter to arm_generate_debug_exceptions

2022-05-23 Thread Richard Henderson
We often have this value already handy in the caller. Signed-off-by: Richard Henderson --- target/arm/internals.h| 2 +- target/arm/debug_helper.c | 11 +-- target/arm/helper-a64.c | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/target/arm/internals.h b/tar