Lines Matching refs:ConstOp1
1545 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1.getNode()); in adjustZeroCmp() local
1546 if (!ConstOp1) in adjustZeroCmp()
1549 int64_t Value = ConstOp1->getSExtValue(); in adjustZeroCmp()
1577 auto *ConstOp1 = cast<ConstantSDNode>(C.Op1); in adjustSubwordCmp() local
1578 uint64_t Value = ConstOp1->getZExtValue(); in adjustSubwordCmp()
1582 int64_t SignedValue = ConstOp1->getSExtValue(); in adjustSubwordCmp()
1625 Value != ConstOp1->getZExtValue()) in adjustSubwordCmp()
1666 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1); in shouldSwapCmpOperands() local
1667 if (ConstOp1 && ConstOp1->getZExtValue() == 0) in shouldSwapCmpOperands()
1680 if (!ConstOp1) in shouldSwapCmpOperands()
1685 isUInt<16>(ConstOp1->getZExtValue())) in shouldSwapCmpOperands()
1690 isInt<16>(ConstOp1->getSExtValue())) in shouldSwapCmpOperands()
1920 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1); in adjustForTestUnderMask() local
1921 if (!ConstOp1) in adjustForTestUnderMask()
1923 uint64_t CmpVal = ConstOp1->getZExtValue(); in adjustForTestUnderMask()