Lines Matching refs:pc
349 sw_bp_addr = regs->pc; in guest_sw_bp_handler()
350 regs->pc += 4; in guest_sw_bp_handler()
355 hw_bp_addr = regs->pc; in guest_hw_bp_handler()
362 wp_addr = regs->pc; in guest_wp_handler()
369 ss_addr[ss_idx++] = regs->pc; in guest_ss_handler()
375 svc_addr = regs->pc; in guest_svc_handler()
471 uint64_t pc, cmd; in test_single_step_from_userspace() local
504 pc = vcpu_get_reg(vcpu, ARM64_CORE_REG(regs.pc)); in test_single_step_from_userspace()
505 TEST_ASSERT(!test_pc || pc == test_pc, in test_single_step_from_userspace()
507 pc, test_pc); in test_single_step_from_userspace()
509 if ((pc + 4) == (uint64_t)&iter_ss_end) { in test_single_step_from_userspace()
522 if ((pc >= (uint64_t)&iter_ss_begin) && in test_single_step_from_userspace()
523 (pc < (uint64_t)&iter_ss_end)) in test_single_step_from_userspace()
524 test_pc = pc + 4; in test_single_step_from_userspace()