Searched refs:GNUPubNames (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/llvm/unittests/ObjectYAML/ |
D | DWARFYAMLTest.cpp | 160 ASSERT_TRUE(Data.GNUPubNames.hasValue()); in TEST() 161 DWARFYAML::PubSection GNUPubNames = Data.GNUPubNames.getValue(); in TEST() local 163 ASSERT_EQ(GNUPubNames.Entries.size(), 2u); in TEST() 164 EXPECT_EQ((uint32_t)GNUPubNames.Entries[0].DieOffset, 0x1234u); in TEST() 165 EXPECT_EQ((uint8_t)GNUPubNames.Entries[0].Descriptor, 0x12); in TEST() 166 EXPECT_EQ(GNUPubNames.Entries[0].Name, "abc"); in TEST() 167 EXPECT_EQ((uint32_t)GNUPubNames.Entries[1].DieOffset, 0x4321u); in TEST() 168 EXPECT_EQ((uint8_t)GNUPubNames.Entries[1].Descriptor, 0x34); in TEST() 169 EXPECT_EQ(GNUPubNames.Entries[1].Name, "def"); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 35 if (!DWARF.GNUPubNames.Entries.empty() || !IO.outputting()) in mapping() 36 IO.mapOptional("debug_gnu_pubnames", DWARF.GNUPubNames); in mapping()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 45 if (GNUPubNames) in getNonEmptySectionNames() 102 IO.mapOptional("debug_gnu_pubnames", DWARF.GNUPubNames); in mapping()
|
D | DWARFEmitter.cpp | 254 assert(DI.GNUPubNames && "unexpected emitDebugGNUPubnames() call"); in emitDebugGNUPubnames() 255 return emitPubSection(OS, *DI.GNUPubNames, DI.IsLittleEndian, in emitDebugGNUPubnames()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 151 PubSection GNUPubNames; member
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 204 Y.GNUPubNames = in dumpDebugPubSections()
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 222 Optional<PubSection> GNUPubNames; member
|