Re: [PATCH v5 9/9] target/ppc: Remove interrupt handler wrapper functions

2024-02-22 Thread BALATON Zoltan
On Thu, 22 Feb 2024, Harsh Prateek Bora wrote: On 1/19/24 03:31, BALATON Zoltan wrote: These wrappers call out to handle POWER7 and newer in separate functions but reduce to the generic case when TARGET_PPC64 is not defined. It is easy enough to include the switch in the beginning of the generic

Re: [PATCH v5 9/9] target/ppc: Remove interrupt handler wrapper functions

2024-02-22 Thread Harsh Prateek Bora
On 1/19/24 03:31, BALATON Zoltan wrote: These wrappers call out to handle POWER7 and newer in separate functions but reduce to the generic case when TARGET_PPC64 is not defined. It is easy enough to include the switch in the beginning of the generic functions to branch out to the specific func

Re: [PATCH v5 9/9] target/ppc: Remove interrupt handler wrapper functions

2024-02-22 Thread Harsh Prateek Bora
On 1/19/24 03:31, BALATON Zoltan wrote: These wrappers call out to handle POWER7 and newer in separate functions but reduce to the generic case when TARGET_PPC64 is not defined. It is easy enough to include the switch in the beginning of the generic functions to branch out to the specific func

[PATCH v5 9/9] target/ppc: Remove interrupt handler wrapper functions

2024-01-18 Thread BALATON Zoltan
These wrappers call out to handle POWER7 and newer in separate functions but reduce to the generic case when TARGET_PPC64 is not defined. It is easy enough to include the switch in the beginning of the generic functions to branch out to the specific functions and get rid of these wrappers. This avo