[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH v3 01/28] target/arm: rename handle_semihosting to tcg_handle
From: |
Fabiano Rosas |
Subject: |
[RFC PATCH v3 01/28] target/arm: rename handle_semihosting to tcg_handle_semihosting |
Date: |
Fri, 13 Jan 2023 11:03:52 -0300 |
From: Claudio Fontana <cfontana@suse.de>
make it clearer from the name that this is a tcg-only function.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/arm/helper.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/arm/helper.c b/target/arm/helper.c
index 1d74b95971..ebf70777d9 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -10800,7 +10800,7 @@ static void arm_cpu_do_interrupt_aarch64(CPUState *cs)
* trapped to the hypervisor in KVM.
*/
#ifdef CONFIG_TCG
-static void handle_semihosting(CPUState *cs)
+static void tcg_handle_semihosting(CPUState *cs)
{
ARMCPU *cpu = ARM_CPU(cs);
CPUARMState *env = &cpu->env;
@@ -10862,7 +10862,7 @@ void arm_cpu_do_interrupt(CPUState *cs)
*/
#ifdef CONFIG_TCG
if (cs->exception_index == EXCP_SEMIHOST) {
- handle_semihosting(cs);
+ tcg_handle_semihosting(cs);
return;
}
#endif
--
2.35.3
- [RFC PATCH v3 00/28] target/arm: Allow CONFIG_TCG=n builds, Fabiano Rosas, 2023/01/13
- [RFC PATCH v3 01/28] target/arm: rename handle_semihosting to tcg_handle_semihosting,
Fabiano Rosas <=
- [RFC PATCH v3 04/28] target/arm: Move PC alignment check, Fabiano Rosas, 2023/01/13
- [RFC PATCH v3 03/28] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(), Fabiano Rosas, 2023/01/13
- [RFC PATCH v3 02/28] target/arm: wrap psci call with tcg_enabled, Fabiano Rosas, 2023/01/13
- [RFC PATCH v3 09/28] target/arm: move translate modules to tcg/, Fabiano Rosas, 2023/01/13
- [RFC PATCH v3 06/28] target/arm: Move cpregs code into cpregs.c, Fabiano Rosas, 2023/01/13
- [RFC PATCH v3 05/28] target/arm: Move cpregs code out of cpu.h, Fabiano Rosas, 2023/01/13