reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/DebugInfo/DWARF/DWARFDie.h
   96   DWARFDie getParent() const;

References

lib/DebugInfo/DWARF/DWARFDie.cpp
  560   Indent = dumpParentChain(Die.getParent(), OS, Indent, DumpOpts, Depth + 1);
  576     Indent = dumpParentChain(getParent(), OS, Indent, ParentDumpOpts);
lib/DebugInfo/DWARF/DWARFUnit.cpp
  664     SubroutineDIE  = SubroutineDIE.getParent();
lib/DebugInfo/DWARF/DWARFVerifier.cpp
  209   DWARFDie Curr = Die.getParent();
  210   for (; Curr.isValid() && !Curr.isSubprogramDIE(); Curr = Die.getParent()) {
unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
 1163   auto ParentDie = CUDie.getParent();
 1194   EXPECT_EQ(A.getParent(), CUDie);
 1199   EXPECT_EQ(B.getParent(), A);
 1202   EXPECT_EQ(C.getParent(), A);
 1205   EXPECT_EQ(D.getParent(), A);
 1220   EXPECT_EQ(C1.getParent(), C);
 1221   EXPECT_EQ(C2.getParent(), C);
 1284   EXPECT_FALSE(DefaultDie.getParent().isValid());