Home
last modified time | relevance | path

Searched refs:SimplifyMulInst (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/Analysis/
DInstructionSimplify.h42 Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp712 static Value *SimplifyMulInst(Value *Op0, Value *Op1, const TargetData *TD, in SimplifyMulInst() function
778 Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const TargetData *TD, in SimplifyMulInst() function in llvm
780 return ::SimplifyMulInst(Op0, Op1, TD, DT, RecursionLimit); in SimplifyMulInst()
2311 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, TD, DT, MaxRecurse); in SimplifyBinOp()
2401 Result = SimplifyMulInst(I->getOperand(0), I->getOperand(1), TD, DT); in SimplifyInstruction()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp103 if (Value *V = SimplifyMulInst(Op0, Op1, TD)) in visitMul()