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.cpp967 InstructionList::InstructionList() : m_instructions() {} in InstructionList() function in InstructionList
969 InstructionList::~InstructionList() = default;
971 size_t InstructionList::GetSize() const { return m_instructions.size(); } in GetSize()
973 uint32_t InstructionList::GetMaxOpcocdeByteSize() const { in GetMaxOpcocdeByteSize()
985 InstructionSP InstructionList::GetInstructionAtIndex(size_t idx) const { in GetInstructionAtIndex()
992 InstructionSP InstructionList::GetInstructionAtAddress(const Address &address) { in GetInstructionAtAddress()
999 void InstructionList::Dump(Stream *s, bool show_address, bool show_bytes, in Dump()
1025 void InstructionList::Clear() { m_instructions.clear(); } in Clear()
1027 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append()
1033 InstructionList::GetIndexOfNextBranchInstruction(uint32_t start, in GetIndexOfNextBranchInstruction()
[all …]
H A DIOHandlerCursesGUI.cpp7130 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();
469 InstructionList &GetInstructionList();
471 const InstructionList &GetInstructionList() const;
549 InstructionList m_instruction_list;
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.h85 ArrayRef<Instruction *> InstructionList);
H A DBitcodeReader.cpp621 SmallVector<Instruction *, 64> InstructionList; member in __anondf6e26480411::BitcodeReader
4830 InstructionList.clear(); in parseFunctionBody()
4897 if (Error Err = MDLoader->parseMetadataAttachment(*F, InstructionList)) in parseFunctionBody()
5040 InstructionList.push_back(I); in parseFunctionBody()
5065 InstructionList.push_back(I); in parseFunctionBody()
5109 InstructionList.push_back(Temp); in parseFunctionBody()
5132 InstructionList.push_back(I); in parseFunctionBody()
5203 InstructionList.push_back(I); in parseFunctionBody()
5248 InstructionList.push_back(I); in parseFunctionBody()
5296 InstructionList.push_back(I); in parseFunctionBody()
[all …]
H A DMetadataLoader.cpp760 ArrayRef<Instruction *> InstructionList);
2343 Function &F, ArrayRef<Instruction *> InstructionList) { in parseMetadataAttachment() argument
2388 Instruction *Inst = InstructionList[Record[0]]; in parseMetadataAttachment()
2519 Function &F, ArrayRef<Instruction *> InstructionList) { in parseMetadataAttachment() argument
2520 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/Target/
H A DThreadPlanStepRange.cpp256 InstructionList *ThreadPlanStepRange::GetInstructionsForAddress( in GetInstructionsForAddress()
326 InstructionList *instructions = in SetNextBranchBreakpoint()
H A DThreadPlanTracer.cpp166 InstructionList &instruction_list = disassembler->GetInstructionList(); in Log()
H A DProcess.cpp6142 InstructionList *insn_list = nullptr; in AdvanceAddressToNextBranchInstruction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp155 InstructionList instruction_list; in GetInstructionAtAddress()
/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.cpp58 InstructionList &insn_list = disassembler_sp->GetInstructionList(); in GetPtrauthInstructionInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp101 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.cpp203 InstructionList &instruction_list = disassembler_sp->GetInstructionList(); in DisassembleFunction()