Home
last modified time | relevance | path

Searched refs:next_pc (Results 1 – 15 of 15) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp285 return WritePC(next_pc); in EmulateBEQZ64()
305 return WritePC(next_pc); in EmulateBNEZ64()
326 return WritePC(next_pc); in EmulateBCEQZ64()
348 return WritePC(next_pc); in EmulateBCNEZ64()
371 return WritePC(next_pc); in EmulateJIRL64()
383 return WritePC(next_pc); in EmulateB64()
399 return WritePC(next_pc); in EmulateBL64()
420 return WritePC(next_pc); in EmulateBEQ64()
443 return WritePC(next_pc); in EmulateBNE64()
468 return WritePC(next_pc); in EmulateBLT64()
[all …]
/openbsd/gnu/llvm/lldb/examples/python/
H A Ddiagnose_unwind.py101 next_pc = 0
108 next_pc = process.ReadPointerFromMemory(
111 next_pc = 0
116 if target.triple[0:3] == "arm" and (next_pc & 1) == 1:
117 next_pc = next_pc & ~1
118 cur_pc = next_pc
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DNativeProcessSoftwareSingleStep.cpp136 lldb::addr_t next_pc; in SetupSoftwareSingleStepping() local
141 next_pc = pc_it->second.GetAsUInt64(); in SetupSoftwareSingleStepping()
152 next_pc = register_context.GetPC() + emulator_up->GetOpcode().GetByteSize(); in SetupSoftwareSingleStepping()
173 error = process.SetBreakpoint(next_pc, size_hint, /*hardware=*/false); in SetupSoftwareSingleStepping()
182 m_threads_stepping_with_breakpoint.insert({thread.GetID(), next_pc}); in SetupSoftwareSingleStepping()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dfrv-tdep.c567 CORE_ADDR next_pc; in frv_analyze_prologue() local
606 next_pc = pc + 4; in frv_analyze_prologue()
673 last_prologue_pc = next_pc; in frv_analyze_prologue()
690 last_prologue_pc = next_pc; in frv_analyze_prologue()
729 last_prologue_pc = next_pc; in frv_analyze_prologue()
794 last_prologue_pc = next_pc; in frv_analyze_prologue()
817 last_prologue_pc = next_pc; in frv_analyze_prologue()
858 last_prologue_pc = next_pc; in frv_analyze_prologue()
902 last_prologue_pc = next_pc; in frv_analyze_prologue()
932 last_prologue_pc = next_pc; in frv_analyze_prologue()
[all …]
H A Dia64-tdep.c1021 CORE_ADDR next_pc; in examine_prologue() local
1056 if (pc < lim_pc && next_pc in examine_prologue()
1076 last_prologue_pc = next_pc; in examine_prologue()
1077 pc = next_pc; in examine_prologue()
1082 if (pc < lim_pc && next_pc in examine_prologue()
1097 last_prologue_pc = next_pc; in examine_prologue()
1116 if (next_pc == 0) in examine_prologue()
1145 last_prologue_pc = next_pc; in examine_prologue()
1163 last_prologue_pc = next_pc; in examine_prologue()
1169 last_prologue_pc = next_pc; in examine_prologue()
[all …]
H A Dalpha-tdep.c1443 static CORE_ADDR next_pc; in alpha_software_single_step() local
1451 next_pc = alpha_next_pc (pc); in alpha_software_single_step()
1453 target_insert_breakpoint (next_pc, break_mem); in alpha_software_single_step()
1457 target_remove_breakpoint (next_pc, break_mem); in alpha_software_single_step()
1458 write_pc (next_pc); in alpha_software_single_step()
H A Ds390-tdep.c1229 CORE_ADDR next_pc; in s390_analyze_prologue() local
1258 for (pc = start_pc; pc > 0 && pc < current_pc; pc = next_pc) in s390_analyze_prologue()
1280 next_pc = pc + insn_len; in s390_analyze_prologue()
1560 pv_set_to_constant (&data->gpr[r1], next_pc); in s390_analyze_prologue()
1565 pv_set_to_constant (&data->gpr[r1], next_pc); in s390_analyze_prologue()
1566 next_pc = pc + i2 * 2; in s390_analyze_prologue()
1570 if (next_pc <= pc) in s390_analyze_prologue()
1607 result = next_pc; in s390_analyze_prologue()
H A Dcris-tdep.c401 static CORE_ADDR next_pc = 0; variable
1828 next_pc = (CORE_ADDR) inst_env.reg[PC_REGNUM]; in cris_software_single_step()
1829 target_insert_breakpoint (next_pc, break_mem[0]); in cris_software_single_step()
1831 && (CORE_ADDR) inst_env.branch_break_address != next_pc) in cris_software_single_step()
1843 target_remove_breakpoint (next_pc, break_mem[0]); in cris_software_single_step()
H A Darm-tdep.c1840 static int next_pc; /* State between setting and unsetting. */ in arm_software_single_step() local
1845 next_pc = arm_get_next_pc (read_register (ARM_PC_REGNUM)); in arm_software_single_step()
1846 target_insert_breakpoint (next_pc, break_mem); in arm_software_single_step()
1849 target_remove_breakpoint (next_pc, break_mem); in arm_software_single_step()
H A Dmips-tdep.c2178 static CORE_ADDR next_pc; in mips_software_single_step() local
2186 next_pc = mips_next_pc (pc); in mips_software_single_step()
2188 target_insert_breakpoint (next_pc, break_mem); in mips_software_single_step()
2191 target_remove_breakpoint (next_pc, break_mem); in mips_software_single_step()
H A DChangeLog-19901971 * sparc-tdep.c (single_step): Set next_pc, npc4 within
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/arm/
H A DDNBArchImpl.h108 thumb_static_data_t *thumbStaticData, nub_addr_t *next_pc);
/openbsd/gnu/usr.bin/gcc/gcc/java/
H A Djcf-write.c2758 int next_pc = block->next == NULL ? pc : block->next->pc; local
2759 int new_size = next_pc - block->pc;
/openbsd/gnu/gcc/gcc/cp/
H A DChangeLog-19985701 and next_pc.
/openbsd/gnu/usr.bin/gcc/gcc/cp/
H A DChangeLog.212489 and next_pc.