Searched refs:target_pc (Results 1 – 4 of 4) sorted by relevance
/openbmc/linux/arch/arm64/kvm/ |
H A D | reset.c | 280 unsigned long target_pc = reset_state.pc; in kvm_reset_vcpu() local 283 if (vcpu_mode_is_32bit(vcpu) && (target_pc & 1)) { in kvm_reset_vcpu() 284 target_pc &= ~1UL; in kvm_reset_vcpu() 292 *vcpu_pc(vcpu) = target_pc; in kvm_reset_vcpu()
|
/openbmc/qemu/target/riscv/insn_trans/ |
H A D | trans_rvi.c.inc | 84 TCGv target_pc = dest_gpr(ctx, a->rd); 85 gen_pc_plus_diff(target_pc, ctx, a->imm); 86 gen_set_gpr(ctx, a->rd, target_pc); 99 TCGv target_pc = tcg_temp_new(); 102 tcg_gen_addi_tl(target_pc, get_gpr(ctx, a->rs1, EXT_NONE), a->imm); 103 tcg_gen_andi_tl(target_pc, target_pc, (target_ulong)-2); 106 tcg_gen_ext32s_tl(target_pc, target_pc); 113 tcg_gen_andi_tl(t0, target_pc, 0x2); 120 tcg_gen_mov_tl(cpu_pc, target_pc); 137 gen_exception_inst_addr_mis(ctx, target_pc); [all …]
|
/openbmc/u-boot/arch/arm/include/asm/ |
H A D | armv7.h | 143 void _do_nonsec_entry(void *target_pc, unsigned long r0,
|
/openbmc/qemu/target/riscv/ |
H A D | translate.c | 573 TCGv target_pc = tcg_temp_new(); in gen_jal() local 574 gen_pc_plus_diff(target_pc, ctx, imm); in gen_jal() 575 gen_exception_inst_addr_mis(ctx, target_pc); in gen_jal()
|