Searched defs:NewChild (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h206 /// the OldChild entry in our children list with NewChild, and updates the
207 /// parent pointer of OldChild to be null and the NewChild to be this loop.
211 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) { argument
213 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
217 *I = NewChild;
219 NewChild->ParentLoop = static_cast<LoopT *>(this);
H A DLoopInfo.h259 /// our children list with NewChild, and updates the parent pointer of
260 /// OldChild to be null and the NewChild to be this loop.
262 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
266 void addChildLoop(LoopT *NewChild) { argument
267 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
268 NewChild->ParentLoop = static_cast<LoopT *>(this);
269 SubLoops.push_back(NewChild);
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DLoopInfo.h349 /// the OldChild entry in our children list with NewChild, and updates the
350 /// parent pointer of OldChild to be null and the NewChild to be this loop.
353 LoopT *NewChild) {
355 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
359 *I = NewChild;
361 NewChild->ParentLoop = static_cast<LoopT *>(this);
367 void addChildLoop(LoopT *NewChild) { argument
368 assert(NewChild->ParentLoop == 0 && "NewChild alread
352 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) argument
898 MoveSiblingLoopInto(LoopT *NewChild, LoopT *NewParent) argument
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1387 TreePatternNode *NewChild = ArgMap[Child->getName()]; local
1388 assert(NewChild && "Couldn't find formal argument!");
1390 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1392 setChild(i, NewChild);
1416 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); local
1419 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1422 setChild(i, NewChild);
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1162 TreePatternNode *NewChild = ArgMap[Child->getName()]; local
1163 assert(NewChild && "Couldn't find formal argument!");
1165 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1167 setChild(i, NewChild);
1187 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); local
1190 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1193 setChild(i, NewChild);

Completed in 180 milliseconds