reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
   54   iterator begin() { return Instructions.begin(); }
   55   const_iterator begin() const { return Instructions.begin(); }
   56   iterator end() { return Instructions.end(); }
   57   const_iterator end() const { return Instructions.end(); }
   59   unsigned size() const { return (unsigned)Instructions.size(); }
   60   bool empty() const { return Instructions.empty(); }
   85     Instructions.push_back(Instruction(Opcode));
   90     Instructions.push_back(Instruction(Opcode));
   91     Instructions.back().Ops.push_back(Operand1);
   96     Instructions.push_back(Instruction(Opcode));
   97     Instructions.back().Ops.push_back(Operand1);
   98     Instructions.back().Ops.push_back(Operand2);
lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
  133           Instructions.back().Expression = DWARFExpression(
  146           Instructions.back().Expression = DWARFExpression(
  276   for (const auto &Instr : Instructions) {