HomeSort by relevance Sort by last modified time
    Searched defs:OrigInst (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
CallPromotionUtils.cpp 99 /// For example, if \p OrigInst is defined in "else_bb" and \p NewInst is
105 static void createRetPHINode(Instruction *OrigInst, Instruction *NewInst,
108 if (OrigInst->getType()->isVoidTy() || OrigInst->use_empty())
112 PHINode *Phi = Builder.CreatePHI(OrigInst->getType(), 0);
114 for (User *U : OrigInst->users())
117 U->replaceUsesOfWith(OrigInst, Phi);
118 Phi->addIncoming(OrigInst, OrigInst->getParent());
261 Instruction *OrigInst = CS.getInstruction()
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 800 milliseconds