HomeSort by relevance Sort by last modified time
    Searched refs:NewInst (Results 1 - 2 of 2) 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.
261 Instruction *NewInst = II->clone();
265 if (!isa<PHINode>(NewInst)) {
266 RemapInstruction(NewInst, VMap,
272 if (Value *V = SimplifyInstruction(NewInst, TD)) {
279 delete NewInst;
285 NewInst->setName(II->getName()+NameSuffix)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 320 const SwitchInst* NewInst = cast_or_null<SwitchInst>(NewI);
321 assert(NewInst && "All instructions that are in SrcBB must be in VMap.");
323 NewLoopProps.UnswitchedVals[NewInst] = OldLoopProps.UnswitchedVals[OldInst];
    [all...]

Completed in 90 milliseconds