Re: [PATCH v3 07/10] target/ppc: optimize p8 exception handling routines

2024-10-07 Thread Nicholas Piggin
On Fri Sep 13, 2024 at 2:13 PM AEST, Harsh Prateek Bora wrote: > Most of the p8 exception handling accesses env->pending_interrupts and > env->spr[SPR_LPCR] at multiple places. Passing it directly as local > variables simplifies the code and avoids multiple indirect accesses. Reviewed-by: Nicholas

[PATCH v3 07/10] target/ppc: optimize p8 exception handling routines

2024-09-12 Thread Harsh Prateek Bora
Most of the p8 exception handling accesses env->pending_interrupts and env->spr[SPR_LPCR] at multiple places. Passing it directly as local variables simplifies the code and avoids multiple indirect accesses. Signed-off-by: Harsh Prateek Bora --- target/ppc/excp_helper.c | 60