Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZISelDAGToDAG.cpp1381 auto OperandV = OperandC->getAPIntValue(); in tryFoldLoadStoreIntoMemOperand() local
1383 OperandV = -OperandV; in tryFoldLoadStoreIntoMemOperand()
1384 if (OperandV.getMinSignedBits() > 8) in tryFoldLoadStoreIntoMemOperand()
1386 Operand = CurDAG->getTargetConstant(OperandV, DL, MemVT); in tryFoldLoadStoreIntoMemOperand()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86ISelDAGToDAG.cpp3187 int64_t OperandV = OperandC->getSExtValue(); in foldLoadStoreIntoMemOperand() local
3193 ((MemVT != MVT::i8 && !isInt<8>(OperandV) && isInt<8>(-OperandV)) || in foldLoadStoreIntoMemOperand()
3194 (MemVT == MVT::i64 && !isInt<32>(OperandV) && in foldLoadStoreIntoMemOperand()
3195 isInt<32>(-OperandV))) && in foldLoadStoreIntoMemOperand()
3197 OperandV = -OperandV; in foldLoadStoreIntoMemOperand()
3203 if (MemVT != MVT::i8 && isInt<8>(OperandV)) { in foldLoadStoreIntoMemOperand()
3204 Operand = CurDAG->getTargetConstant(OperandV, SDLoc(Node), MemVT); in foldLoadStoreIntoMemOperand()
3206 } else if (MemVT != MVT::i64 || isInt<32>(OperandV)) { in foldLoadStoreIntoMemOperand()
3207 Operand = CurDAG->getTargetConstant(OperandV, SDLoc(Node), MemVT); in foldLoadStoreIntoMemOperand()