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

References

include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  112       return PrologueLength + sizeofTotalLength() + sizeof(getVersion()) +
lib/DebugInfo/DWARF/DWARFDebugLine.cpp
   69   uint16_t DwarfVersion = getVersion();
   79   uint16_t DwarfVersion = getVersion();
  104      << format("         version: %u\n", getVersion());
  105   if (getVersion() >= 5)
  110      << format(getVersion() >= 4 ? "max_ops_per_inst: %u\n" : "", MaxOpsPerInst)
  122     uint32_t DirBase = getVersion() >= 5 ? 0 : 1;
  132     uint32_t FileBase = getVersion() >= 5 ? 0 : 1;
  344   if (getVersion() < 2)
  348                        PrologueOffset, getVersion());
  350   if (getVersion() >= 5) {
  362   if (getVersion() >= 4)
  375   if (getVersion() >= 5) {
 1059   if (getVersion() >= 5) {
lib/DebugInfo/DWARF/DWARFVerifier.cpp
  769         bool isDWARF5 = LineTable->Prologue.getVersion() >= 5;
tools/dsymutil/DwarfLinker.cpp
 1925   if (LineTable.Prologue.getVersion() < 2 ||
 1926       LineTable.Prologue.getVersion() > 5 ||
 1934     if (LineTable.Prologue.getVersion() == 5)
unittests/DebugInfo/DWARF/DwarfGenerator.cpp
  296   Asm.emitInt16(Prologue->getVersion());