HomeSort by relevance Sort by last modified time
    Searched refs:NewSI (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 305 StoreInst *NewSI = Builder.CreateStore(NewVal, NewAddr);
306 NewSI->setAlignment(SI->getAlignment());
307 NewSI->setVolatile(SI->isVolatile());
308 NewSI->setAtomic(SI->getOrdering(), SI->getSynchScope());
309 DEBUG(dbgs() << "Replaced " << *SI << " with " << *NewSI << "\n");
311 return NewSI;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 141 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
143 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
181 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
186 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
188 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
698 Value *NewSI = Builder->CreateSelect(
700 return ReplaceInstUsesWith(Outer, NewSI);
    [all...]
InstCombineLoadStoreAlloca.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp     [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 743 StoreInst *NewSI =
745 DEBUG(dbgs() << " STORE: " << *NewSI << "\n");
746 (void)NewSI;
    [all...]

Completed in 1409 milliseconds