forked from OSchip/llvm-project
[InstCombine] improve types/names for logic-of-icmp helper functions; NFC
This commit is contained in:
parent
3471ae9dad
commit
ba72389269
|
@ -1137,12 +1137,12 @@ static Value *foldUnsignedUnderflowCheck(ICmpInst *ZeroICmp,
|
|||
|
||||
/// Fold (icmp)&(icmp) if possible.
|
||||
Value *InstCombiner::foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS,
|
||||
Instruction &CxtI) {
|
||||
const SimplifyQuery Q = SQ.getWithInstruction(&CxtI);
|
||||
BinaryOperator &And) {
|
||||
const SimplifyQuery Q = SQ.getWithInstruction(&And);
|
||||
|
||||
// Fold (!iszero(A & K1) & !iszero(A & K2)) -> (A & (K1 | K2)) == (K1 | K2)
|
||||
// if K1 and K2 are a one-bit mask.
|
||||
if (Value *V = foldAndOrOfICmpsOfAndWithPow2(LHS, RHS, true, CxtI))
|
||||
if (Value *V = foldAndOrOfICmpsOfAndWithPow2(LHS, RHS, true, And))
|
||||
return V;
|
||||
|
||||
ICmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
|
||||
|
@ -1176,7 +1176,7 @@ Value *InstCombiner::foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS,
|
|||
if (Value *V = foldAndOrOfEqualityCmpsWithConstants(LHS, RHS, true, Builder))
|
||||
return V;
|
||||
|
||||
if (Value *V = foldSignedTruncationCheck(LHS, RHS, CxtI, Builder))
|
||||
if (Value *V = foldSignedTruncationCheck(LHS, RHS, And, Builder))
|
||||
return V;
|
||||
|
||||
if (Value *V = foldIsPowerOf2(LHS, RHS, true /* JoinedByAnd */, Builder))
|
||||
|
@ -2179,12 +2179,12 @@ Value *InstCombiner::matchSelectFromAndOr(Value *A, Value *C, Value *B,
|
|||
|
||||
/// Fold (icmp)|(icmp) if possible.
|
||||
Value *InstCombiner::foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS,
|
||||
Instruction &CxtI) {
|
||||
const SimplifyQuery Q = SQ.getWithInstruction(&CxtI);
|
||||
BinaryOperator &Or) {
|
||||
const SimplifyQuery Q = SQ.getWithInstruction(&Or);
|
||||
|
||||
// Fold (iszero(A & K1) | iszero(A & K2)) -> (A & (K1 | K2)) != (K1 | K2)
|
||||
// if K1 and K2 are a one-bit mask.
|
||||
if (Value *V = foldAndOrOfICmpsOfAndWithPow2(LHS, RHS, false, CxtI))
|
||||
if (Value *V = foldAndOrOfICmpsOfAndWithPow2(LHS, RHS, false, Or))
|
||||
return V;
|
||||
|
||||
ICmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
|
||||
|
|
|
@ -619,9 +619,9 @@ private:
|
|||
Instruction::CastOps isEliminableCastPair(const CastInst *CI1,
|
||||
const CastInst *CI2);
|
||||
|
||||
Value *foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI);
|
||||
Value *foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI);
|
||||
Value *foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &I);
|
||||
Value *foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &And);
|
||||
Value *foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &Or);
|
||||
Value *foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &Xor);
|
||||
|
||||
/// Optimize (fcmp)&(fcmp) or (fcmp)|(fcmp).
|
||||
/// NOTE: Unlike most of instcombine, this returns a Value which should
|
||||
|
|
Loading…
Reference in New Issue