Lines Matching refs:ConstOp1
2248 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1.getNode()); in adjustZeroCmp() local
2249 if (!ConstOp1) in adjustZeroCmp()
2252 int64_t Value = ConstOp1->getSExtValue(); in adjustZeroCmp()
2282 auto *ConstOp1 = cast<ConstantSDNode>(C.Op1); in adjustSubwordCmp() local
2283 uint64_t Value = ConstOp1->getZExtValue(); in adjustSubwordCmp()
2287 int64_t SignedValue = ConstOp1->getSExtValue(); in adjustSubwordCmp()
2332 Value != ConstOp1->getZExtValue()) in adjustSubwordCmp()
2373 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1); in shouldSwapCmpOperands() local
2374 if (ConstOp1 && ConstOp1->getZExtValue() == 0) in shouldSwapCmpOperands()
2387 if (!ConstOp1) in shouldSwapCmpOperands()
2392 isUInt<16>(ConstOp1->getZExtValue())) in shouldSwapCmpOperands()
2397 isInt<16>(ConstOp1->getSExtValue())) in shouldSwapCmpOperands()
2622 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1); in adjustForTestUnderMask() local
2623 if (!ConstOp1) in adjustForTestUnderMask()
2625 uint64_t CmpVal = ConstOp1->getZExtValue(); in adjustForTestUnderMask()