Home
last modified time | relevance | path

Searched refs:InstructionList (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1001 InstructionList::InstructionList() : m_instructions() {} in InstructionList() function in InstructionList
1003 InstructionList::~InstructionList() = default;
1005 size_t InstructionList::GetSize() const { return m_instructions.size(); } in GetSize()
1007 uint32_t InstructionList::GetMaxOpcocdeByteSize() const { in GetMaxOpcocdeByteSize()
1019 InstructionSP InstructionList::GetInstructionAtIndex(size_t idx) const { in GetInstructionAtIndex()
1026 InstructionSP InstructionList::GetInstructionAtAddress(const Address &address) { in GetInstructionAtAddress()
1033 void InstructionList::Dump(Stream *s, bool show_address, bool show_bytes, in Dump()
1059 void InstructionList::Clear() { m_instructions.clear(); } in Clear()
1061 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append()
1067 InstructionList::GetIndexOfNextBranchInstruction(uint32_t start, in GetIndexOfNextBranchInstruction()
[all …]
H A DIOHandlerCursesGUI.cpp7116 InstructionList &insts = m_disassembly_sp->GetInstructionList(); in WindowDelegateDraw()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h287 class InstructionList {
289 InstructionList();
290 ~InstructionList();
475 InstructionList &GetInstructionList();
477 const InstructionList &GetInstructionList() const;
558 InstructionList m_instruction_list;
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.h85 ArrayRef<Instruction *> InstructionList);
H A DBitcodeReader.cpp606 SmallVector<Instruction *, 64> InstructionList; member in __anondf6e26480411::BitcodeReader
4911 InstructionList.clear(); in parseFunctionBody()
4978 if (Error Err = MDLoader->parseMetadataAttachment(*F, InstructionList)) in parseFunctionBody()
5124 InstructionList.push_back(I); in parseFunctionBody()
5149 InstructionList.push_back(I); in parseFunctionBody()
5193 InstructionList.push_back(Temp); in parseFunctionBody()
5221 InstructionList.push_back(I); in parseFunctionBody()
5292 InstructionList.push_back(I); in parseFunctionBody()
5337 InstructionList.push_back(I); in parseFunctionBody()
5385 InstructionList.push_back(I); in parseFunctionBody()
[all …]
H A DMetadataLoader.cpp756 ArrayRef<Instruction *> InstructionList);
2461 Function &F, ArrayRef<Instruction *> InstructionList) { in parseMetadataAttachment() argument
2506 Instruction *Inst = InstructionList[Record[0]]; in parseMetadataAttachment()
2637 Function &F, ArrayRef<Instruction *> InstructionList) { in parseMetadataAttachment() argument
2638 return Pimpl->parseMetadataAttachment(F, InstructionList); in parseMetadataAttachment()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h51 InstructionList *GetInstructionsForAddress(lldb::addr_t addr,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp154 InstructionList instruction_list; in GetInstructionAtAddress()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp258 InstructionList *ThreadPlanStepRange::GetInstructionsForAddress( in GetInstructionsForAddress()
349 InstructionList *instructions = in SetNextBranchBreakpoint()
H A DThreadPlanTracer.cpp167 InstructionList &instruction_list = disassembler->GetInstructionList(); in Log()
H A DProcess.cpp6155 InstructionList *insn_list = nullptr; in AdvanceAddressToNextBranchInstruction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp191 InstructionList *insn_list = &disassembler_sp->GetInstructionList(); in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp61 InstructionList &insn_list = disassembler_sp->GetInstructionList(); in GetPtrauthInstructionInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp105 const InstructionList &inst_list = disasm_sp->GetInstructionList(); in GetNonCallSiteUnwindPlanFromAssembly()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h114 class InstructionList; variable
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp201 InstructionList &instruction_list = disassembler_sp->GetInstructionList(); in DisassembleFunction()