Home
last modified time | relevance | path

Searched refs:trap (Results 1 – 20 of 20) sorted by relevance

/qemu/tests/tcg/riscv64/
H A Dissue1060.S6 lla t0, trap
20 trap: label
/qemu/linux-user/s390x/
H A Dtarget_syscall.h23 unsigned short trap; member
/qemu/linux-user/include/host/ppc/
H A Dhost-signal.h35 return uc->uc_mcontext.regs->trap != 0x400 in host_signal_write()
/qemu/linux-user/ppc/
H A Dtarget_syscall.h45 abi_ulong trap; /* Reason for being here */ member
/qemu/linux-user/mips/
H A Dcpu_loop.c42 static void do_tr_or_bp(CPUMIPSState *env, unsigned int code, bool trap) in do_tr_or_bp() argument
54 if (trap) { in do_tr_or_bp()
/qemu/tests/tcg/tricore/c/
H A Dcrt0-tc2x.S64 #; install trap handlers
146 mov.a %a14,%d2 # move exit code to match trap handler
318 addih.a %a14,%a14,0 # if we trap, we fail
/qemu/target/loongarch/tcg/insn_trans/
H A Dtrans_arith.c.inc119 * This avoids potential host overflow trap and produces min.
121 * This avoids potential host overflow trap;
139 * This avoids potential host overflow trap;
H A Dtrans_privileged.c.inc230 /* CSR is readonly: trap. */
262 /* CSR is readonly: trap. */
/qemu/target/riscv/insn_trans/
H A Dtrans_rvm.c.inc264 * This avoids a possible host trap, and produces the required result of 0.
273 * This avoids a possible host trap, but produces an incorrect result.
306 * This avoids a possible host trap, but produces an incorrect result.
/qemu/target/arm/tcg/
H A Dpauth_helper.c468 bool trap = !(hcr & HCR_API); in pauth_check_trap() local
471 trap &= (hcr & (HCR_E2H | HCR_TGE)) != (HCR_E2H | HCR_TGE); in pauth_check_trap()
474 if (trap) { in pauth_check_trap()
/qemu/target/sparc/
H A Dtranslate.c2711 TCGv_i32 trap; in do_tcc() local
2723 trap = tcg_constant_i32((rs2_or_imm & mask) + TT_TRAP); in do_tcc()
2725 trap = tcg_temp_new_i32(); in do_tcc()
2726 tcg_gen_trunc_tl_i32(trap, gen_load_gpr(dc, rs1)); in do_tcc()
2728 tcg_gen_addi_i32(trap, trap, rs2_or_imm); in do_tcc()
2732 tcg_gen_add_i32(trap, trap, t2); in do_tcc()
2734 tcg_gen_andi_i32(trap, trap, mask); in do_tcc()
2735 tcg_gen_addi_i32(trap, trap, TT_TRAP); in do_tcc()
2743 gen_helper_raise_exception(tcg_env, trap); in do_tcc()
2750 lab = delay_exceptionv(dc, trap); in do_tcc()
/qemu/target/ppc/
H A Darch_dump.c43 reg_t trap; member
/qemu/target/i386/hvf/
H A Dx86.h98 uint16_t trap; member
/qemu/include/hw/ppc/
H A Dspapr_nested.h402 uint64_t trap; /* Reason for being here */ member
/qemu/docs/about/
H A Demulation.rst123 causing most hypervisors to trap and fault on them.
/qemu/target/openrisc/
H A Ddisas.c142 INSN(trap, "%d", a->k)
/qemu/docs/system/arm/
H A Demulation.rst76 - FEAT_IDST (ID space trap handling)
/qemu/docs/system/ppc/
H A Dpseries.rst168 trap and have to be emulated by the host. That means you can run KVM-PR inside
/qemu/target/m68k/
H A Dtranslate.c4664 DISAS_INSN(trap) in DISAS_INSN() argument
5859 BASE(trap, 4e40, fff0); in register_m68k_insns()
/qemu/target/arm/
H A Dhelper.c340 uint64_t trap = isread ? HCR_TRVM : HCR_TVM; in access_tvm_trvm() local
341 if (arm_hcr_el2_eff(env) & trap) { in access_tvm_trvm()