Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Core/
DDisassembler.cpp963 InstructionList::InstructionList() : m_instructions() {} in InstructionList()
967 size_t InstructionList::GetSize() const { return m_instructions.size(); } in GetSize()
972 for (pos = m_instructions.begin(), end = m_instructions.end(); pos != end; in GetMaxOpcocdeByteSize()
983 if (idx < m_instructions.size()) in GetInstructionAtIndex()
984 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
1011 for (begin = m_instructions.begin(), end = m_instructions.end(), pos = begin; in Dump()
1021 void InstructionList::Clear() { m_instructions.clear(); } in Clear()
1025 m_instructions.push_back(inst_sp); in Append()
1032 size_t num_instructions = m_instructions.size(); in GetIndexOfNextBranchInstruction()
1039 if (m_instructions[i]->DoesBranch()) { in GetIndexOfNextBranchInstruction()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DDisassembler.h346 collection m_instructions; variable