Searched refs:SimplifyAndInst (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | InstructionSimplify.h | 93 Value *SimplifyAndInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 40 static Value *SimplifyAndInst(Value *, Value *, const TargetData *, 416 if (Value *V = SimplifyAndInst(Cond, TCmp, TD, DT, MaxRecurse)) in ThreadCmpOverSelect() 748 if (Value *V = SimplifyAndInst(Op0, Op1, TD, DT, MaxRecurse-1)) in SimplifyMulInst() 1135 static Value *SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD, in SimplifyAndInst() function 1217 Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD, in SimplifyAndInst() function in llvm 1219 return ::SimplifyAndInst(Op0, Op1, TD, DT, RecursionLimit); in SimplifyAndInst() 2325 case Instruction::And: return SimplifyAndInst(LHS, RHS, TD, DT, MaxRecurse); in SimplifyBinOp() 2438 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), TD, DT); in SimplifyInstruction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 1037 if (Value *V = SimplifyAndInst(Op0, Op1, TD)) in visitAnd()
|