Lines Matching refs:Parent
50 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
54 if (Parent)
55 Parent->addChild(this);
59 LexicalScope *getParent() const { return Parent; }
75 if (Parent)
76 Parent->openInsnRange(MI);
84 if (Parent)
85 Parent->extendInsnRange(MI);
96 // If Parent dominates NewScope then do not close Parent's instruction
98 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
99 Parent->closeInsnRange(NewScope);
121 LexicalScope *Parent; // Parent to this scope.