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

  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 49 Instruction *NewInst = II->clone();
51 NewInst->setName(II->getName()+NameSuffix);
52 NewBB->getInstList().push_back(NewInst);
53 VMap[II] = NewInst; // Add instruction map to value.
264 Instruction *NewInst = II->clone();
268 if (!isa<PHINode>(NewInst)) {
269 RemapInstruction(NewInst, VMap,
275 if (Value *V = SimplifyInstruction(NewInst, TD)) {
282 delete NewInst;
288 NewInst->setName(II->getName()+NameSuffix)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 329 const SwitchInst *NewInst = cast_or_null<SwitchInst>(NewI);
330 assert(NewInst && "All instructions that are in SrcBB must be in VMap.");
332 NewLoopProps.UnswitchedVals[NewInst] = OldLoopProps.UnswitchedVals[OldInst];
    [all...]

Completed in 285 milliseconds