diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-29 17:44:53 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-03-12 11:46:17 +0100 |
commit | 7ab7428199edb271fee5308c818f59270487bbe7 (patch) | |
tree | 8ff31fafde63968a7a2d5e1485f133f88b45f0e7 /target/hexagon/gdbstub.c | |
parent | 2df4ab2fbc95076ab2f02f34da75a131e1594f24 (diff) | |
download | qemu-7ab7428199edb271fee5308c818f59270487bbe7.zip qemu-7ab7428199edb271fee5308c818f59270487bbe7.tar.gz qemu-7ab7428199edb271fee5308c818f59270487bbe7.tar.bz2 |
target/hexagon: Prefer fast cpu_env() over slower CPU QOM cast macro
Mechanical patch produced running the command documented
in scripts/coccinelle/cpu_env.cocci_template header.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Brian Cain <bcain@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20240129164514.73104-12-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/hexagon/gdbstub.c')
-rw-r--r-- | target/hexagon/gdbstub.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/target/hexagon/gdbstub.c b/target/hexagon/gdbstub.c index 6007e64..502c698 100644 --- a/target/hexagon/gdbstub.c +++ b/target/hexagon/gdbstub.c @@ -22,8 +22,7 @@ int hexagon_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n) { - HexagonCPU *cpu = HEXAGON_CPU(cs); - CPUHexagonState *env = &cpu->env; + CPUHexagonState *env = cpu_env(cs); if (n == HEX_REG_P3_0_ALIASED) { uint32_t p3_0 = 0; @@ -42,8 +41,7 @@ int hexagon_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n) int hexagon_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n) { - HexagonCPU *cpu = HEXAGON_CPU(cs); - CPUHexagonState *env = &cpu->env; + CPUHexagonState *env = cpu_env(cs); if (n == HEX_REG_P3_0_ALIASED) { uint32_t p3_0 = ldtul_p(mem_buf); |