[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 33/34] accel/tcg: Remove cpu_ldsb_code / cpu_ldsw_code
From: |
Richard Henderson |
Subject: |
[PULL 33/34] accel/tcg: Remove cpu_ldsb_code / cpu_ldsw_code |
Date: |
Wed, 15 May 2024 09:52:46 +0200 |
From: Philippe Mathieu-Daudé <philmd@linaro.org>
Previous commits replaced them by translator_ld* calls.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20240405131532.40913-1-philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/exec/cpu_ldst.h | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h
index 11ba3778ba..71009f84f5 100644
--- a/include/exec/cpu_ldst.h
+++ b/include/exec/cpu_ldst.h
@@ -355,16 +355,6 @@ uint32_t cpu_lduw_code(CPUArchState *env, abi_ptr addr);
uint32_t cpu_ldl_code(CPUArchState *env, abi_ptr addr);
uint64_t cpu_ldq_code(CPUArchState *env, abi_ptr addr);
-static inline int cpu_ldsb_code(CPUArchState *env, abi_ptr addr)
-{
- return (int8_t)cpu_ldub_code(env, addr);
-}
-
-static inline int cpu_ldsw_code(CPUArchState *env, abi_ptr addr)
-{
- return (int16_t)cpu_lduw_code(env, addr);
-}
-
/**
* tlb_vaddr_to_host:
* @env: CPUArchState
--
2.34.1
- [PULL 23/34] target/hexagon: Use translator_ldl in pkt_crosses_page, (continued)
- [PULL 23/34] target/hexagon: Use translator_ldl in pkt_crosses_page, Richard Henderson, 2024/05/15
- [PULL 27/34] target/cris: Use translator_ld* in cris_fetch, Richard Henderson, 2024/05/15
- [PULL 18/34] disas: Split disas.c, Richard Henderson, 2024/05/15
- [PULL 19/34] disas: Use translator_st to get disassembly data, Richard Henderson, 2024/05/15
- [PULL 20/34] accel/tcg: Introduce translator_fake_ld, Richard Henderson, 2024/05/15
- [PULL 21/34] target/s390x: Fix translator_fake_ld length, Richard Henderson, 2024/05/15
- [PULL 11/34] plugins: Use translator_st for qemu_plugin_insn_data, Richard Henderson, 2024/05/15
- [PULL 26/34] target/avr: Use translator_lduw, Richard Henderson, 2024/05/15
- [PULL 10/34] accel/tcg: Implement translator_st, Richard Henderson, 2024/05/15
- [PULL 25/34] target/i386: Use translator_ldub for everything, Richard Henderson, 2024/05/15
- [PULL 33/34] accel/tcg: Remove cpu_ldsb_code / cpu_ldsw_code,
Richard Henderson <=
- [PULL 30/34] target/rx: Use translator_ld*, Richard Henderson, 2024/05/15
- [PULL 34/34] tcg/loongarch64: Fill out tcg_out_{ld, st} for vector regs, Richard Henderson, 2024/05/15
- [PULL 31/34] target/xtensa: Use translator_ldub in xtensa_insn_len, Richard Henderson, 2024/05/15
- [PULL 29/34] target/riscv: Use translator_ld* for everything, Richard Henderson, 2024/05/15
- [PULL 22/34] target/s390x: Disassemble EXECUTEd instructions, Richard Henderson, 2024/05/15
- [PULL 24/34] target/microblaze: Use translator_ldl, Richard Henderson, 2024/05/15
- [PULL 32/34] target/s390x: Use translator_lduw in get_next_pc, Richard Henderson, 2024/05/15
- [PULL 28/34] target/cris: Use cris_fetch in translate_v10.c.inc, Richard Henderson, 2024/05/15
- Re: [PULL 00/34] tcg patch queue, Richard Henderson, 2024/05/15