Searched refs:PubNames (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugPubTable.cpp | 25 DWARFDataExtractor PubNames(Obj, Sec, LittleEndian, 0); in DWARFDebugPubTable() local 27 while (PubNames.isValidOffset(Offset)) { in DWARFDebugPubTable() 31 SetData.Length = PubNames.getU32(&Offset); in DWARFDebugPubTable() 32 SetData.Version = PubNames.getU16(&Offset); in DWARFDebugPubTable() 33 SetData.Offset = PubNames.getRelocatedValue(4, &Offset); in DWARFDebugPubTable() 34 SetData.Size = PubNames.getU32(&Offset); in DWARFDebugPubTable() 37 uint32_t DieRef = PubNames.getU32(&Offset); in DWARFDebugPubTable() 40 uint8_t IndexEntryValue = GnuStyle ? PubNames.getU8(&Offset) : 0; in DWARFDebugPubTable() 41 StringRef Name = PubNames.getCStrRef(&Offset); in DWARFDebugPubTable()
|
/external/llvm-project/llvm/unittests/ObjectYAML/ |
D | DWARFYAMLTest.cpp | 94 ASSERT_TRUE(Data.PubNames.hasValue()); in TEST() 95 DWARFYAML::PubSection PubNames = Data.PubNames.getValue(); in TEST() local 97 ASSERT_EQ(PubNames.Entries.size(), 2u); in TEST() 98 EXPECT_EQ((uint32_t)PubNames.Entries[0].DieOffset, 0x1234u); in TEST() 99 EXPECT_EQ(PubNames.Entries[0].Name, "abc"); in TEST() 100 EXPECT_EQ((uint32_t)PubNames.Entries[1].DieOffset, 0x4321u); in TEST() 101 EXPECT_EQ(PubNames.Entries[1].Name, "def"); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 31 if (!DWARF.PubNames.Entries.empty() || !IO.outputting()) in mapping() 32 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping()
|
D | MachOEmitter.cpp | 285 DWARFYAML::EmitPubSection(OS, Obj.DWARF.PubNames, in writeSectionData()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 41 if (PubNames) in getNonEmptySectionNames() 99 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping()
|
D | DWARFEmitter.cpp | 244 assert(DI.PubNames && "unexpected emitDebugPubnames() call"); in emitDebugPubnames() 245 return emitPubSection(OS, *DI.PubNames, DI.IsLittleEndian); in emitDebugPubnames()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 148 PubSection PubNames; member
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 199 Y.PubNames = in dumpDebugPubSections()
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 219 Optional<PubSection> PubNames; member
|