Lines Matching defs:Invert
23938 bool Invert = false;
23943 case ISD::SETUGT: Invert = true; [[fallthrough]];
23945 case ISD::SETULT: Invert = true; [[fallthrough]];
23954 if (Invert)
23973 bool Invert = Cond == ISD::SETNE ||
23987 if (!FlipSigns && !Invert && ISD::isBuildVectorAllZeros(Op0.getNode())) {
23998 if (!FlipSigns && !Invert && ISD::isBuildVectorAllOnes(Op1.getNode())) {
24011 if (!FlipSigns && !Invert && DAG.ComputeNumSignBits(Op0) > 32 &&
24051 if (Invert)
24074 if (Invert)
24094 if (Invert)
24192 bool Invert = (CC == ISD::SETNE) ^ isNullConstant(Op1);
24195 if (Invert) {
43240 auto GetDemandedMasks = [&](SDValue Op, bool Invert = false) {
43259 } else if ((Invert && !EltBits[I].isAllOnes()) ||
43260 (!Invert && !EltBits[I].isZero())) {
43261 OpBits |= Invert ? ~EltBits[I] : EltBits[I];
47434 // Invert the cond to not(cond) : xor(op,allones)=not(op)
54792 auto GetDemandedMasks = [&](SDValue Op, bool Invert = false) {
54807 } else if ((Invert && !EltBits[I].isAllOnes()) ||
54808 (!Invert && !EltBits[I].isZero())) {
54809 DemandedBits |= Invert ? ~EltBits[I] : EltBits[I];