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

/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp59 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
429 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
556 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
755 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
1575 /// SimplifyXorInst - Given operands for a Xor, see if we can
1577 static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q, function
1624 Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout *DL, function in class:llvm
1627 return ::SimplifyXorInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
2921 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
3135 Result = SimplifyXorInst(
[all...]

Completed in 149 milliseconds