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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 157 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
159 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
202 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
207 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
209 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
712 Value *NewSI = Builder->CreateSelect(
714 return replaceInstUsesWith(Outer, NewSI);
    [all...]
InstCombineLoadStoreAlloca.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineSelect.cpp 137 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
139 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
177 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
182 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
184 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
    [all...]
InstCombineLoadStoreAlloca.cpp 604 StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1),
609 InsertNewInstBefore(NewSI, *BBI);
610 NewSI->setDebugLoc(OtherStore->getDebugLoc());
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LICM.cpp 648 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos);
649 NewSI->setAlignment(Alignment);
650 NewSI->setDebugLoc(DL);
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp     [all...]
SROA.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 301 Value *NewSI =
304 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
347 Value *NewSI = Builder.CreateSelect(SI.getCondition(), OtherOpT, OtherOpF,
349 Value *Op0 = MatchIsOpZero ? MatchOp : NewSI;
350 Value *Op1 = MatchIsOpZero ? NewSI : MatchOp;
    [all...]
InstCombineLoadStoreAlloca.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LICM.cpp     [all...]
SROA.cpp     [all...]
SimpleLoopUnswitch.cpp 610 auto *NewSI = SwitchInst::Create(LoopCond, NewPH, ExitCases.size(), OldPH);
669 NewSI->addCase(CaseVal, UnswitchedBB);
675 NewSI->setDefaultDest(DefaultExitBB);
680 NewSI->addCase(Case.getCaseValue(), NewPH);
    [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 451 StoreInst *NewSI = Builder.CreateStore(NewVal, NewAddr);
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");
457 return NewSI;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
AtomicExpandPass.cpp 461 StoreInst *NewSI = Builder.CreateStore(NewVal, NewAddr);
462 NewSI->setAlignment(SI->getAlignment());
463 NewSI->setVolatile(SI->isVolatile());
464 NewSI->setAtomic(SI->getOrdering(), SI->getSyncScopeID());
465 LLVM_DEBUG(dbgs() << "Replaced " << *SI << " with " << *NewSI << "\n");
467 return NewSI;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyCFG.cpp 787 SwitchInst *NewSI = Builder.CreateSwitch(CV, PredDefault,
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);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 762 StoreInst *NewSI =
764 DEBUG(dbgs() << " STORE: " << *NewSI << "\n");
765 (void)NewSI;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 760 milliseconds