reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 7329                             APInt::getAllOnesValue(OpSizeInBits)))
 7345     auto MatchOutOfRange = [OpSizeInBits](ConstantSDNode *LHS,
 7350       return (c1 + c2).uge(OpSizeInBits);
 7355     auto MatchInRange = [OpSizeInBits](ConstantSDNode *LHS,
 7360       return (c1 + c2).ult(OpSizeInBits);
 7383     auto MatchOutOfRange = [OpSizeInBits, InnerBitwidth](ConstantSDNode *LHS,
 7388       return c2.uge(OpSizeInBits - InnerBitwidth) &&
 7389              (c1 + c2).uge(OpSizeInBits);
 7396     auto MatchInRange = [OpSizeInBits, InnerBitwidth](ConstantSDNode *LHS,
 7401       return c2.uge(OpSizeInBits - InnerBitwidth) &&
 7402              (c1 + c2).ult(OpSizeInBits);
 7467       if (N0C1->getAPIntValue().ult(OpSizeInBits)) {
 7470         APInt Mask = APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - c1);
 7470         APInt Mask = APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - c1);