Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp967 InstructionList::InstructionList() : m_instructions() {} in InstructionList()
971 size_t InstructionList::GetSize() const { return m_instructions.size(); } in GetSize()
976 for (pos = m_instructions.begin(), end = m_instructions.end(); pos != end; in GetMaxOpcocdeByteSize()
987 if (idx < m_instructions.size()) in GetInstructionAtIndex()
988 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
1015 for (begin = m_instructions.begin(), end = m_instructions.end(), pos = begin; in Dump()
1025 void InstructionList::Clear() { m_instructions.clear(); } in Clear()
1029 m_instructions.push_back(inst_sp); in Append()
1036 size_t num_instructions = m_instructions.size(); in GetIndexOfNextBranchInstruction()
1043 if (m_instructions[i]->DoesBranch()) { in GetIndexOfNextBranchInstruction()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h350 collection m_instructions; variable