Searched refs:OperandV (Results 1 – 2 of 2) sorted by relevance
1452 auto OperandV = OperandC->getAPIntValue(); in tryFoldLoadStoreIntoMemOperand() local1454 OperandV = -OperandV; in tryFoldLoadStoreIntoMemOperand()1455 if (OperandV.getSignificantBits() > 8) in tryFoldLoadStoreIntoMemOperand()1457 Operand = CurDAG->getTargetConstant(OperandV, DL, MemVT); in tryFoldLoadStoreIntoMemOperand()
3787 int64_t OperandV = OperandC->getSExtValue(); in foldLoadStoreIntoMemOperand() local3793 ((MemVT != MVT::i8 && !isInt<8>(OperandV) && isInt<8>(-OperandV)) || in foldLoadStoreIntoMemOperand()3794 (MemVT == MVT::i64 && !isInt<32>(OperandV) && in foldLoadStoreIntoMemOperand()3795 isInt<32>(-OperandV))) && in foldLoadStoreIntoMemOperand()3797 OperandV = -OperandV; in foldLoadStoreIntoMemOperand()3801 if (MemVT != MVT::i64 || isInt<32>(OperandV)) { in foldLoadStoreIntoMemOperand()3802 Operand = CurDAG->getSignedTargetConstant(OperandV, SDLoc(Node), MemVT); in foldLoadStoreIntoMemOperand()