HomeSort by relevance Sort by last modified time
    Searched refs:NewParent (Results 1 - 9 of 9) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
trie-node.h 52 typename std::remove_reference<TrieNode<T> *>::type NewParent,
59 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)});
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
StrongPHIElimination.cpp 561 unsigned NewParent = CurrentParent;
562 if (NewParent == DestReg)
567 while (NewParent && (!DT->dominates(MRI->getVRegDef(NewParent), *BBI)
568 || !getRegColor(NewParent)))
569 NewParent = ImmediateDominatingParent[NewParent];
571 // If NewParent is nonzero, then its definition dominates the current
573 // NewParent in order to check for an interference.
574 if (NewParent
    [all...]
  /external/llvm/lib/IR/
BasicBlock.cpp 41 BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
45 if (NewParent)
46 insertInto(NewParent, InsertBefore);
54 void BasicBlock::insertInto(Function *NewParent, BasicBlock *InsertBefore) {
55 assert(NewParent && "Expected a parent");
59 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this);
61 NewParent->getBasicBlockList().push_back(this);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
BasicBlock.cpp 42 BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
50 assert(NewParent &&
52 NewParent->getBasicBlockList().insert(InsertBefore, this);
53 } else if (NewParent) {
54 NewParent->getBasicBlockList().push_back(this);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
BasicBlock.cpp 41 BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
45 if (NewParent)
46 insertInto(NewParent, InsertBefore);
54 void BasicBlock::insertInto(Function *NewParent, BasicBlock *InsertBefore) {
55 assert(NewParent && "Expected a parent");
59 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this);
61 NewParent->getBasicBlockList().push_back(this);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopInfo.cpp 483 Loop *NewParent = LI->getLoopFor(*BI);
487 if (SubloopParents.count(NewParent))
488 NewParent = SubloopParents[NewParent];
489 else if (Unloop->contains(NewParent))
494 for (Loop *OldParent = Unloop->getParentLoop(); OldParent != NewParent;
  /external/clang/tools/libclang/
CursorVisitor.h 128 CXCursor NewParent)
131 Parent = NewParent;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
MergeICmps.cpp 164 void split(BasicBlock *NewParent) const;
197 void BCECmpBlock::split(BasicBlock *NewParent) const {
212 Inst->moveBefore(&*NewParent->begin());
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopInfo.h     [all...]

Completed in 1178 milliseconds