Searched defs:SimplifyOrInst (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DInstructionSimplify.cpp46 static Value *SimplifyOrInst(Value *, Value *, const TargetData *,
441 if (Value *V = SimplifyOrInst(Cond, FCmp, TD, DT, MaxRecurse))
1242 /// SimplifyOrInst - Given operands for an Or, see if we can
1244 static Value *SimplifyOrInst(Value *Op0, Value *Op1, const TargetData *TD, function
1331 Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const TargetData *TD, function in class:llvm
1333 return ::SimplifyOrInst(Op0, Op1, TD, DT, RecursionLimit);
2367 case Instruction::Or: return SimplifyOrInst (LHS, RHS, TD, DT, MaxRecurse);
2482 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), TD, DT);
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp70 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
434 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
1737 static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q, function
1860 Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL, function in class:llvm
1864 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
3795 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
4169 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);

Completed in 110 milliseconds