Searched refs:NewSI (Results 1 - 12 of 12) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp157 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0), local
159 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
202 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT, local
207 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
209 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
712 Value *NewSI = Builder->CreateSelect( local
714 return replaceInstUsesWith(Outer, NewSI);
1124 Value *NewSI = Builder->CreateCast(CastOp, local
1127 return replaceInstUsesWith(SI, NewSI);
1168 Value *NewSI local
[all...]
H A DInstCombineLoadStoreAlloca.cpp1387 StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1), local
1392 InsertNewInstBefore(NewSI, *BBI);
1393 NewSI->setDebugLoc(OtherStore->getDebugLoc());
1400 NewSI->setAAMetadata(AATags);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp137 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0), local
139 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
177 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT, local
182 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
184 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
H A DInstCombineLoadStoreAlloca.cpp604 StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1), local
609 InsertNewInstBefore(NewSI, *BBI);
610 NewSI->setDebugLoc(OtherStore->getDebugLoc());
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLICM.cpp648 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos); local
649 NewSI->setAlignment(Alignment);
650 NewSI->setDebugLoc(DL);
/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp821 StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos); variable
822 NewSI->setAlignment(Alignment);
823 NewSI->setDebugLoc(DL);
825 NewSI->setAAMetadata(AATags);
H A DSROA.cpp2526 StoreInst *NewSI;
2545 NewSI = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
2549 NewSI = IRB.CreateAlignedStore(V, NewPtr, getSliceAlign(V->getType()),
2553 NewSI->setAtomic(SI.getOrdering(), SI.getSynchScope());
2557 DEBUG(dbgs() << " to: " << *NewSI << "\n");
2558 return NewSI->getPointerOperand() == &NewAI && !SI.isVolatile();
/external/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp451 StoreInst *NewSI = Builder.CreateStore(NewVal, NewAddr); local
452 NewSI->setAlignment(SI->getAlignment());
453 NewSI->setVolatile(SI->isVolatile());
454 NewSI->setAtomic(SI->getOrdering(), SI->getSynchScope());
455 DEBUG(dbgs() << "Replaced " << *SI << " with " << *NewSI << "\n"); local
457 return NewSI;
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSimplifyCFG.cpp787 SwitchInst *NewSI = Builder.CreateSwitch(CV, PredDefault, local
789 NewSI->setDebugLoc(PTI->getDebugLoc());
791 NewSI->addCase(PredCases[i].first, PredCases[i].second);
799 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
800 if (NewSI->getSuccessor(i) == BB) {
808 NewSI->setSuccessor(i, InfLoopBlock);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1108 SwitchInst *NewSI = local
1110 NewSI->setDebugLoc(PTI->getDebugLoc());
1112 NewSI->addCase(V.Value, V.Dest);
1120 NewSI->setMetadata(
1131 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
1132 if (NewSI->getSuccessor(i) == BB) {
1140 NewSI->setSuccessor(i, InfLoopBlock);
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp762 StoreInst *NewSI = local
764 DEBUG(dbgs() << " STORE: " << *NewSI << "\n");
765 (void)NewSI;
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2544 Instruction *NewSI = nullptr; local
2547 NewSI = Builder.CreateMaskedScatter(StoredVal[Part], VectorGep[Part],
2571 NewSI = Builder.CreateMaskedStore(StoredVal[Part], VecPtr, Alignment,
2574 NewSI =
2577 addMetadata(NewSI, SI);

Completed in 1325 milliseconds