[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 05/39] thunk: Delete checks for old host definitions
From: |
Richard Henderson |
Subject: |
[PULL 05/39] thunk: Delete checks for old host definitions |
Date: |
Fri, 15 Sep 2023 20:29:37 -0700 |
From: Akihiko Odaki <akihiko.odaki@daynix.com>
Alpha, IA-64, and PA-RISC hosts are no longer supported.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20230808152314.102036-1-akihiko.odaki@daynix.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/exec/user/thunk.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/include/exec/user/thunk.h b/include/exec/user/thunk.h
index 6eedef48d8..2ebfecf58e 100644
--- a/include/exec/user/thunk.h
+++ b/include/exec/user/thunk.h
@@ -111,8 +111,7 @@ static inline int thunk_type_size(const argtype *type_ptr,
int is_host)
if (is_host) {
#if defined(HOST_X86_64)
return 8;
-#elif defined(HOST_ALPHA) || defined(HOST_IA64) || defined(HOST_MIPS) || \
- defined(HOST_PARISC) || defined(HOST_SPARC64)
+#elif defined(HOST_MIPS) || defined(HOST_SPARC64)
return 4;
#elif defined(HOST_PPC)
return sizeof(void *);
--
2.34.1
- [PULL 00/39] tcg patch queue, Richard Henderson, 2023/09/15
- [PULL 01/39] accel/tcg: mttcg remove false-negative halted assertion, Richard Henderson, 2023/09/15
- [PULL 02/39] accel/tcg: Fix the comment for CPUTLBEntryFull, Richard Henderson, 2023/09/15
- [PULL 03/39] util: Delete checks for old host definitions, Richard Henderson, 2023/09/15
- [PULL 05/39] thunk: Delete checks for old host definitions,
Richard Henderson <=
- [PULL 04/39] softmmu: Delete checks for old host definitions, Richard Henderson, 2023/09/15
- [PULL 07/39] tcg/loongarch64: Lower basic tcg vec ops to LSX, Richard Henderson, 2023/09/15
- [PULL 08/39] tcg: pass vece to tcg_target_const_match(), Richard Henderson, 2023/09/15
- [PULL 10/39] tcg/loongarch64: Lower add/sub_vec to vadd/vsub, Richard Henderson, 2023/09/15
- [PULL 11/39] tcg/loongarch64: Lower vector bitwise operations, Richard Henderson, 2023/09/15
- [PULL 09/39] tcg/loongarch64: Lower cmp_vec to vseq/vsle/vslt, Richard Henderson, 2023/09/15
- [PULL 12/39] tcg/loongarch64: Lower neg_vec to vneg, Richard Henderson, 2023/09/15
- [PULL 13/39] tcg/loongarch64: Lower mul_vec to vmul, Richard Henderson, 2023/09/15
- [PULL 15/39] tcg/loongarch64: Lower vector saturated ops, Richard Henderson, 2023/09/15
- [PULL 16/39] tcg/loongarch64: Lower vector shift vector ops, Richard Henderson, 2023/09/15