/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/BTF/ |
H A D | BTFParser.cpp | 121 uint32_t HdrLen = Extractor.getU32(C); in parseBTF() 126 uint32_t TypeOff = Extractor.getU32(C); in parseBTF() 127 uint32_t TypeLen = Extractor.getU32(C); in parseBTF() 128 uint32_t StrOff = Extractor.getU32(C); in parseBTF() 129 uint32_t StrLen = Extractor.getU32(C); in parseBTF() 267 uint32_t HdrLen = Extractor.getU32(C); 272 (void)Extractor.getU32(C); // func_info_off in findLineInfo() 273 (void)Extractor.getU32(C); // func_info_len in findLineInfo() 274 uint32_t LineInfoOff = Extractor.getU32(C); in findLineInfo() 275 uint32_t LineInfoLen = Extractor.getU32( in findLineInfo() [all...] |
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFGdbIndex.cpp | 119 Version = Data.getU32(&Offset); in parseImpl() 123 CuListOffset = Data.getU32(&Offset); in parseImpl() 124 TuListOffset = Data.getU32(&Offset); in parseImpl() 125 AddressAreaOffset = Data.getU32(&Offset); in parseImpl() 126 SymbolTableOffset = Data.getU32(&Offset); in parseImpl() 127 ConstantPoolOffset = Data.getU32(&Offset); in parseImpl() 156 uint32_t CuIndex = Data.getU32(&Offset); in parseImpl() 172 uint32_t NameOffset = Data.getU32(&Offset); in parseImpl() 173 uint32_t CuVecOffset = Data.getU32(&Offset); in parseImpl() 188 uint32_t Num = Data.getU32(&Offset); in parseImpl() [all …]
|
H A D | DWARFUnitIndex.cpp | 101 Version = IndexData.getU32(OffsetPtr); in parse() 109 NumColumns = IndexData.getU32(OffsetPtr); in parse() 110 NumUnits = IndexData.getU32(OffsetPtr); in parse() 111 NumBuckets = IndexData.getU32(OffsetPtr); in parse() 157 auto Index = IndexData.getU32(&Offset); in parseImpl() 168 RawSectionIds[i] = IndexData.getU32(&Offset); in parseImpl() 184 Contrib[i].setOffset(IndexData.getU32(&Offset)); in parseImpl() 191 Contrib[i].setLength(IndexData.getU32(&Offset)); in parseImpl()
|
H A D | DWARFAcceleratorTable.cpp | 51 Hdr.Magic = AccelSection.getU32(&Offset); in extract() 54 Hdr.BucketCount = AccelSection.getU32(&Offset); in extract() 55 Hdr.HashCount = AccelSection.getU32(&Offset); in extract() 56 Hdr.HeaderDataLength = AccelSection.getU32(&Offset); in extract() 66 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset); in extract() 67 uint32_t NumAtoms = AccelSection.getU32(&Offset); in extract() 191 unsigned NumData = AccelSection.getU32(DataOffset); in dumpName() 242 unsigned Index = AccelSection.getU32(&Offset); in dump() 253 uint32_t Hash = AccelSection.getU32(&HashOffset); in dump() 258 uint64_t DataOffset = AccelSection.getU32(&OffsetsOffset); in dump() [all …]
|
H A D | DWARFListTable.cpp | 50 HeaderData.OffsetEntryCount = Data.getU32(OffsetPtr); in extract()
|
H A D | DWARFVerifier.cpp | 148 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader() 152 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader() 1138 uint32_t HashIdx = AccelSectionData.getU32(&BucketsOffset); in verifyAppleAccelTable() 1164 uint32_t Hash = AccelSectionData.getU32(&HashOffset); in verifyAppleAccelTable() 1165 uint64_t HashDataOffset = AccelSectionData.getU32(&DataOffset); in verifyAppleAccelTable() 1181 while ((StrpOffset = AccelSectionData.getU32(&HashDataOffset)) != 0) { in verifyAppleAccelTable() 1183 AccelSectionData.getU32(&HashDataOffset); in verifyAppleAccelTable()
|
H A D | DWARFFormValue.cpp | 135 uint32_t size = DebugInfoData.getU32(OffsetPtr); in skipValue() 260 Value.uval = Data.getU32(OffsetPtr, &Err); in extractValue() 312 Value.uval |= Data.getU32(OffsetPtr, &Err); in extractValue()
|
H A D | DWARFExpression.cpp | 178 Operands[Operand] = Data.getU32(&Offset); in extract() 213 Operands[Operand] = Data.getU32(&Offset); in extract()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | FunctionInfo.cpp | 44 FI.Range = {BaseAddr, BaseAddr + Data.getU32(&Offset)}; in decode() 48 FI.Name = Data.getU32(&Offset); in decode() 58 const uint32_t IT = Data.getU32(&Offset); in decode() 62 const uint32_t InfoLength = Data.getU32(&Offset); in decode() 187 LR.FuncRange = {FuncAddr, FuncAddr + Data.getU32(&Offset)}; in lookup() 188 uint32_t NameOffset = Data.getU32(&Offset); in lookup() 214 const uint32_t IT = Data.getU32(&Offset); in lookup() 215 const uint32_t InfoLength = Data.getU32(&Offset); in lookup()
|
H A D | Header.cpp | 71 H.Magic = Data.getU32(&Offset); in decode() 76 H.NumAddresses = Data.getU32(&Offset); in decode() 77 H.StrtabOffset = Data.getU32(&Offset); in decode() 78 H.StrtabSize = Data.getU32(&Offset); in decode()
|
H A D | ObjectFileTransformer.cpp | 54 const uint32_t NameSize = Decoder.getU32(&Offset); in getUUID() 55 const uint32_t PayloadSize = Decoder.getU32(&Offset); in getUUID() 56 const uint32_t PayloadType = Decoder.getU32(&Offset); in getUUID()
|
H A D | InlineInfo.cpp | 83 Data.getU32(&Offset); // Skip Inline.Name. in skip() 126 Inline.Name = Data.getU32(&Offset); in lookup() 197 Inline.Name = Data.getU32(&Offset); in decode()
|
H A D | GsymReader.cpp | 156 if (!Data.getU32(&Offset, in parse() 174 if (Data.getU32(&Offset, Swap->AddrInfoOffsets.data(), Hdr->NumAddresses)) in parse() 180 const uint32_t NumFiles = Data.getU32(&Offset); in parse() 183 if (Data.getU32(&Offset, &Swap->Files[0].Dir, NumFiles*2)) in parse() 290 uint32_t FuncSize = ExpextedData->getU32(&Offset); in lookup()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | DataExtractor.cpp | 108 uint32_t DataExtractor::getU32(uint64_t *offset_ptr, llvm::Error *Err) const { in getU32() function in DataExtractor 112 uint32_t *DataExtractor::getU32(uint64_t *offset_ptr, uint32_t *dst, in getU32() function in DataExtractor 134 return getU32(offset_ptr, Err); in getUnsigned() 149 return (int32_t)getU32(offset_ptr); in getSigned()
|
H A D | ELFAttributeParser.cpp | 142 uint32_t size = de.getU32(cursor); in parseSubsection() 211 uint32_t sectionLength = de.getU32(cursor); in parse()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | DataExtractor.h | 508 uint32_t getU32(uint64_t *offset_ptr, Error *Err = nullptr) const; 513 uint32_t getU32(Cursor &C) const { return getU32(&C.Offset, &C.Err); } in getU32() function 538 uint32_t *getU32(uint64_t *offset_ptr, uint32_t *dst, uint32_t count) const;
|
/freebsd/contrib/llvm-project/llvm/lib/DWP/ |
H A D | DWP.cpp | 36 uint64_t Length = StrOffsetsData.getU32(&Offset); in debugStrOffsetsHeaderSize() 74 StrIndex = InfoData.getU32(&InfoOffset); in getIndexedString() 90 uint64_t StrOffset = StrOffsetsData.getU32(&StrOffsetsOffset); in getIndexedString() 271 C.setLength(Data.getU32(&Offset) + 4); in addAllTypesFromTypesSection() 274 Data.getU32(&Offset); // Abbrev offset in addAllTypesFromTypesSection() 398 Header.DebugAbbrevOffset = InfoData.getU32(&Offset); in parseInfoSectionUnitHeader() 405 InfoData.getU32(&Offset); in parseInfoSectionUnitHeader() 410 Header.DebugAbbrevOffset = InfoData.getU32(&Offset); in parseInfoSectionUnitHeader() 423 auto OldOffset = Data.getU32(&Offset); in writeNewOffsetsTo() 465 ContributionSize = Data.getU32(&HeaderLengthOffset); in writeStringsAndOffsets()
|
/freebsd/contrib/llvm-project/llvm/lib/XRay/ |
H A D | Trace.cpp | 136 Record.TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog() 143 Record.PId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog() 166 auto TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog() 173 auto PId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog()
|
H A D | FileHeaderReader.cpp | 45 uint32_t Bitfield = HeaderExtractor.getU32(&OffsetPtr); in readBinaryFormatHeader()
|
H A D | RecordInitializer.cpp | 46 R.Nanos = E.getU32(&OffsetPtr); in visit() 395 uint32_t Buffer = E.getU32(&OffsetPtr); in visit() 421 R.Delta = E.getU32(&OffsetPtr); in visit()
|
H A D | InstrumentationMap.cpp | 178 Entry.Address = RelocateOrElse(AddrOff, Extractor.getU32(&OffsetPtr)); in loadObj() 183 Entry.Function = RelocateOrElse(FuncOff, Extractor.getU32(&OffsetPtr)); in loadObj()
|
H A D | Profile.cpp | 55 H.Size = Extractor.getU32(&Offset); in readBlockHeader() 62 H.Number = Extractor.getU32(&Offset); in readBlockHeader()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | GCOV.h | 144 uint32_t getWord() { return de.getU32(cursor); } in getWord() 158 Val = de.getU32(cursor); in readInt()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | XCOFFObjectFile.cpp | 1472 ParamsTypeValue = DE.getU32(Cur); in XCOFFTracebackTable() 1475 TraceBackTableOffset = DE.getU32(Cur); in XCOFFTracebackTable() 1478 HandlerMask = DE.getU32(Cur); in XCOFFTracebackTable() 1481 NumOfCtlAnchors = DE.getU32(Cur); in XCOFFTracebackTable() 1486 Disp.push_back(DE.getU32(Cur)); in XCOFFTracebackTable() 1540 EhInfoDisp = Is64BitObj ? DE.getU64(Cur) : DE.getU32(Cur); in XCOFFTracebackTable()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
H A D | AMDGPUDisassembler.cpp | 2180 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective() 2186 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective() 2192 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective() 2223 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective() 2227 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective() 2231 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
|