Home
last modified time | relevance | path

Searched refs:GetInstructionAtIndex (Results 1 – 23 of 23) sorted by relevance

/llvm-project-15.0.7/lldb/source/API/
H A DSBInstructionList.cpp60 SBInstruction SBInstructionList::GetInstructionAtIndex(uint32_t idx) { in GetInstructionAtIndex() function in SBInstructionList
67 m_opaque_sp->GetInstructionList().GetInstructionAtIndex(idx)); in GetInstructionAtIndex()
83 addr = GetInstructionAtIndex(i).GetAddress(); in GetInstructionsCount()
91 SBInstruction insn = GetInstructionAtIndex(i); in GetInstructionsCount()
156 m_opaque_sp->GetInstructionList().GetInstructionAtIndex(i).get(); in GetDescription()
185 if (!GetInstructionAtIndex((uint32_t)i).DumpEmulation(triple)) in DumpEmulationForAllInstructions()
/llvm-project-15.0.7/lldb/unittests/Disassembler/ARM/
H A DTestArmv7Disassembly.cpp79 inst_sp = inst_list.GetInstructionAtIndex (0); in TEST_F()
83 inst_sp = inst_list.GetInstructionAtIndex (1); in TEST_F()
87 inst_sp = inst_list.GetInstructionAtIndex (2); in TEST_F()
H A DTestArm64Disassembly.cpp71 inst_sp = inst_list.GetInstructionAtIndex (0); in TEST_F()
75 inst_sp = inst_list.GetInstructionAtIndex (1); in TEST_F()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBInstructionList.i46 GetInstructionAtIndex (uint32_t idx);
87 return self.GetInstructionAtIndex(key)
93 inst = self.GetInstructionAtIndex(idx)
/llvm-project-15.0.7/lldb/test/API/python_api/disassemble-raw-data/
H A DTestDisassemble_VST1_64.py57 inst = insts.GetInstructionAtIndex(i)
66 inst = insts.GetInstructionAtIndex(0)
H A DTestDisassembleRawData.py45 inst = insts.GetInstructionAtIndex(0)
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp171 prev_insn = disasm_sp->GetInstructionList().GetInstructionAtIndex(0); in GetInstructionAtAddress()
228 return instruction_list.GetInstructionAtIndex(inst_to_choose - 1).get(); in GetInstructionAtAddress()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_instructionlist.py10 obj.GetInstructionAtIndex(0xffffffff)
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp202 auto first_insn = insn_list->GetInstructionAtIndex(0); in GetStepThroughTrampolinePlan()
203 auto second_insn = insn_list->GetInstructionAtIndex(1); in GetStepThroughTrampolinePlan()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBInstructionList.h34 lldb::SBInstruction GetInstructionAtIndex(uint32_t idx);
/llvm-project-15.0.7/lldb/unittests/Disassembler/x86/
H A DTestGetControlFlowKindx86.cpp139 inst_sp = inst_list.GetInstructionAtIndex(i); in TEST_F()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/
H A DTestAvoidBreakpointInDelaySlot.py58 delayinst = insts.GetInstructionAtIndex(i + 1)
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanStepRange.cpp340 instructions->GetInstructionAtIndex(last_index); in SetNextBranchBreakpoint()
347 instructions->GetInstructionAtIndex(branch_index)->GetAddress(); in SetNextBranchBreakpoint()
H A DThreadPlanTracer.cpp175 instruction_list.GetInstructionAtIndex(0).get(); in Log()
H A DStackFrame.cpp1323 disassembler_sp->GetInstructionList().GetInstructionAtIndex(0); in GuessValueForAddress()
1532 disassembler.GetInstructionList().GetInstructionAtIndex(ii); in DoGuessValueAt()
H A DProcess.cpp5844 insn_list->GetInstructionAtIndex(branch_index)->GetAddress(); in AdvanceAddressToNextBranchInstruction()
/llvm-project-15.0.7/lldb/source/Core/
H A DDisassembler.cpp328 Instruction *inst = GetInstructionList().GetInstructionAtIndex(i).get(); in PrintInstructions()
377 Instruction *inst = GetInstructionList().GetInstructionAtIndex(i).get(); in PrintInstructions()
981 InstructionSP InstructionList::GetInstructionAtIndex(size_t idx) const { in GetInstructionAtIndex() function in InstructionList
991 return GetInstructionAtIndex(index); in GetInstructionAtAddress()
H A DIOHandlerCursesGUI.cpp7131 Instruction *inst = insts.GetInstructionAtIndex(inst_idx).get(); in WindowDelegateDraw()
7325 .GetInstructionAtIndex(m_selected_line) in WindowDelegateHandleChar()
7482 .GetInstructionAtIndex(m_selected_line) in ToggleBreakpointOnSelectedLine()
/llvm-project-15.0.7/lldb/examples/python/
H A Ddisasm-stress-test.py224 inst = inst_list.GetInstructionAtIndex(0)
/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp107 Instruction *inst = inst_list.GetInstructionAtIndex(0).get(); in GetNonCallSiteUnwindPlanFromAssembly()
147 inst = inst_list.GetInstructionAtIndex(idx).get(); in GetNonCallSiteUnwindPlanFromAssembly()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDisassembler.h292 lldb::InstructionSP GetInstructionAtIndex(size_t idx) const;
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp56 InstructionSP insn = insn_list.GetInstructionAtIndex(0); in GetPtrauthInstructionInfo()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp655 lldb::SBInstruction inst = insts.GetInstructionAtIndex(i); in CreateSource()