Lines Matching refs:CurDAG

87     return CurDAG->getTargetConstant(Imm, DL, MVT::i32);  in getI32Imm()
110 Offset = CurDAG->getTargetConstant(Imm, DL, CN->getValueType(0)); in selectAddrSls()
132 Offset = CurDAG->getTargetConstant(Imm, DL, CN->getValueType(0)); in selectAddrRiSpls()
133 Base = CurDAG->getRegister(Lanai::R0, CN->getValueType(0)); in selectAddrRiSpls()
134 AluOp = CurDAG->getTargetConstant(LPAC::ADD, DL, MVT::i32); in selectAddrRiSpls()
145 Offset = CurDAG->getTargetConstant(Imm, DL, CN->getValueType(0)); in selectAddrRiSpls()
146 Base = CurDAG->getRegister(Lanai::R0, CN->getValueType(0)); in selectAddrRiSpls()
147 AluOp = CurDAG->getTargetConstant(LPAC::ADD, DL, MVT::i32); in selectAddrRiSpls()
155 Base = CurDAG->getTargetFrameIndex( in selectAddrRiSpls()
157 getTargetLowering()->getPointerTy(CurDAG->getDataLayout())); in selectAddrRiSpls()
158 Offset = CurDAG->getTargetConstant(0, DL, MVT::i32); in selectAddrRiSpls()
159 AluOp = CurDAG->getTargetConstant(LPAC::ADD, DL, MVT::i32); in selectAddrRiSpls()
171 AluOp = CurDAG->getTargetConstant(LPAC::ADD, DL, MVT::i32); in selectAddrRiSpls()
179 Base = CurDAG->getTargetFrameIndex( in selectAddrRiSpls()
181 getTargetLowering()->getPointerTy(CurDAG->getDataLayout())); in selectAddrRiSpls()
186 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i32); in selectAddrRiSpls()
197 Offset = CurDAG->getTargetConstant(0, DL, MVT::i32); in selectAddrRiSpls()
198 AluOp = CurDAG->getTargetConstant(LPAC::ADD, DL, MVT::i32); in selectAddrRiSpls()
244 AluOp = CurDAG->getTargetConstant(AluCode, SDLoc(Addr), MVT::i32); in selectAddrRr()
277 DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n"); in Select()
281 DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n"); in Select()
301 SDValue Imm = CurDAG->getTargetConstant(0, DL, MVT::i32); in selectFrameIndex()
304 SDValue TFI = CurDAG->getTargetFrameIndex(FI, VT); in selectFrameIndex()
307 CurDAG->SelectNodeTo(Node, Opc, VT, TFI, Imm); in selectFrameIndex()
310 ReplaceNode(Node, CurDAG->getMachineNode(Opc, DL, VT, TFI, Imm)); in selectFrameIndex()