Home
last modified time | relevance | path

Searched refs:insn_list (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
DDynamicLoaderWindowsDYLD.cpp201 InstructionList *insn_list = &disassembler_sp->GetInstructionList(); in GetStepThroughTrampolinePlan() local
202 if (insn_list == nullptr) { in GetStepThroughTrampolinePlan()
212 auto first_insn = insn_list->GetInstructionAtIndex(0); in GetStepThroughTrampolinePlan()
213 auto second_insn = insn_list->GetInstructionAtIndex(1); in GetStepThroughTrampolinePlan()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.cpp769 Instructions &insn_list = threadTraceInfo->GetInstructionLog(); in GetInstructionLogAtOffset() local
771 if (((insn_list.size() <= offset) && (count <= sum) && in GetInstructionLogAtOffset()
772 ((sum - count) >= insn_list.size())) || in GetInstructionLogAtOffset()
782 (insn_list.size() <= offset) ? insn_list.begin() in GetInstructionLogAtOffset()
783 : insn_list.begin() + insn_list.size() - sum; in GetInstructionLogAtOffset()
785 (count <= sum) ? insn_list.begin() + insn_list.size() - (sum - count) in GetInstructionLogAtOffset()
786 : insn_list.end(); in GetInstructionLogAtOffset()
Dcli-wrapper-pt.cpp377 ptdecoder::PTInstructionList insn_list; in DoExecute() local
379 count, insn_list, error); in DoExecute()
394 for (size_t i = 0; i < insn_list.GetSize(); i++) { in DoExecute()
395 ptdecoder::PTInstruction insn = insn_list.GetInstructionAtIndex(i); in DoExecute()
DDecoder.h87 InstructionList(const InstructionList &insn_list) in InstructionList() argument
88 : m_insn_vec(insn_list.m_insn_vec) {} in InstructionList()
/external/llvm-project/lldb/source/Target/
DProcess.cpp5930 InstructionList *insn_list = nullptr; in AdvanceAddressToNextBranchInstruction() local
5946 insn_list = &disassembler_sp->GetInstructionList(); in AdvanceAddressToNextBranchInstruction()
5948 if (insn_list == nullptr) { in AdvanceAddressToNextBranchInstruction()
5953 insn_list->GetIndexOfInstructionAtAddress(default_stop_addr); in AdvanceAddressToNextBranchInstruction()
5958 uint32_t branch_index = insn_list->GetIndexOfNextBranchInstruction( in AdvanceAddressToNextBranchInstruction()
5966 insn_list->GetInstructionAtIndex(branch_index)->GetAddress(); in AdvanceAddressToNextBranchInstruction()