Home
last modified time | relevance | path

Searched refs:PubNames (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugPubTable.cpp25 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/
DDWARFYAMLTest.cpp94 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/
DDWARFYAML.cpp31 if (!DWARF.PubNames.Entries.empty() || !IO.outputting()) in mapping()
32 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping()
DMachOEmitter.cpp285 DWARFYAML::EmitPubSection(OS, Obj.DWARF.PubNames, in writeSectionData()
/external/llvm-project/llvm/lib/ObjectYAML/
DDWARFYAML.cpp41 if (PubNames) in getNonEmptySectionNames()
99 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping()
DDWARFEmitter.cpp244 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/
DDWARFYAML.h148 PubSection PubNames; member
/external/llvm-project/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp199 Y.PubNames = in dumpDebugPubSections()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h219 Optional<PubSection> PubNames; member