Lines Matching refs:DIE
114 class DIE {
130 std::vector<DIE *> Children;
132 DIE *Parent;
141 explicit DIE(unsigned Tag) in DIE() function
144 virtual ~DIE();
152 const std::vector<DIE *> &getChildren() const { return Children; } in getChildren()
154 DIE *getParent() const { return Parent; } in getParent()
168 void addChild(DIE *Child) { in addChild()
329 DIE *const Entry;
331 explicit DIEEntry(DIE *E) : DIEValue(isEntry), Entry(E) {} in DIEEntry()
333 DIE *getEntry() const { return Entry; } in getEntry()
357 class DIEBlock : public DIEValue, public DIE {
361 : DIEValue(isBlock), DIE(0), Size(0) {} in DIEBlock()