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

References

lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  585   Result->Lines.CodeSize = Lines.header()->CodeSize;
  586   Result->Lines.RelocOffset = Lines.header()->RelocOffset;
  587   Result->Lines.RelocSegment = Lines.header()->RelocSegment;
  588   Result->Lines.Flags = static_cast<LineFlags>(uint16_t(Lines.header()->Flags));
tools/lld/COFF/PDB.cpp
 1769         uint32_t offsetInC = i->second + linesTmp.header()->RelocOffset;
 1770         if (addr < offsetInC || addr >= offsetInC + linesTmp.header()->CodeSize)
 1773         assert(!lines.header() &&
 1783       if (cVStrTab.valid() && checksums.valid() && lines.header())
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
 1087     const LineFragmentHeader *lfh = lines.header();
tools/llvm-pdbutil/DumpOutputStyle.cpp
  957         uint16_t Segment = Lines.header()->RelocSegment;
  958         uint32_t Begin = Lines.header()->RelocOffset;
  959         uint32_t End = Begin + Lines.header()->CodeSize;
tools/llvm-readobj/COFFDumper.cpp
 1124     W.printHex("Flags", LineInfo.header()->Flags);
 1125     W.printHex("CodeSize", LineInfo.header()->CodeSize);
 1132         if (Line.Offset >= LineInfo.header()->CodeSize) {