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

References

include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
   99     const dwarf::FormParams getFormParams() const { return FormParams; }
  100     uint16_t getVersion() const { return FormParams.Version; }
  101     uint8_t getAddressSize() const { return FormParams.AddrSize; }
  102     bool isDWARF64() const { return FormParams.Format == dwarf::DWARF64; }
lib/DebugInfo/DWARF/DWARFDebugLine.cpp
   93   FormParams = dwarf::FormParams({0, 0, DWARF32});
  335     FormParams.Format = dwarf::DWARF64;
  343   FormParams.Version = DebugLineData.getU16(OffsetPtr);
  351     FormParams.AddrSize = DebugLineData.getU8(OffsetPtr);
  377             DebugLineData, OffsetPtr, EndPrologueOffset, FormParams, Ctx, U,
unittests/DebugInfo/DWARF/DwarfGenerator.cpp
  169     P.FormParams.AddrSize = AddrSize;
  176     P.FormParams.Format = DWARF64;
  178   P.FormParams.Version = Version;