Symbol: InstructionPointer
headers/private/debugger/arch/CpuState.h
29
virtual target_addr_t InstructionPointer() const = 0;
headers/private/debugger/model/StackFrame.h
55
target_addr_t InstructionPointer() const
src/apps/debugger/user_interface/cli/commands/CliStackTraceCommand.cpp
64
(uint64)frame->FrameAddress(), (uint64)frame->InstructionPointer());
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2265
ScrollToAddress(fStackFrame->InstructionPointer());
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2308
ScrollToAddress(fStackFrame->InstructionPointer());
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
700
target_addr_t ip = frame->InstructionPointer();
src/apps/debugger/user_interface/gui/team_window/StackTraceView.cpp
78
value.SetTo(frame->InstructionPointer());
src/kits/debugger/arch/Architecture.cpp
127
target_addr_t instructionPointer = cpuState->InstructionPointer();
src/kits/debugger/arch/Architecture.cpp
157
&& nextFrame->ReturnAddress() == cpuState->InstructionPointer()) {
src/kits/debugger/arch/x86/CpuStateX86.cpp
121
x86State->eip = InstructionPointer();
src/kits/debugger/arch/x86/CpuStateX86.h
92
virtual target_addr_t InstructionPointer() const;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
767
target_addr_t previousIP = state->InstructionPointer();
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
158
x64State->rip = InstructionPointer();
src/kits/debugger/arch/x86_64/CpuStateX8664.h
118
virtual target_addr_t InstructionPointer() const;
src/kits/debugger/controllers/DebugReportGenerator.cpp
538
target_addr_t ip = frame->InstructionPointer();
src/kits/debugger/controllers/DebugReportGenerator.cpp
596
frame->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
161
target_addr_t instructionPointer = cpuState->InstructionPointer();
src/kits/debugger/controllers/ThreadHandler.cpp
176
cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
379
TRACE_CONTROL(" ip: %#" B_PRIx64 "\n", frame->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
381
target_addr_t frameIP = frame->GetCpuState()->InstructionPointer();
src/kits/debugger/controllers/ThreadHandler.cpp
578
frame->InstructionPointer(), statement) != B_OK) {
src/kits/debugger/controllers/ThreadHandler.cpp
605
cpuState->InstructionPointer(), info, cpuState) != B_OK) {
src/kits/debugger/controllers/ThreadHandler.cpp
611
_SingleStepThread(cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
625
_RunThread(cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
715
cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
719
_RunThread(cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
725
&& fSteppedOverFunctionAddress != cpuState->InstructionPointer()) {
src/kits/debugger/controllers/ThreadHandler.cpp
747
cpuState->InstructionPointer())) {
src/kits/debugger/controllers/ThreadHandler.cpp
767
cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
771
_RunThread(cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
804
cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
810
if (fStepStatement->ContainsAddress(cpuState->InstructionPointer())) {
src/kits/debugger/controllers/ThreadHandler.cpp
811
_SingleStepThread(cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
838
cpuState->InstructionPointer())
src/kits/debugger/controllers/ThreadHandler.cpp
840
_SingleStepThread(cpuState->InstructionPointer());
src/kits/debugger/controllers/ThreadHandler.cpp
850
if (!fStepStatement->ContainsAddress(cpuState->InstructionPointer())) {
src/kits/debugger/controllers/ThreadHandler.cpp
897
cpuState->InstructionPointer());
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
646
= cpuState->InstructionPointer() - fRelocationDelta;
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
692
cpuState, framePointer, cpuState->InstructionPointer(),
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
702
frame->SetReturnAddress(previousCpuState->InstructionPointer());
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
1045
fTypeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
1075
fTypeContext->InstructionPointer(), fTypeContext->FramePointer(),
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
1099
fTypeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
1406
fTypeContext->TargetInterface(), fTypeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
632
fTypeContext->InstructionPointer(), fTypeContext->FramePointer(),
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
643
fTypeContext->InstructionPointer(), fTypeContext->FramePointer(),
src/kits/debugger/debug_info/DwarfTypeFactory.cpp
996
fTypeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
1055
typeContext->TargetInterface(), typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
1093
typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
1112
typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
388
typeContext->TargetInterface(), typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
800
typeContext->TargetInterface(), typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
816
typeContext->TargetInterface(), typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.cpp
831
typeContext->TargetInterface(), typeContext->InstructionPointer(),
src/kits/debugger/debug_info/DwarfTypes.h
74
target_addr_t InstructionPointer() const
src/kits/debugger/user_interface/util/UiUtils.cpp
123
name.String(), frame->InstructionPointer() - baseAddress);