Lines Matching refs:ImmOperand
425 SDValue ImmOperand = Base.getOperand(1); in doPeepholeLoadStoreADDI() local
428 if (auto Const = dyn_cast<ConstantSDNode>(ImmOperand)) { in doPeepholeLoadStoreADDI()
433 ImmOperand = CurDAG->getTargetConstant(CombinedOffset, SDLoc(ImmOperand), in doPeepholeLoadStoreADDI()
434 ImmOperand.getValueType()); in doPeepholeLoadStoreADDI()
435 } else if (auto GA = dyn_cast<GlobalAddressSDNode>(ImmOperand)) { in doPeepholeLoadStoreADDI()
446 ImmOperand = CurDAG->getTargetGlobalAddress( in doPeepholeLoadStoreADDI()
447 GA->getGlobal(), SDLoc(ImmOperand), ImmOperand.getValueType(), in doPeepholeLoadStoreADDI()
449 } else if (auto CP = dyn_cast<ConstantPoolSDNode>(ImmOperand)) { in doPeepholeLoadStoreADDI()
456 ImmOperand = CurDAG->getTargetConstantPool( in doPeepholeLoadStoreADDI()
457 CP->getConstVal(), ImmOperand.getValueType(), CP->getAlign(), in doPeepholeLoadStoreADDI()
471 CurDAG->UpdateNodeOperands(N, Base.getOperand(0), ImmOperand, in doPeepholeLoadStoreADDI()
475 ImmOperand, N->getOperand(3)); in doPeepholeLoadStoreADDI()