Home
last modified time | relevance | path

Searched refs:m_instructions (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/
DDecodedThread.cpp52 return m_instructions.empty() ? 0 : m_instructions.size() - 1; in GetLastPosition()
56 return makeArrayRef(m_instructions); in GetInstructions()
DDecodedThread.h111 : m_instructions(std::move(instructions)), m_position(GetLastPosition()) { in DecodedThread()
139 std::vector<IntelPTInstruction> m_instructions; variable
/external/llvm-project/lldb/source/Core/
DDisassembler.cpp930 InstructionList::InstructionList() : m_instructions() {} in InstructionList()
934 size_t InstructionList::GetSize() const { return m_instructions.size(); } in GetSize()
939 for (pos = m_instructions.begin(), end = m_instructions.end(); pos != end; in GetMaxOpcocdeByteSize()
950 if (idx < m_instructions.size()) in GetInstructionAtIndex()
951 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
977 for (begin = m_instructions.begin(), end = m_instructions.end(), pos = begin; in Dump()
986 void InstructionList::Clear() { m_instructions.clear(); } in Clear()
990 m_instructions.push_back(inst_sp); in Append()
997 size_t num_instructions = m_instructions.size(); in GetIndexOfNextBranchInstruction()
1004 if (m_instructions[i]->DoesBranch()) { in GetIndexOfNextBranchInstruction()
[all …]
/external/llvm-project/lldb/include/lldb/Core/
DDisassembler.h326 collection m_instructions; variable