Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBInstructionList.cpp65 SBInstruction SBInstructionList::GetInstructionAtIndex(uint32_t idx) { in GetInstructionAtIndex() function in SBInstructionList
67 GetInstructionAtIndex, (uint32_t), idx); in GetInstructionAtIndex()
73 m_opaque_sp->GetInstructionList().GetInstructionAtIndex(idx)); in GetInstructionAtIndex()
91 addr = GetInstructionAtIndex(i).GetAddress(); in GetInstructionsCount()
99 SBInstruction insn = GetInstructionAtIndex(i); in GetInstructionsCount()
166 m_opaque_sp->GetInstructionList().GetInstructionAtIndex(i).get(); in GetDescription()
195 if (!GetInstructionAtIndex((uint32_t)i).DumpEmulation(triple)) in DumpEmulationForAllInstructions()
217 GetInstructionAtIndex, (uint32_t)); in RegisterMethods()
/external/llvm-project/lldb/unittests/Disassembler/
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()
DTestArm64Disassembly.cpp71 inst_sp = inst_list.GetInstructionAtIndex (0); in TEST_F()
75 inst_sp = inst_list.GetInstructionAtIndex (1); in TEST_F()
/external/llvm-project/lldb/bindings/interface/
DSBInstructionList.i46 GetInstructionAtIndex (uint32_t idx);
87 return self.GetInstructionAtIndex(key)
93 inst = self.GetInstructionAtIndex(idx)
/external/llvm-project/lldb/test/API/python_api/disassemble-raw-data/
DTestDisassemble_VST1_64.py63 inst = insts.GetInstructionAtIndex(i)
72 inst = insts.GetInstructionAtIndex(0)
DTestDisassembleRawData.py43 inst = insts.GetInstructionAtIndex(0)
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DPTDecoder.cpp43 PTInstruction PTInstructionList::GetInstructionAtIndex(uint32_t idx) { in GetInstructionAtIndex() function in PTInstructionList
46 new Instruction(m_opaque_sp->GetInstructionAtIndex(idx)))); in GetInstructionAtIndex()
DPTDecoder.h87 PTInstruction GetInstructionAtIndex(uint32_t idx);
DDecoder.h96 Instruction GetInstructionAtIndex(uint32_t idx) { in GetInstructionAtIndex() function
Dcli-wrapper-pt.cpp395 ptdecoder::PTInstruction insn = insn_list.GetInstructionAtIndex(i); in DoExecute()
/external/llvm-project/lldb/source/Plugins/Architecture/Mips/
DArchitectureMips.cpp179 prev_insn = disasm_sp->GetInstructionList().GetInstructionAtIndex(0); in GetInstructionAtAddress()
236 return instruction_list.GetInstructionAtIndex(inst_to_choose - 1).get(); in GetInstructionAtAddress()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_instructionlist.py10 obj.GetInstructionAtIndex(0xffffffff)
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
DDynamicLoaderWindowsDYLD.cpp212 auto first_insn = insn_list->GetInstructionAtIndex(0); in GetStepThroughTrampolinePlan()
213 auto second_insn = insn_list->GetInstructionAtIndex(1); in GetStepThroughTrampolinePlan()
/external/llvm-project/lldb/include/lldb/API/
DSBInstructionList.h34 lldb::SBInstruction GetInstructionAtIndex(uint32_t idx);
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/
DTestAvoidBreakpointInDelaySlot.py60 delayinst = insts.GetInstructionAtIndex(i + 1)
/external/llvm-project/lldb/source/Target/
DThreadPlanStepRange.cpp340 instructions->GetInstructionAtIndex(last_index); in SetNextBranchBreakpoint()
347 instructions->GetInstructionAtIndex(branch_index)->GetAddress(); in SetNextBranchBreakpoint()
DThreadPlanTracer.cpp175 instruction_list.GetInstructionAtIndex(0).get(); in Log()
DStackFrame.cpp1327 disassembler_sp->GetInstructionList().GetInstructionAtIndex(0); in GuessValueForAddress()
1537 disassembler.GetInstructionList().GetInstructionAtIndex(ii); in DoGuessValueAt()
DProcess.cpp5966 insn_list->GetInstructionAtIndex(branch_index)->GetAddress(); in AdvanceAddressToNextBranchInstruction()
/external/llvm-project/lldb/source/Core/
DDisassembler.cpp331 Instruction *inst = GetInstructionList().GetInstructionAtIndex(i).get(); in PrintInstructions()
380 Instruction *inst = GetInstructionList().GetInstructionAtIndex(i).get(); in PrintInstructions()
948 InstructionSP InstructionList::GetInstructionAtIndex(size_t idx) const { in GetInstructionAtIndex() function in InstructionList
958 return GetInstructionAtIndex(index); in GetInstructionAtAddress()
DIOHandlerCursesGUI.cpp3770 Instruction *inst = insts.GetInstructionAtIndex(inst_idx).get(); in WindowDelegateDraw()
3964 .GetInstructionAtIndex(m_selected_line) in WindowDelegateHandleChar()
4119 .GetInstructionAtIndex(m_selected_line) in ToggleBreakpointOnSelectedLine()
/external/llvm-project/lldb/examples/python/
Ddisasm-stress-test.py224 inst = inst_list.GetInstructionAtIndex(0)
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
DUnwindAssemblyInstEmulation.cpp105 Instruction *inst = inst_list.GetInstructionAtIndex(0).get(); in GetNonCallSiteUnwindPlanFromAssembly()
145 inst = inst_list.GetInstructionAtIndex(idx).get(); in GetNonCallSiteUnwindPlanFromAssembly()
/external/llvm-project/lldb/include/lldb/Core/
DDisassembler.h272 lldb::InstructionSP GetInstructionAtIndex(size_t idx) const;
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp634 lldb::SBInstruction inst = insts.GetInstructionAtIndex(i); in CreateSource()