Home
last modified time | relevance | path

Searched refs:NewChild (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/Analysis/
DLoopInfo.h347 LoopT *NewChild) { in replaceChildLoopWith() argument
349 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); in replaceChildLoopWith()
353 *I = NewChild; in replaceChildLoopWith()
355 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith()
361 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument
362 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); in addChildLoop()
363 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop()
364 SubLoops.push_back(NewChild); in addChildLoop()
884 void MoveSiblingLoopInto(LoopT *NewChild, in MoveSiblingLoopInto() argument
886 LoopT *OldParent = NewChild->getParentLoop(); in MoveSiblingLoopInto()
[all …]
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp1162 TreePatternNode *NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local
1163 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments()
1165 NewChild->getPredicateFns() == Child->getPredicateFns()) && in SubstituteFormalArguments()
1167 setChild(i, NewChild); in SubstituteFormalArguments()
1187 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); in InlinePatternFragments() local
1190 NewChild->getPredicateFns() == Child->getPredicateFns()) && in InlinePatternFragments()
1193 setChild(i, NewChild); in InlinePatternFragments()