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

References

lib/ObjectYAML/DWARFEmitter.cpp
  241       writeInteger((uint8_t)Op.Opcode, OS, DI.IsLittleEndian);
  242       if (Op.Opcode == 0) {
  260       } else if (Op.Opcode < LineTable.OpcodeBase) {
  261         switch (Op.Opcode) {
lib/ObjectYAML/DWARFYAML.cpp
  131   IO.mapRequired("Opcode", LineTableOpcode.Opcode);
  132   if (LineTableOpcode.Opcode == dwarf::DW_LNS_extended_op) {
  143   if (LineTableOpcode.Opcode == dwarf::DW_LNS_advance_line || !IO.outputting())
tools/obj2yaml/dwarf2yaml.cpp
  291         NewOp.Opcode = (dwarf::LineNumberOps)LineData.getU8(&Offset);
  292         if (NewOp.Opcode == 0) {
  311         } else if (NewOp.Opcode < DebugLines.OpcodeBase) {
  312           switch (NewOp.Opcode) {
  338                  i < DebugLines.StandardOpcodeLengths[NewOp.Opcode - 1]; ++i)