Searched refs:SimplifyXorInst (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | InstructionSimplify.h | 197 Value *SimplifyXorInst(Value *LHS, Value *RHS, const DataLayout &DL,
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 70 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned); 440 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()), in ThreadCmpOverSelect() 565 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1)) in SimplifyAddInst() 763 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1)) in SimplifySubInst() 1854 static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q, in SimplifyXorInst() function 1901 Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL, in SimplifyXorInst() function in llvm 1905 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), in SimplifyXorInst() 3736 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse); in SimplifyBinOp() 4030 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I); in SimplifyInstruction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 2623 if (Value *V = SimplifyXorInst(Op0, Op1, DL, TLI, DT, AC)) in visitXor()
|