mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 09:31:55 +00:00
89c33337fd
Now that CONFIG_TCG_PASS_AREG0 is enabled for all targets, remove dead code and support for !CONFIG_TCG_PASS_AREG0 case. Remove dyngen-exec.h and all references to it. Although included by hw/spapr_hcall.c, it does not seem to use it. Remove unused HELPER_CFLAGS. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
37 lines
1.6 KiB
C
37 lines
1.6 KiB
C
/*
|
|
* Software MMU support
|
|
*
|
|
* Declare helpers used by TCG for qemu_ld/st ops.
|
|
*
|
|
* Used by softmmu_exec.h, TCG targets and exec-all.h.
|
|
*
|
|
*/
|
|
#ifndef SOFTMMU_DEFS_H
|
|
#define SOFTMMU_DEFS_H
|
|
|
|
uint8_t helper_ldb_mmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stb_mmu(CPUArchState *env, target_ulong addr, uint8_t val,
|
|
int mmu_idx);
|
|
uint16_t helper_ldw_mmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stw_mmu(CPUArchState *env, target_ulong addr, uint16_t val,
|
|
int mmu_idx);
|
|
uint32_t helper_ldl_mmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stl_mmu(CPUArchState *env, target_ulong addr, uint32_t val,
|
|
int mmu_idx);
|
|
uint64_t helper_ldq_mmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stq_mmu(CPUArchState *env, target_ulong addr, uint64_t val,
|
|
int mmu_idx);
|
|
|
|
uint8_t helper_ldb_cmmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stb_cmmu(CPUArchState *env, target_ulong addr, uint8_t val,
|
|
int mmu_idx);
|
|
uint16_t helper_ldw_cmmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stw_cmmu(CPUArchState *env, target_ulong addr, uint16_t val,
|
|
int mmu_idx);
|
|
uint32_t helper_ldl_cmmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stl_cmmu(CPUArchState *env, target_ulong addr, uint32_t val,
|
|
int mmu_idx);
|
|
uint64_t helper_ldq_cmmu(CPUArchState *env, target_ulong addr, int mmu_idx);
|
|
void helper_stq_cmmu(CPUArchState *env, target_ulong addr, uint64_t val,
|
|
int mmu_idx);
|
|
#endif
|