Home
last modified time | relevance | path

Searched refs:getU32 (Results 1 – 17 of 17) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp24 Hdr.Magic = AccelSection.getU32(&Offset); in extract()
27 Hdr.NumBuckets = AccelSection.getU32(&Offset); in extract()
28 Hdr.NumHashes = AccelSection.getU32(&Offset); in extract()
29 Hdr.HeaderDataLength = AccelSection.getU32(&Offset); in extract()
37 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset); in extract()
38 uint32_t NumAtoms = AccelSection.getU32(&Offset); in extract()
83 unsigned Index = AccelSection.getU32(&Offset); in dump()
94 uint32_t Hash = AccelSection.getU32(&HashOffset); in dump()
99 unsigned DataOffset = AccelSection.getU32(&OffsetsOffset); in dump()
106 unsigned StringOffset = AccelSection.getU32(&DataOffset); in dump()
[all …]
DDWARFUnitIndex.cpp21 Version = IndexData.getU32(OffsetPtr); in parse()
22 NumColumns = IndexData.getU32(OffsetPtr); in parse()
23 NumUnits = IndexData.getU32(OffsetPtr); in parse()
24 NumBuckets = IndexData.getU32(OffsetPtr); in parse()
65 auto Index = IndexData.getU32(&Offset); in parseImpl()
76 ColumnKinds[i] = static_cast<DWARFSectionKind>(IndexData.getU32(&Offset)); in parseImpl()
91 Contrib[i].Offset = IndexData.getU32(&Offset); in parseImpl()
98 Contrib[i].Length = IndexData.getU32(&Offset); in parseImpl()
DDWARFDebugArangeSet.cpp43 HeaderData.Length = data.getU32(offset_ptr); in extract()
45 HeaderData.CuOffset = data.getU32(offset_ptr); in extract()
DDWARFFormValue.cpp174 Value.uval = data.getU32(offset_ptr); in extractValue()
188 Value.uval = data.getU32(offset_ptr); in extractValue()
219 Value.uval = data.getU32(offset_ptr); in extractValue()
292 uint32_t size = debug_info_data.getU32(offset_ptr); in skipValue()
DDWARFUnit.cpp72 Result = DA.getU32(&Offset); in getStringOffsetSectionItem()
77 Length = debug_info.getU32(offset_ptr); in extractImpl()
79 uint64_t AbbrOffset = debug_info.getU32(offset_ptr); in extractImpl()
DDWARFTypeUnit.cpp21 TypeOffset = debug_info.getU32(offset_ptr); in extractImpl()
DDWARFContext.cpp38 OS << "length = " << format("0x%08x", pubNames.getU32(&offset)); in dumpPubSection()
40 OS << " unit_offset = " << format("0x%08x", pubNames.getU32(&offset)); in dumpPubSection()
41 OS << " unit_size = " << format("0x%08x", pubNames.getU32(&offset)) << '\n'; in dumpPubSection()
48 uint32_t dieRef = pubNames.getU32(&offset); in dumpPubSection()
248 OS << format("%8.8x\n", strOffsetExt.getU32(&offset)); in dump()
DDWARFDebugLoc.cpp97 E.Length = data.getU32(&Offset); in parse()
DDWARFDebugFrame.cpp146 addInstruction(Opcode, Data.getU32(Offset)); in parseInstructions()
451 uint64_t Length = Data.getU32(&Offset); in parse()
DDWARFDebugLine.cpp74 TotalLength = debug_line_data.getU32(offset_ptr); in parse()
/external/llvm/unittests/Support/
DDataExtractorTest.cpp36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset)); in TEST()
47 EXPECT_EQ(data, DE.getU32(&offset, data, 2)); in TEST()
58 EXPECT_EQ(0xFFFF9080U, DE.getU32(&offset)); in TEST()
68 EXPECT_EQ(data, DE.getU32(&offset, data, 2)); in TEST()
/external/llvm/lib/Support/
DDataExtractor.cpp71 uint32_t DataExtractor::getU32(uint32_t *offset_ptr) const { in getU32() function in DataExtractor
75 uint32_t *DataExtractor::getU32(uint32_t *offset_ptr, uint32_t *dst, in getU32() function in DataExtractor
99 return getU32(offset_ptr); in getUnsigned()
114 return (int32_t)getU32(offset_ptr); in getSigned()
/external/llvm/include/llvm/Support/
DDataExtractor.h231 uint32_t getU32(uint32_t *offset_ptr) const;
256 uint32_t *getU32(uint32_t *offset_ptr, uint32_t *dst, uint32_t count) const;
/external/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp82 auto OldOffset = Data.getU32(&Offset); in writeStringsAndOffsets()
109 InfoData.getU32(&Offset); // Length in getCUSignature()
111 InfoData.getU32(&Offset); // Abbrev offset (should be zero) in getCUSignature()
159 C.Length = Data.getU32(&Offset) + 4; in addAllTypes()
162 Data.getU32(&Offset); // Abbrev offset in addAllTypes()
/external/llvm/tools/llvm-readobj/
DCOFFDumper.cpp499 Magic = DE.getU32(&Offset); in printCodeViewSection()
510 uint32_t SubSectionType = DE.getU32(&Offset), in printCodeViewSection()
511 PayloadSize = DE.getU32(&Offset); in printCodeViewSection()
599 uint32_t FunctionSize = DE.getU32(&Offset); in printCodeViewSection()
605 uint32_t OffsetInIndex = DE.getU32(&Offset), in printCodeViewSection()
606 SegmentLength = DE.getU32(&Offset), in printCodeViewSection()
607 FullSegmentSize = DE.getU32(&Offset); in printCodeViewSection()
624 FilenameOffset = SDE.getU32(&OffsetInSDE); in printCodeViewSection()
642 uint32_t PC = DE.getU32(&Offset), in printCodeViewSection()
643 LineNumber = DE.getU32(&Offset) & 0x7fffffff; in printCodeViewSection()
[all …]
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp198 CRCHash = DE.getU32(&Offset); in getGNUDebuglinkContents()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp3078 uint32_t InitialLength = Data.getU32(&InputOffset); in patchFrameInfoForObject()
3082 uint32_t CIEId = Data.getU32(&InputOffset); in patchFrameInfoForObject()