Home
last modified time | relevance | path

Searched refs:ifetch (Results 1 – 25 of 29) sorted by relevance

12

/openbmc/qemu/target/ppc/
H A Dmmu-hash32.c57 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 Dmmu_common.c197 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 Dcpu.h1666 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 Disp.S1222 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 Dpfpsp.S4834 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 Dfpsp.S18785 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 Dcpu-common.h264 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 Dcpu-all.h291 static inline int cpu_mmu_index(CPUState *cs, bool ifetch) in cpu_mmu_index() argument
/openbmc/qemu/target/hppa/
H A Dcpu.c132 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 Dcpu.c91 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 Dcpu.c71 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 Dcpu.c145 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 Dcpu.h394 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 Dcpu.c50 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 Dcpu.c78 static int tricore_cpu_mmu_index(CPUState *cs, bool ifetch) in tricore_cpu_mmu_index() argument
/openbmc/qemu/target/alpha/
H A Dcpu.c79 static int alpha_cpu_mmu_index(CPUState *cs, bool ifetch) in alpha_cpu_mmu_index() argument
/openbmc/qemu/target/xtensa/
H A Dcpu.c77 static int xtensa_cpu_mmu_index(CPUState *cs, bool ifetch) in xtensa_cpu_mmu_index() argument
/openbmc/qemu/target/cris/
H A Dcpu.c59 static int cris_cpu_mmu_index(CPUState *cs, bool ifetch) in cris_cpu_mmu_index() argument
/openbmc/qemu/target/sparc/
H A Dcpu.c720 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 Dcpu.c122 static int mb_cpu_mmu_index(CPUState *cs, bool ifetch) in mb_cpu_mmu_index() argument
/openbmc/qemu/include/hw/core/
H A Dcpu.h154 int (*mmu_index)(CPUState *cpu, bool ifetch);
/openbmc/qemu/target/m68k/
H A Dcpu.c59 static int m68k_cpu_mmu_index(CPUState *cs, bool ifetch) in m68k_cpu_mmu_index() argument
/openbmc/qemu/target/riscv/
H A Dcpu.h546 int riscv_env_mmu_index(CPURISCVState *env, bool ifetch);
H A Dcpu_helper.c37 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 Dcpu.c367 static int loongarch_cpu_mmu_index(CPUState *cs, bool ifetch) in loongarch_cpu_mmu_index() argument

12