Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDDisassembler.h262 class InstructionList {
264 InstructionList();
265 ~InstructionList();
463 InstructionList &GetInstructionList();
465 const InstructionList &GetInstructionList() const;
545 InstructionList m_instruction_list;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDDisassembler.cpp1045 InstructionList::InstructionList() : m_instructions() {} in InstructionList() function in InstructionList
1047 InstructionList::~InstructionList() = default;
1049 size_t InstructionList::GetSize() const { return m_instructions.size(); } in GetSize()
1051 uint32_t InstructionList::GetMaxOpcocdeByteSize() const { in GetMaxOpcocdeByteSize()
1063 InstructionSP InstructionList::GetInstructionAtIndex(size_t idx) const { in GetInstructionAtIndex()
1070 void InstructionList::Dump(Stream *s, bool show_address, bool show_bytes, in Dump()
1094 void InstructionList::Clear() { m_instructions.clear(); } in Clear()
1096 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append()
1102 InstructionList::GetIndexOfNextBranchInstruction(uint32_t start, in GetIndexOfNextBranchInstruction()
1165 InstructionList::GetIndexOfInstructionAtAddress(const Address &address) { in GetIndexOfInstructionAtAddress()
[all …]
HDIOHandlerCursesGUI.cpp3544 InstructionList &insts = m_disassembly_sp->GetInstructionList(); in WindowDelegateDraw()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
HDBitcodeReader.cpp501 SmallVector<Instruction *, 64> InstructionList; member in __anonaad7359f0411::BitcodeReader
3704 InstructionList.clear(); in parseFunctionBody()
3763 if (Error Err = MDLoader->parseMetadataAttachment(*F, InstructionList)) in parseFunctionBody()
3878 InstructionList.push_back(I); in parseFunctionBody()
3900 InstructionList.push_back(I); in parseFunctionBody()
3940 InstructionList.push_back(Temp); in parseFunctionBody()
3950 InstructionList.push_back(I); in parseFunctionBody()
3993 InstructionList.push_back(I); in parseFunctionBody()
4033 InstructionList.push_back(I); in parseFunctionBody()
4078 InstructionList.push_back(I); in parseFunctionBody()
[all …]
HDMetadataLoader.h72 Function &F, const SmallVectorImpl<Instruction *> &InstructionList);
HDMetadataLoader.cpp671 Function &F, const SmallVectorImpl<Instruction *> &InstructionList);
1978 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) { in parseMetadataAttachment() argument
2024 Instruction *Inst = InstructionList[Record[0]]; in parseMetadataAttachment()
2156 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) { in parseMetadataAttachment() argument
2157 return Pimpl->parseMetadataAttachment(F, InstructionList); in parseMetadataAttachment()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDThreadPlanStepRange.h51 InstructionList *GetInstructionsForAddress(lldb::addr_t addr,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDThreadPlanStepRange.cpp256 InstructionList *ThreadPlanStepRange::GetInstructionsForAddress( in GetInstructionsForAddress()
328 InstructionList *instructions = in SetNextBranchBreakpoint()
HDThreadPlanTracer.cpp160 InstructionList &instruction_list = disassembler->GetInstructionList(); in Log()
HDProcess.cpp5765 InstructionList *insn_list = nullptr; in AdvanceAddressToNextBranchInstruction()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
HDArchitectureMips.cpp162 InstructionList instruction_list; in GetInstructionAtAddress()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
HDDynamicLoaderWindowsDYLD.cpp201 InstructionList *insn_list = &disassembler_sp->GetInstructionList(); in GetStepThroughTrampolinePlan()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
HDUnwindAssemblyInstEmulation.cpp99 const InstructionList &inst_list = disasm_sp->GetInstructionList(); in GetNonCallSiteUnwindPlanFromAssembly()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
HDlldb-forward.h112 class InstructionList; variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
HDIRExecutionUnit.cpp198 InstructionList &instruction_list = disassembler_sp->GetInstructionList(); in DisassembleFunction()