Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp1385 auto OperandV = OperandC->getAPIntValue(); in tryFoldLoadStoreIntoMemOperand() local
1387 OperandV = -OperandV; in tryFoldLoadStoreIntoMemOperand()
1388 if (OperandV.getMinSignedBits() > 8) in tryFoldLoadStoreIntoMemOperand()
1390 Operand = CurDAG->getTargetConstant(OperandV, DL, MemVT); in tryFoldLoadStoreIntoMemOperand()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86ISelDAGToDAG.cpp3310 int64_t OperandV = OperandC->getSExtValue(); in foldLoadStoreIntoMemOperand() local
3316 ((MemVT != MVT::i8 && !isInt<8>(OperandV) && isInt<8>(-OperandV)) || in foldLoadStoreIntoMemOperand()
3317 (MemVT == MVT::i64 && !isInt<32>(OperandV) && in foldLoadStoreIntoMemOperand()
3318 isInt<32>(-OperandV))) && in foldLoadStoreIntoMemOperand()
3320 OperandV = -OperandV; in foldLoadStoreIntoMemOperand()
3326 if (MemVT != MVT::i8 && isInt<8>(OperandV)) { in foldLoadStoreIntoMemOperand()
3327 Operand = CurDAG->getTargetConstant(OperandV, SDLoc(Node), MemVT); in foldLoadStoreIntoMemOperand()
3329 } else if (MemVT != MVT::i64 || isInt<32>(OperandV)) { in foldLoadStoreIntoMemOperand()
3330 Operand = CurDAG->getTargetConstant(OperandV, SDLoc(Node), MemVT); in foldLoadStoreIntoMemOperand()