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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 797 StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1),
802 InsertNewInstBefore(NewSI, *BBI);
803 NewSI->setDebugLoc(OtherStore->getDebugLoc());
809 NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
InstCombineSelect.cpp 144 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
146 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
184 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
189 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
191 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 700 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos);
701 NewSI->setAlignment(Alignment);
702 NewSI->setDebugLoc(DL);
703 if (TBAATag) NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 468 StoreInst *NewSI =
470 DEBUG(dbgs() << " STORE: " << *NewSI << "\n");
471 (void)NewSI;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 244 milliseconds