| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFListTable.h | 76 dwarf::DwarfFormat Format; 100 dwarf::DwarfFormat getFormat() const { return Format; } in getFormat() 104 static uint8_t getHeaderSize(dwarf::DwarfFormat Format) { in getHeaderSize() 106 case dwarf::DwarfFormat::DWARF32: in getHeaderSize() 108 case dwarf::DwarfFormat::DWARF64: in getHeaderSize() 126 dwarf::DwarfFormat Format, in getOffsetEntry() 181 dwarf::DwarfFormat getFormat() const { return Header.getFormat(); } in getFormat()
|
| H A D | DWARFDebugAddr.h | 27 dwarf::DwarfFormat Format; 76 dwarf::DwarfFormat getFormat() const { return Format; } in getFormat()
|
| H A D | DWARFUnit.h | 94 dwarf::DwarfFormat getFormat() const { return FormParams.Format; } in getFormat() 196 dwarf::FormParams FormParams = {0, 0, dwarf::DwarfFormat::DWARF32}; 199 uint8_t Version, dwarf::DwarfFormat Format) in StrOffsetsContributionDescriptor() 204 dwarf::DwarfFormat getFormat() const { return FormParams.Format; } in getFormat() 338 dwarf::DwarfFormat getFormat() const { return Header.getFormat(); } in getFormat()
|
| H A D | DWARFDebugPubTable.h | 51 dwarf::DwarfFormat Format;
|
| H A D | DWARFDebugArangeSet.h | 31 dwarf::DwarfFormat Format;
|
| H A D | DWARFDebugMacro.h | 71 dwarf::DwarfFormat getDwarfFormat() const;
|
| H A D | DWARFVerifier.h | 410 verifyDebugStrOffsets(std::optional<dwarf::DwarfFormat> LegacyFormat,
|
| H A D | DWARFFormValue.h | 59 dwarf::DwarfFormat Format =
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | DWARFYAML.h | 56 dwarf::DwarfFormat Format; 86 dwarf::DwarfFormat Format; 112 dwarf::DwarfFormat Format; 166 dwarf::DwarfFormat Format; 188 dwarf::DwarfFormat Format; 197 dwarf::DwarfFormat Format; 227 dwarf::DwarfFormat Format; 429 template <> struct ScalarEnumerationTraits<dwarf::DwarfFormat> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 430 static void enumeration(IO &IO, dwarf::DwarfFormat &Format) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Dwarf.h | 92 enum DwarfFormat : uint8_t { DWARF32, DWARF64 }; enum 1011 LLVM_ABI StringRef FormatString(DwarfFormat Format); 1080 inline uint8_t getDwarfOffsetByteSize(DwarfFormat Format) { in getDwarfOffsetByteSize() 1082 case DwarfFormat::DWARF32: in getDwarfOffsetByteSize() 1084 case DwarfFormat::DWARF64: in getDwarfOffsetByteSize() 1096 DwarfFormat Format; 1119 inline uint8_t getUnitLengthFieldByteSize(DwarfFormat Format) { in getUnitLengthFieldByteSize() 1121 case DwarfFormat::DWARF32: in getUnitLengthFieldByteSize() 1123 case DwarfFormat::DWARF64: in getUnitLengthFieldByteSize()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/LowLevel/ |
| H A D | DWARFExpression.h | 108 std::optional<dwarf::DwarfFormat> Format); 146 std::optional<dwarf::DwarfFormat> Format = std::nullopt) 163 std::optional<dwarf::DwarfFormat> Format;
|
| H A D | DWARFDataExtractorSimple.h | 69 std::pair<uint64_t, dwarf::DwarfFormat> 77 dwarf::DwarfFormat Format = dwarf::DWARF32; 101 std::pair<uint64_t, dwarf::DwarfFormat> getInitialLength(Cursor &C) const { in getInitialLength()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DWP/ |
| H A D | DWP.h | 57 dwarf::DwarfFormat Format = dwarf::DwarfFormat::DWARF32;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCContext.h | 237 dwarf::DwarfFormat DwarfFormat = dwarf::DWARF32; variable 818 void setDwarfFormat(dwarf::DwarfFormat f) { DwarfFormat = f; } in setDwarfFormat() 819 dwarf::DwarfFormat getDwarfFormat() const { return DwarfFormat; } in getDwarfFormat()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
| H A D | DWARFStreamer.h | |
| /freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.h | 275 void emitIntOffset(uint64_t Offset, dwarf::DwarfFormat Format, 278 dwarf::DwarfFormat Format, uint64_t &SectionSize);
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | OutputSections.h | 440 return Format.Format == dwarf::DwarfFormat::DWARF32 ? 8 : 16; in getDebugAddrHeaderSize() 446 return Format.Format == dwarf::DwarfFormat::DWARF32 ? 8 : 16; in getDebugStrOffsetsHeaderSize()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
| H A D | DWARFLinkerUnit.h | |
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFUnit.cpp | 1131 llvm::dwarf::DwarfFormat Format, in parseDWARFStringOffsetsTableHeader() 1135 case dwarf::DwarfFormat::DWARF64: { in parseDWARFStringOffsetsTableHeader() 1144 case dwarf::DwarfFormat::DWARF32: { in parseDWARFStringOffsetsTableHeader() 1182 Offset += Header.getFormat() == dwarf::DwarfFormat::DWARF32 ? 8 : 16; in determineStringOffsetsTableContributionDWO()
|
| H A D | DWARFDebugMacro.cpp | 23 DwarfFormat DWARFDebugMacro::MacroHeader::getDwarfFormat() const { in getDwarfFormat()
|
| H A D | DWARFVerifier.cpp | 150 DwarfFormat Format; in verifyUnitHeader() 2124 std::optional<DwarfFormat> DwoLegacyDwarf4Format; in handleDebugStrOffsets() 2130 DwarfFormat InfoFormat = DebugInfoData.getInitialLength(&Offset).second; in handleDebugStrOffsets() 2145 std::optional<DwarfFormat> LegacyFormat, StringRef SectionName, in verifyDebugStrOffsets() 2154 DwarfFormat Format; in verifyDebugStrOffsets()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 47 auto DwarfFormat = S.getContext().getDwarfFormat(); in emitListsTableHeaderStart() local 48 if (DwarfFormat == dwarf::DWARF64) { in emitListsTableHeaderStart() 54 dwarf::getDwarfOffsetByteSize(DwarfFormat)); in emitListsTableHeaderStart() 1643 dwarf::DwarfFormat Format = IsEH ? dwarf::DWARF32 : context.getDwarfFormat(); in EmitCIE() 1772 dwarf::DwarfFormat Format = IsEH ? dwarf::DWARF32 : context.getDwarfFormat(); in EmitFDE()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFStreamer.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.cpp | 821 if (LineTable.Prologue.FormParams.Format == dwarf::DwarfFormat::DWARF64) { in emitLineTableForUnit() 1190 void DwarfStreamer::emitIntOffset(uint64_t Offset, dwarf::DwarfFormat Format, in emitIntOffset() 1198 dwarf::DwarfFormat Format, in emitLabelDifference()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/LowLevel/ |
| H A D | DWARFExpression.cpp | 146 std::optional<DwarfFormat> Format) { in extract()
|