[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 21/25] target/hppa: Use explicit big-endian LD/ST API
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 21/25] target/hppa: Use explicit big-endian LD/ST API |
Date: |
Fri, 4 Oct 2024 13:30:37 -0300 |
The HPPA architecture uses big endianness. Directly use
the big-endian LD/ST API.
Mechanical change using:
$ end=be; \
for acc in uw w l q tul; do \
sed -i -e "s/ld${acc}_p(/ld${acc}_${end}_p(/" \
-e "s/st${acc}_p(/st${acc}_${end}_p(/" \
$(git grep -wlE '(ld|st)t?u?[wlq]_p' target/hppa/); \
done
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/hppa/gdbstub.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/hppa/gdbstub.c b/target/hppa/gdbstub.c
index 0daa52f7af2..537d0d2dfff 100644
--- a/target/hppa/gdbstub.c
+++ b/target/hppa/gdbstub.c
@@ -150,7 +150,7 @@ int hppa_cpu_gdb_read_register(CPUState *cs, GByteArray
*mem_buf, int n)
int hppa_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
{
CPUHPPAState *env = cpu_env(cs);
- uint32_t val = ldl_p(mem_buf);
+ uint32_t val = ldl_be_p(mem_buf);
switch (n) {
case 0:
--
2.45.2
- Re: [PATCH v2 17/25] hw/m68k: Use explicit big-endian LD/ST API, (continued)
- [PATCH v2 18/25] target/m68k: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- [PATCH v2 20/25] target/sparc: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- [PATCH v2 19/25] hw/sparc: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- [PATCH v2 22/25] hw/s390x: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- [PATCH v2 23/25] target/s390x: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- [PATCH v2 21/25] target/hppa: Use explicit big-endian LD/ST API,
Philippe Mathieu-Daudé <=
- [PATCH v2 24/25] target/openrisc: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- [PATCH v2 25/25] hw/ppc/e500: Use explicit big-endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- Re: [PATCH v2 00/25] misc: Use explicit endian LD/ST API, Philippe Mathieu-Daudé, 2024/10/04
- Re: [PATCH v2 00/25] misc: Use explicit endian LD/ST API, Richard Henderson, 2024/10/04