/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.cpp | 24 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 …]
|
D | DWARFUnitIndex.cpp | 21 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()
|
D | DWARFDebugArangeSet.cpp | 43 HeaderData.Length = data.getU32(offset_ptr); in extract() 45 HeaderData.CuOffset = data.getU32(offset_ptr); in extract()
|
D | DWARFFormValue.cpp | 174 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()
|
D | DWARFUnit.cpp | 73 Result = DA.getU32(&Offset); in getStringOffsetSectionItem() 78 Length = debug_info.getU32(offset_ptr); in extractImpl() 80 uint64_t AbbrOffset = debug_info.getU32(offset_ptr); in extractImpl()
|
D | DWARFTypeUnit.cpp | 21 TypeOffset = debug_info.getU32(offset_ptr); in extractImpl()
|
D | DWARFContext.cpp | 41 OS << "length = " << format("0x%08x", pubNames.getU32(&offset)); in dumpPubSection() 43 OS << " unit_offset = " << format("0x%08x", pubNames.getU32(&offset)); in dumpPubSection() 44 OS << " unit_size = " << format("0x%08x", pubNames.getU32(&offset)) << '\n'; in dumpPubSection() 51 uint32_t dieRef = pubNames.getU32(&offset); in dumpPubSection() 255 OS << format("%8.8x\n", strOffsetExt.getU32(&offset)); in dump()
|
D | DWARFDebugFrame.cpp | 149 addInstruction(Opcode, Data.getU32(Offset)); in parseInstructions() 501 return Data.getU32(&Offset); in readPointer() 525 uint64_t Length = Data.getU32(&Offset); in parse()
|
D | DWARFDebugLoc.cpp | 96 E.Length = data.getU32(&Offset); in parse()
|
D | DWARFDebugLine.cpp | 72 TotalLength = debug_line_data.getU32(offset_ptr); in parse()
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | DataExtractorTest.cpp | 35 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset)); in TEST() 46 EXPECT_EQ(data, DE.getU32(&offset, data, 2)); in TEST() 57 EXPECT_EQ(0xFFFF9080U, DE.getU32(&offset)); in TEST() 67 EXPECT_EQ(data, DE.getU32(&offset, data, 2)); in TEST()
|
/external/llvm/unittests/Support/ |
D | DataExtractorTest.cpp | 36 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/swiftshader/third_party/LLVM/lib/DebugInfo/ |
D | DWARFCompileUnit.cpp | 32 Length = debug_info.getU32(offset_ptr); in extract() 34 abbrOffset = debug_info.getU32(offset_ptr); in extract() 62 Length = debug_info_data.getU32(&offset); in extract() 64 bool abbrevsOK = debug_info_data.getU32(&offset) == abbrevs->getOffset(); in extract()
|
D | DWARFFormValue.cpp | 109 Value.uval = data.getU32(offset_ptr); in extractValue() 123 Value.uval = data.getU32(offset_ptr); in extractValue() 133 Value.uval = data.getU32(offset_ptr); in extractValue() 198 uint32_t size = debug_info_data.getU32(offset_ptr); in skipValue()
|
D | DWARFDebugArangeSet.cpp | 69 Header.Length = data.getU32(offset_ptr); in extract() 71 Header.CuOffset = data.getU32(offset_ptr); in extract()
|
D | DWARFDebugInfoEntry.cpp | 139 form_size = debug_info_data.getU32(&offset); in extractFast() 264 form_size = debug_info_data.getU32(&offset); in extract()
|
D | DWARFDebugLine.cpp | 137 prologue->TotalLength = debug_line_data.getU32(offset_ptr); in parsePrologue() 142 prologue->PrologueLength = debug_line_data.getU32(offset_ptr); in parsePrologue()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | DataExtractor.cpp | 71 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/lib/Support/ |
D | DataExtractor.cpp | 71 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/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | DataExtractor.h | 229 uint32_t getU32(uint32_t *offset_ptr) const; 254 uint32_t *getU32(uint32_t *offset_ptr, uint32_t *dst, uint32_t count) const;
|
/external/llvm/include/llvm/Support/ |
D | DataExtractor.h | 231 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/ |
D | llvm-dwp.cpp | 86 auto OldOffset = Data.getU32(&Offset); in writeStringsAndOffsets() 125 uint32_t StrOffset = StrOffsetsData.getU32(&StrOffsetsOffset); in getIndexedString() 136 InfoData.getU32(&Offset); // Length in getCUIdentifiers() 138 InfoData.getU32(&Offset); // Abbrev offset (should be zero) in getCUIdentifiers() 246 C.Length = Data.getU32(&Offset) + 4; in addAllTypes() 249 Data.getU32(&Offset); // Abbrev offset in addAllTypes()
|
/external/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 886 uint32_t FunctionSize = DE.getU32(&Offset); in printCodeViewSymbolSection() 892 uint32_t OffsetInIndex = DE.getU32(&Offset), in printCodeViewSymbolSection() 893 NumLines = DE.getU32(&Offset), in printCodeViewSymbolSection() 894 FullSegmentSize = DE.getU32(&Offset); in printCodeViewSymbolSection() 911 uint32_t PC = DE.getU32(&Offset), LineData = DE.getU32(&Offset); in printCodeViewSymbolSection() 940 DE.getU32(&Offset); in printCodeViewSymbolSection()
|
/external/llvm/lib/DebugInfo/Symbolize/ |
D | Symbolize.cpp | 221 CRCHash = DE.getU32(&Offset); in getGNUDebuglinkContents()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 3135 uint32_t InitialLength = Data.getU32(&InputOffset); in patchFrameInfoForObject() 3139 uint32_t CIEId = Data.getU32(&InputOffset); in patchFrameInfoForObject()
|