Home
last modified time | relevance | path

Searched refs:OperandV (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1426 auto OperandV = OperandC->getAPIntValue(); in tryFoldLoadStoreIntoMemOperand() local
1428 OperandV = -OperandV; in tryFoldLoadStoreIntoMemOperand()
1429 if (OperandV.getSignificantBits() > 8) in tryFoldLoadStoreIntoMemOperand()
1431 Operand = CurDAG->getTargetConstant(OperandV, DL, MemVT); in tryFoldLoadStoreIntoMemOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3659 int64_t OperandV = OperandC->getSExtValue(); in foldLoadStoreIntoMemOperand() local
3665 ((MemVT != MVT::i8 && !isInt<8>(OperandV) && isInt<8>(-OperandV)) || in foldLoadStoreIntoMemOperand()
3666 (MemVT == MVT::i64 && !isInt<32>(OperandV) && in foldLoadStoreIntoMemOperand()
3667 isInt<32>(-OperandV))) && in foldLoadStoreIntoMemOperand()
3669 OperandV = -OperandV; in foldLoadStoreIntoMemOperand()
3673 if (MemVT != MVT::i64 || isInt<32>(OperandV)) { in foldLoadStoreIntoMemOperand()
3674 Operand = CurDAG->getTargetConstant(OperandV, SDLoc(Node), MemVT); in foldLoadStoreIntoMemOperand()