HomeSort by relevance Sort by last modified time
    Searched refs:NewInst (Results 1 - 4 of 4) 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.
263 Instruction *NewInst = II->clone();
267 if (!isa<PHINode>(NewInst)) {
268 RemapInstruction(NewInst, VMap,
274 if (Value *V = SimplifyInstruction(NewInst, TD)) {
281 delete NewInst;
287 NewInst->setName(II->getName()+NameSuffix)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 926 Value *NewInst = 0;
933 NewInst = Builder->CreateFMul(Y, Op1);
934 SimpR = BinaryOperator::CreateFDiv(X, NewInst);
940 NewInst = Builder->CreateFMul(Op0, Y);
941 SimpR = BinaryOperator::CreateFDiv(NewInst, X);
945 if (NewInst) {
946 if (Instruction *T = dyn_cast<Instruction>(NewInst))
    [all...]
InstCombineAddSub.cpp 167 void createInstPostProc(Instruction *NewInst);
    [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 53 milliseconds