HomeSort by relevance Sort by last modified time
    Searched refs:SelectInst (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysis.h 34 class SelectInst;
57 bool relatedSelect(const SelectInst *A, const Value *B);
ProvenanceAnalysis.cpp 33 bool ProvenanceAnalysis::relatedSelect(const SelectInst *A,
37 if (const SelectInst *SB = dyn_cast<SelectInst>(B))
154 if (const SelectInst *S = dyn_cast<SelectInst>(A))
156 if (const SelectInst *S = dyn_cast<SelectInst>(B))
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 39 bool processSelect(SelectInst *SI);
71 bool CorrelatedValuePropagation::processSelect(SelectInst *S) {
109 SelectInst *SI = dyn_cast<SelectInst>(Incoming);
294 BBChanged |= processSelect(cast<SelectInst>(II));
EarlyCSE.cpp 67 isa<SelectInst>(Inst) || isa<ExtractElementInst>(Inst) ||
136 isa<GetElementPtrInst>(Inst) || isa<SelectInst>(Inst) ||
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 165 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
385 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
539 SelectInst *SI = cast<SelectInst>(I.getOperand(1));
623 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
639 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
706 return SelectInst::Create(IC, Constant::getNullValue(I.getType())
    [all...]
InstCombineSelect.cpp 26 SelectInst *SI = dyn_cast<SelectInst>(V);
124 Instruction *InstCombiner::FoldSelectOpOp(SelectInst &SI, Instruction *TI,
210 Instruction *InstCombiner::FoldSelectIntoOp(SelectInst &SI, Value *TrueVal,
352 /// visitSelectInstWithICmp - Visit a SelectInst that has an
355 Instruction *InstCombiner::visitSelectInstWithICmp(SelectInst &SI,
539 const SelectInst &SI) {
595 static Value *foldSelectICmpAnd(const SelectInst &SI, ConstantInt *TrueVal,
661 Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
    [all...]
InstCombine.h 181 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
183 Instruction *FoldSelectIntoOp(SelectInst &SI, Value*, Value*);
187 Instruction *visitSelectInst(SelectInst &SI);
188 Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
217 Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
InstCombineShifts.cpp 32 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
164 SelectInst *SI = cast<SelectInst>(I);
352 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
InstCombineAddSub.cpp 903 return SelectInst::Create(ZI->getOperand(0), AddOne(CI), CI);
    [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 211 SizeOffsetType visitSelectInst(SelectInst &I);
272 SizeOffsetEvalType visitSelectInst(SelectInst &I);
  /external/llvm/lib/Analysis/
CostModel.cpp 127 const SelectInst *SI = cast<SelectInst>(I);
BasicAliasAnalysis.cpp 515 AliasResult aliasSelect(const SelectInst *SI, uint64_t SISize,
576 if (const SelectInst *SI = dyn_cast<SelectInst>(V)) {
    [all...]
InstructionSimplify.cpp 364 SelectInst *SI;
365 if (isa<SelectInst>(LHS)) {
366 SI = cast<SelectInst>(LHS);
368 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
369 SI = cast<SelectInst>(RHS);
438 if (!isa<SelectInst>(LHS)) {
442 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
443 SelectInst *SI = cast<SelectInst>(LHS);
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 170 } else if (const SelectInst *SI = dyn_cast<SelectInst>(U)) {
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 221 SelectInst *Sel =
222 SelectInst::Create(ICmp,
SimplifyCFG.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 168 void visitSelectInst(SelectInst &I);
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 516 SelectInst *SI = cast<SelectInst>(RVI);
  /external/llvm/include/llvm/
InstVisitor.h 194 RetTy visitSelectInst(SelectInst &I) { DELEGATE(Instruction);}
  /external/llvm/include/llvm/Support/
NoFolder.h 268 return SelectInst::Create(C, True, False);
PatternMatch.h 605 // Matchers for SelectInst classes
620 if (SelectInst *I = dyn_cast<SelectInst>(V))
844 SelectInst *SI = dyn_cast<SelectInst>(V);

Completed in 852 milliseconds

1 2 3