/openbmc/qemu/target/ppc/ |
H A D | mmu-hash32.c | 57 bool ifetch = access_type == MMU_INST_FETCH; in ppc_hash32_bat_lookup() local 61 ifetch ? 'I' : 'D', ea); in ppc_hash32_bat_lookup() 62 if (ifetch) { in ppc_hash32_bat_lookup() 77 ifetch ? 'I' : 'D', i, ea, batu, batl); in ppc_hash32_bat_lookup() 104 __func__, ifetch ? 'I' : 'D', i, ea, in ppc_hash32_bat_lookup()
|
H A D | mmu_common.c | 197 bool ifetch = access_type == MMU_INST_FETCH; in get_bat_6xx_tlb() local 200 ifetch ? 'I' : 'D', eaddr); in get_bat_6xx_tlb() 201 if (ifetch) { in get_bat_6xx_tlb() 215 ifetch ? 'I' : 'D', i, eaddr, *BATu, *BATl); in get_bat_6xx_tlb() 252 TARGET_FMT_lx "\n", __func__, ifetch ? 'I' : 'D', in get_bat_6xx_tlb()
|
H A D | cpu.h | 1666 static inline int ppc_env_mmu_index(CPUPPCState *env, bool ifetch) in ppc_env_mmu_index() argument 1671 return (env->hflags >> (ifetch ? HFLAGS_IMMU_IDX : HFLAGS_DMMU_IDX)) & 7; in ppc_env_mmu_index()
|
/openbmc/linux/arch/m68k/ifpsp060/src/ |
H A D | isp.S | 1222 tst.l %d1 # ifetch error? 1234 tst.l %d1 # ifetch error? 1246 tst.l %d1 # ifetch error? 1258 tst.l %d1 # ifetch error? 1270 tst.l %d1 # ifetch error? 1282 tst.l %d1 # ifetch error? 1294 tst.l %d1 # ifetch error? 1306 tst.l %d1 # ifetch error? 1326 tst.l %d1 # ifetch error? 1390 tst.l %d1 # ifetch error? [all …]
|
H A D | pfpsp.S | 4834 tst.l %d1 # did ifetch fail? 4847 tst.l %d1 # did ifetch fail? 4860 tst.l %d1 # did ifetch fail? 4873 tst.l %d1 # did ifetch fail? 4886 tst.l %d1 # did ifetch fail? 4899 tst.l %d1 # did ifetch fail? 4912 tst.l %d1 # did ifetch fail? 4925 tst.l %d1 # did ifetch fail? 4948 tst.l %d1 # did ifetch fail? 4993 tst.l %d1 # did ifetch fail? [all …]
|
H A D | fpsp.S | 18785 tst.l %d1 # did ifetch fail? 18798 tst.l %d1 # did ifetch fail? 18811 tst.l %d1 # did ifetch fail? 18824 tst.l %d1 # did ifetch fail? 18837 tst.l %d1 # did ifetch fail? 18850 tst.l %d1 # did ifetch fail? 18863 tst.l %d1 # did ifetch fail? 18876 tst.l %d1 # did ifetch fail? 18899 tst.l %d1 # did ifetch fail? 18944 tst.l %d1 # did ifetch fail? [all …]
|
/openbmc/qemu/include/exec/ |
H A D | cpu-common.h | 264 static inline int cpu_mmu_index(CPUState *cs, bool ifetch) in cpu_mmu_index() argument 266 int ret = cs->cc->mmu_index(cs, ifetch); in cpu_mmu_index()
|
H A D | cpu-all.h | 291 static inline int cpu_mmu_index(CPUState *cs, bool ifetch) in cpu_mmu_index() argument
|
/openbmc/qemu/target/hppa/ |
H A D | cpu.c | 132 static int hppa_cpu_mmu_index(CPUState *cs, bool ifetch) in hppa_cpu_mmu_index() argument 136 if (env->psw & (ifetch ? PSW_C : PSW_D)) { in hppa_cpu_mmu_index()
|
/openbmc/qemu/target/sh4/ |
H A D | cpu.c | 91 static int sh4_cpu_mmu_index(CPUState *cs, bool ifetch) in sh4_cpu_mmu_index() argument 99 if (ifetch && (env->flags & TB_FLAG_DELAY_SLOT_RTE)) { in sh4_cpu_mmu_index()
|
/openbmc/qemu/target/openrisc/ |
H A D | cpu.c | 71 static int openrisc_cpu_mmu_index(CPUState *cs, bool ifetch) in openrisc_cpu_mmu_index() argument 75 if (env->sr & (ifetch ? SR_IME : SR_DME)) { in openrisc_cpu_mmu_index()
|
/openbmc/qemu/target/s390x/ |
H A D | cpu.c | 145 static int s390x_cpu_mmu_index(CPUState *cs, bool ifetch) in s390x_cpu_mmu_index() argument 147 return s390x_env_mmu_index(cpu_env(cs), ifetch); in s390x_cpu_mmu_index()
|
H A D | cpu.h | 394 static inline int s390x_env_mmu_index(CPUS390XState *env, bool ifetch) in s390x_env_mmu_index() argument 403 if (ifetch) { in s390x_env_mmu_index()
|
/openbmc/qemu/target/avr/ |
H A D | cpu.c | 50 static int avr_cpu_mmu_index(CPUState *cs, bool ifetch) in avr_cpu_mmu_index() argument 52 return ifetch ? MMU_CODE_IDX : MMU_DATA_IDX; in avr_cpu_mmu_index()
|
/openbmc/qemu/target/tricore/ |
H A D | cpu.c | 78 static int tricore_cpu_mmu_index(CPUState *cs, bool ifetch) in tricore_cpu_mmu_index() argument
|
/openbmc/qemu/target/alpha/ |
H A D | cpu.c | 79 static int alpha_cpu_mmu_index(CPUState *cs, bool ifetch) in alpha_cpu_mmu_index() argument
|
/openbmc/qemu/target/xtensa/ |
H A D | cpu.c | 77 static int xtensa_cpu_mmu_index(CPUState *cs, bool ifetch) in xtensa_cpu_mmu_index() argument
|
/openbmc/qemu/target/cris/ |
H A D | cpu.c | 59 static int cris_cpu_mmu_index(CPUState *cs, bool ifetch) in cris_cpu_mmu_index() argument
|
/openbmc/qemu/target/sparc/ |
H A D | cpu.c | 720 static int sparc_cpu_mmu_index(CPUState *cs, bool ifetch) in sparc_cpu_mmu_index() argument 732 if (ifetch in sparc_cpu_mmu_index()
|
/openbmc/qemu/target/microblaze/ |
H A D | cpu.c | 122 static int mb_cpu_mmu_index(CPUState *cs, bool ifetch) in mb_cpu_mmu_index() argument
|
/openbmc/qemu/include/hw/core/ |
H A D | cpu.h | 154 int (*mmu_index)(CPUState *cpu, bool ifetch);
|
/openbmc/qemu/target/m68k/ |
H A D | cpu.c | 59 static int m68k_cpu_mmu_index(CPUState *cs, bool ifetch) in m68k_cpu_mmu_index() argument
|
/openbmc/qemu/target/riscv/ |
H A D | cpu.h | 546 int riscv_env_mmu_index(CPURISCVState *env, bool ifetch);
|
H A D | cpu_helper.c | 37 int riscv_env_mmu_index(CPURISCVState *env, bool ifetch) in riscv_env_mmu_index() argument 46 if (!ifetch) { in riscv_env_mmu_index()
|
/openbmc/qemu/target/loongarch/ |
H A D | cpu.c | 367 static int loongarch_cpu_mmu_index(CPUState *cs, bool ifetch) in loongarch_cpu_mmu_index() argument
|