Lines Matching defs:ConstOp1
2766 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1.getNode());
2767 if (!ConstOp1 || ConstOp1->getValueSizeInBits(0) > 64)
2770 int64_t Value = ConstOp1->getSExtValue();
2800 auto *ConstOp1 = cast<ConstantSDNode>(C.Op1);
2801 if (!ConstOp1 || ConstOp1->getValueSizeInBits(0) > 64)
2803 uint64_t Value = ConstOp1->getZExtValue();
2806 // Make sure that ConstOp1 is in range of C.Op0.
2807 int64_t SignedValue = ConstOp1->getSExtValue();
2852 Value != ConstOp1->getZExtValue())
2895 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1);
2896 if (ConstOp1 && ConstOp1->getZExtValue() == 0)
2909 if (!ConstOp1)
2914 isUInt<16>(ConstOp1->getZExtValue()))
2919 isInt<16>(ConstOp1->getSExtValue()))
3165 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1);
3166 if (!ConstOp1)
3168 uint64_t CmpVal = ConstOp1->getZExtValue();