1 //===-- AVRISelDAGToDAG.cpp - A dag to dag inst selector for AVR ----------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file defines an instruction selector for the AVR target. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "AVR.h" 14 #include "AVRTargetMachine.h" 15 #include "MCTargetDesc/AVRMCTargetDesc.h" 16 17 #include "llvm/CodeGen/MachineRegisterInfo.h" 18 #include "llvm/CodeGen/SelectionDAGISel.h" 19 #include "llvm/Support/Debug.h" 20 #include "llvm/Support/raw_ostream.h" 21 22 #define DEBUG_TYPE "avr-isel" 23 24 namespace llvm { 25 26 /// Lowers LLVM IR (in DAG form) to AVR MC instructions (in DAG form). 27 class AVRDAGToDAGISel : public SelectionDAGISel { 28 public: 29 AVRDAGToDAGISel(AVRTargetMachine &TM, CodeGenOpt::Level OptLevel) 30 : SelectionDAGISel(TM, OptLevel), Subtarget(nullptr) {} 31 32 StringRef getPassName() const override { 33 return "AVR DAG->DAG Instruction Selection"; 34 } 35 36 bool runOnMachineFunction(MachineFunction &MF) override; 37 38 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base, SDValue &Disp); 39 40 bool selectIndexedLoad(SDNode *N); 41 unsigned selectIndexedProgMemLoad(const LoadSDNode *LD, MVT VT); 42 43 bool SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintCode, 44 std::vector<SDValue> &OutOps) override; 45 46 // Include the pieces autogenerated from the target description. 47 #include "AVRGenDAGISel.inc" 48 49 private: 50 void Select(SDNode *N) override; 51 bool trySelect(SDNode *N); 52 53 template <unsigned NodeType> bool select(SDNode *N); 54 bool selectMultiplication(SDNode *N); 55 56 const AVRSubtarget *Subtarget; 57 }; 58 59 bool AVRDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) { 60 Subtarget = &MF.getSubtarget<AVRSubtarget>(); 61 return SelectionDAGISel::runOnMachineFunction(MF); 62 } 63 64 bool AVRDAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base, 65 SDValue &Disp) { 66 SDLoc dl(Op); 67 auto DL = CurDAG->getDataLayout(); 68 MVT PtrVT = getTargetLowering()->getPointerTy(DL); 69 70 // if the address is a frame index get the TargetFrameIndex. 71 if (const FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N)) { 72 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), PtrVT); 73 Disp = CurDAG->getTargetConstant(0, dl, MVT::i8); 74 75 return true; 76 } 77 78 // Match simple Reg + uimm6 operands. 79 if (N.getOpcode() != ISD::ADD && N.getOpcode() != ISD::SUB && 80 !CurDAG->isBaseWithConstantOffset(N)) { 81 return false; 82 } 83 84 if (const ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) { 85 int RHSC = (int)RHS->getZExtValue(); 86 87 // Convert negative offsets into positives ones. 88 if (N.getOpcode() == ISD::SUB) { 89 RHSC = -RHSC; 90 } 91 92 // <#Frame index + const> 93 // Allow folding offsets bigger than 63 so the frame pointer can be used 94 // directly instead of copying it around by adjusting and restoring it for 95 // each access. 96 if (N.getOperand(0).getOpcode() == ISD::FrameIndex) { 97 int FI = cast<FrameIndexSDNode>(N.getOperand(0))->getIndex(); 98 99 Base = CurDAG->getTargetFrameIndex(FI, PtrVT); 100 Disp = CurDAG->getTargetConstant(RHSC, dl, MVT::i16); 101 102 return true; 103 } 104 105 // The value type of the memory instruction determines what is the maximum 106 // offset allowed. 107 MVT VT = cast<MemSDNode>(Op)->getMemoryVT().getSimpleVT(); 108 109 // We only accept offsets that fit in 6 bits (unsigned). 110 if (isUInt<6>(RHSC) && (VT == MVT::i8 || VT == MVT::i16)) { 111 Base = N.getOperand(0); 112 Disp = CurDAG->getTargetConstant(RHSC, dl, MVT::i8); 113 114 return true; 115 } 116 } 117 118 return false; 119 } 120 121 bool AVRDAGToDAGISel::selectIndexedLoad(SDNode *N) { 122 const LoadSDNode *LD = cast<LoadSDNode>(N); 123 ISD::MemIndexedMode AM = LD->getAddressingMode(); 124 MVT VT = LD->getMemoryVT().getSimpleVT(); 125 auto PtrVT = getTargetLowering()->getPointerTy(CurDAG->getDataLayout()); 126 127 // We only care if this load uses a POSTINC or PREDEC mode. 128 if ((LD->getExtensionType() != ISD::NON_EXTLOAD) || 129 (AM != ISD::POST_INC && AM != ISD::PRE_DEC)) { 130 131 return false; 132 } 133 134 unsigned Opcode = 0; 135 bool isPre = (AM == ISD::PRE_DEC); 136 int Offs = cast<ConstantSDNode>(LD->getOffset())->getSExtValue(); 137 138 switch (VT.SimpleTy) { 139 case MVT::i8: { 140 if ((!isPre && Offs != 1) || (isPre && Offs != -1)) { 141 return false; 142 } 143 144 Opcode = (isPre) ? AVR::LDRdPtrPd : AVR::LDRdPtrPi; 145 break; 146 } 147 case MVT::i16: { 148 if ((!isPre && Offs != 2) || (isPre && Offs != -2)) { 149 return false; 150 } 151 152 Opcode = (isPre) ? AVR::LDWRdPtrPd : AVR::LDWRdPtrPi; 153 break; 154 } 155 default: 156 return false; 157 } 158 159 SDNode *ResNode = 160 CurDAG->getMachineNode(Opcode, SDLoc(N), VT, PtrVT, MVT::Other, 161 LD->getBasePtr(), LD->getChain()); 162 ReplaceUses(N, ResNode); 163 CurDAG->RemoveDeadNode(N); 164 165 return true; 166 } 167 168 unsigned AVRDAGToDAGISel::selectIndexedProgMemLoad(const LoadSDNode *LD, 169 MVT VT) { 170 ISD::MemIndexedMode AM = LD->getAddressingMode(); 171 172 // Progmem indexed loads only work in POSTINC mode. 173 if (LD->getExtensionType() != ISD::NON_EXTLOAD || AM != ISD::POST_INC) { 174 return 0; 175 } 176 177 unsigned Opcode = 0; 178 int Offs = cast<ConstantSDNode>(LD->getOffset())->getSExtValue(); 179 180 switch (VT.SimpleTy) { 181 case MVT::i8: { 182 if (Offs != 1) { 183 return 0; 184 } 185 Opcode = AVR::LPMRdZPi; 186 break; 187 } 188 case MVT::i16: { 189 if (Offs != 2) { 190 return 0; 191 } 192 Opcode = AVR::LPMWRdZPi; 193 break; 194 } 195 default: 196 return 0; 197 } 198 199 return Opcode; 200 } 201 202 bool AVRDAGToDAGISel::SelectInlineAsmMemoryOperand( 203 const SDValue &Op, unsigned ConstraintCode, std::vector<SDValue> &OutOps) { 204 assert((ConstraintCode == InlineAsm::Constraint_m || 205 ConstraintCode == InlineAsm::Constraint_Q) && 206 "Unexpected asm memory constraint"); 207 208 MachineRegisterInfo &RI = MF->getRegInfo(); 209 const AVRSubtarget &STI = MF->getSubtarget<AVRSubtarget>(); 210 const TargetLowering &TL = *STI.getTargetLowering(); 211 SDLoc dl(Op); 212 auto DL = CurDAG->getDataLayout(); 213 214 const RegisterSDNode *RegNode = dyn_cast<RegisterSDNode>(Op); 215 216 // If address operand is of PTRDISPREGS class, all is OK, then. 217 if (RegNode && 218 RI.getRegClass(RegNode->getReg()) == &AVR::PTRDISPREGSRegClass) { 219 OutOps.push_back(Op); 220 return false; 221 } 222 223 if (Op->getOpcode() == ISD::FrameIndex) { 224 SDValue Base, Disp; 225 226 if (SelectAddr(Op.getNode(), Op, Base, Disp)) { 227 OutOps.push_back(Base); 228 OutOps.push_back(Disp); 229 230 return false; 231 } 232 233 return true; 234 } 235 236 // If Op is add 'register, immediate' and 237 // register is either virtual register or register of PTRDISPREGSRegClass 238 if (Op->getOpcode() == ISD::ADD || Op->getOpcode() == ISD::SUB) { 239 SDValue CopyFromRegOp = Op->getOperand(0); 240 SDValue ImmOp = Op->getOperand(1); 241 ConstantSDNode *ImmNode = dyn_cast<ConstantSDNode>(ImmOp); 242 243 unsigned Reg; 244 bool CanHandleRegImmOpt = ImmNode && ImmNode->getAPIntValue().ult(64); 245 246 if (CopyFromRegOp->getOpcode() == ISD::CopyFromReg) { 247 RegisterSDNode *RegNode = 248 cast<RegisterSDNode>(CopyFromRegOp->getOperand(1)); 249 Reg = RegNode->getReg(); 250 CanHandleRegImmOpt &= (Register::isVirtualRegister(Reg) || 251 AVR::PTRDISPREGSRegClass.contains(Reg)); 252 } else { 253 CanHandleRegImmOpt = false; 254 } 255 256 // If we detect proper case - correct virtual register class 257 // if needed and go to another inlineasm operand. 258 if (CanHandleRegImmOpt) { 259 SDValue Base, Disp; 260 261 if (RI.getRegClass(Reg) != &AVR::PTRDISPREGSRegClass) { 262 SDLoc dl(CopyFromRegOp); 263 264 Register VReg = RI.createVirtualRegister(&AVR::PTRDISPREGSRegClass); 265 266 SDValue CopyToReg = 267 CurDAG->getCopyToReg(CopyFromRegOp, dl, VReg, CopyFromRegOp); 268 269 SDValue NewCopyFromRegOp = 270 CurDAG->getCopyFromReg(CopyToReg, dl, VReg, TL.getPointerTy(DL)); 271 272 Base = NewCopyFromRegOp; 273 } else { 274 Base = CopyFromRegOp; 275 } 276 277 if (ImmNode->getValueType(0) != MVT::i8) { 278 Disp = CurDAG->getTargetConstant( 279 ImmNode->getAPIntValue().getZExtValue(), dl, MVT::i8); 280 } else { 281 Disp = ImmOp; 282 } 283 284 OutOps.push_back(Base); 285 OutOps.push_back(Disp); 286 287 return false; 288 } 289 } 290 291 // More generic case. 292 // Create chain that puts Op into pointer register 293 // and return that register. 294 Register VReg = RI.createVirtualRegister(&AVR::PTRDISPREGSRegClass); 295 296 SDValue CopyToReg = CurDAG->getCopyToReg(Op, dl, VReg, Op); 297 SDValue CopyFromReg = 298 CurDAG->getCopyFromReg(CopyToReg, dl, VReg, TL.getPointerTy(DL)); 299 300 OutOps.push_back(CopyFromReg); 301 302 return false; 303 } 304 305 template <> bool AVRDAGToDAGISel::select<ISD::FrameIndex>(SDNode *N) { 306 auto DL = CurDAG->getDataLayout(); 307 308 // Convert the frameindex into a temp instruction that will hold the 309 // effective address of the final stack slot. 310 int FI = cast<FrameIndexSDNode>(N)->getIndex(); 311 SDValue TFI = 312 CurDAG->getTargetFrameIndex(FI, getTargetLowering()->getPointerTy(DL)); 313 314 CurDAG->SelectNodeTo(N, AVR::FRMIDX, getTargetLowering()->getPointerTy(DL), 315 TFI, CurDAG->getTargetConstant(0, SDLoc(N), MVT::i16)); 316 return true; 317 } 318 319 template <> bool AVRDAGToDAGISel::select<ISD::STORE>(SDNode *N) { 320 // Use the STD{W}SPQRr pseudo instruction when passing arguments through 321 // the stack on function calls for further expansion during the PEI phase. 322 const StoreSDNode *ST = cast<StoreSDNode>(N); 323 SDValue BasePtr = ST->getBasePtr(); 324 325 // Early exit when the base pointer is a frame index node or a constant. 326 if (isa<FrameIndexSDNode>(BasePtr) || isa<ConstantSDNode>(BasePtr) || 327 BasePtr.isUndef()) { 328 return false; 329 } 330 331 const RegisterSDNode *RN = dyn_cast<RegisterSDNode>(BasePtr.getOperand(0)); 332 // Only stores where SP is the base pointer are valid. 333 if (!RN || (RN->getReg() != AVR::SP)) { 334 return false; 335 } 336 337 int CST = (int)cast<ConstantSDNode>(BasePtr.getOperand(1))->getZExtValue(); 338 SDValue Chain = ST->getChain(); 339 EVT VT = ST->getValue().getValueType(); 340 SDLoc DL(N); 341 SDValue Offset = CurDAG->getTargetConstant(CST, DL, MVT::i16); 342 SDValue Ops[] = {BasePtr.getOperand(0), Offset, ST->getValue(), Chain}; 343 unsigned Opc = (VT == MVT::i16) ? AVR::STDWSPQRr : AVR::STDSPQRr; 344 345 SDNode *ResNode = CurDAG->getMachineNode(Opc, DL, MVT::Other, Ops); 346 347 // Transfer memory operands. 348 CurDAG->setNodeMemRefs(cast<MachineSDNode>(ResNode), {ST->getMemOperand()}); 349 350 ReplaceUses(SDValue(N, 0), SDValue(ResNode, 0)); 351 CurDAG->RemoveDeadNode(N); 352 353 return true; 354 } 355 356 template <> bool AVRDAGToDAGISel::select<ISD::LOAD>(SDNode *N) { 357 const LoadSDNode *LD = cast<LoadSDNode>(N); 358 if (!AVR::isProgramMemoryAccess(LD)) { 359 // Check if the opcode can be converted into an indexed load. 360 return selectIndexedLoad(N); 361 } 362 363 assert(Subtarget->hasLPM() && "cannot load from program memory on this mcu"); 364 365 // This is a flash memory load, move the pointer into R31R30 and emit 366 // the lpm instruction. 367 MVT VT = LD->getMemoryVT().getSimpleVT(); 368 SDValue Chain = LD->getChain(); 369 SDValue Ptr = LD->getBasePtr(); 370 SDNode *ResNode; 371 SDLoc DL(N); 372 373 Chain = CurDAG->getCopyToReg(Chain, DL, AVR::R31R30, Ptr, SDValue()); 374 Ptr = CurDAG->getCopyFromReg(Chain, DL, AVR::R31R30, MVT::i16, 375 Chain.getValue(1)); 376 377 SDValue RegZ = CurDAG->getRegister(AVR::R31R30, MVT::i16); 378 379 // Check if the opcode can be converted into an indexed load. 380 if (unsigned LPMOpc = selectIndexedProgMemLoad(LD, VT)) { 381 // It is legal to fold the load into an indexed load. 382 ResNode = 383 CurDAG->getMachineNode(LPMOpc, DL, VT, MVT::i16, MVT::Other, Ptr, RegZ); 384 ReplaceUses(SDValue(N, 1), SDValue(ResNode, 1)); 385 } else { 386 // Selecting an indexed load is not legal, fallback to a normal load. 387 switch (VT.SimpleTy) { 388 case MVT::i8: 389 ResNode = CurDAG->getMachineNode(AVR::LPMRdZ, DL, MVT::i8, MVT::Other, 390 Ptr, RegZ); 391 break; 392 case MVT::i16: 393 ResNode = CurDAG->getMachineNode(AVR::LPMWRdZ, DL, MVT::i16, MVT::Other, 394 Ptr, RegZ); 395 ReplaceUses(SDValue(N, 1), SDValue(ResNode, 1)); 396 break; 397 default: 398 llvm_unreachable("Unsupported VT!"); 399 } 400 } 401 402 // Transfer memory operands. 403 CurDAG->setNodeMemRefs(cast<MachineSDNode>(ResNode), {LD->getMemOperand()}); 404 405 ReplaceUses(SDValue(N, 0), SDValue(ResNode, 0)); 406 ReplaceUses(SDValue(N, 1), SDValue(ResNode, 1)); 407 CurDAG->RemoveDeadNode(N); 408 409 return true; 410 } 411 412 template <> bool AVRDAGToDAGISel::select<AVRISD::CALL>(SDNode *N) { 413 SDValue InFlag; 414 SDValue Chain = N->getOperand(0); 415 SDValue Callee = N->getOperand(1); 416 unsigned LastOpNum = N->getNumOperands() - 1; 417 418 // Direct calls are autogenerated. 419 unsigned Op = Callee.getOpcode(); 420 if (Op == ISD::TargetGlobalAddress || Op == ISD::TargetExternalSymbol) { 421 return false; 422 } 423 424 // Skip the incoming flag if present 425 if (N->getOperand(LastOpNum).getValueType() == MVT::Glue) { 426 --LastOpNum; 427 } 428 429 SDLoc DL(N); 430 Chain = CurDAG->getCopyToReg(Chain, DL, AVR::R31R30, Callee, InFlag); 431 SmallVector<SDValue, 8> Ops; 432 Ops.push_back(CurDAG->getRegister(AVR::R31R30, MVT::i16)); 433 434 // Map all operands into the new node. 435 for (unsigned i = 2, e = LastOpNum + 1; i != e; ++i) { 436 Ops.push_back(N->getOperand(i)); 437 } 438 439 Ops.push_back(Chain); 440 Ops.push_back(Chain.getValue(1)); 441 442 SDNode *ResNode = 443 CurDAG->getMachineNode(AVR::ICALL, DL, MVT::Other, MVT::Glue, Ops); 444 445 ReplaceUses(SDValue(N, 0), SDValue(ResNode, 0)); 446 ReplaceUses(SDValue(N, 1), SDValue(ResNode, 1)); 447 CurDAG->RemoveDeadNode(N); 448 449 return true; 450 } 451 452 template <> bool AVRDAGToDAGISel::select<ISD::BRIND>(SDNode *N) { 453 SDValue Chain = N->getOperand(0); 454 SDValue JmpAddr = N->getOperand(1); 455 456 SDLoc DL(N); 457 // Move the destination address of the indirect branch into R31R30. 458 Chain = CurDAG->getCopyToReg(Chain, DL, AVR::R31R30, JmpAddr); 459 SDNode *ResNode = CurDAG->getMachineNode(AVR::IJMP, DL, MVT::Other, Chain); 460 461 ReplaceUses(SDValue(N, 0), SDValue(ResNode, 0)); 462 CurDAG->RemoveDeadNode(N); 463 464 return true; 465 } 466 467 bool AVRDAGToDAGISel::selectMultiplication(llvm::SDNode *N) { 468 SDLoc DL(N); 469 MVT Type = N->getSimpleValueType(0); 470 471 assert(Type == MVT::i8 && "unexpected value type"); 472 473 bool isSigned = N->getOpcode() == ISD::SMUL_LOHI; 474 unsigned MachineOp = isSigned ? AVR::MULSRdRr : AVR::MULRdRr; 475 476 SDValue Lhs = N->getOperand(0); 477 SDValue Rhs = N->getOperand(1); 478 SDNode *Mul = CurDAG->getMachineNode(MachineOp, DL, MVT::Glue, Lhs, Rhs); 479 SDValue InChain = CurDAG->getEntryNode(); 480 SDValue InGlue = SDValue(Mul, 0); 481 482 // Copy the low half of the result, if it is needed. 483 if (N->hasAnyUseOfValue(0)) { 484 SDValue CopyFromLo = 485 CurDAG->getCopyFromReg(InChain, DL, AVR::R0, Type, InGlue); 486 487 ReplaceUses(SDValue(N, 0), CopyFromLo); 488 489 InChain = CopyFromLo.getValue(1); 490 InGlue = CopyFromLo.getValue(2); 491 } 492 493 // Copy the high half of the result, if it is needed. 494 if (N->hasAnyUseOfValue(1)) { 495 SDValue CopyFromHi = 496 CurDAG->getCopyFromReg(InChain, DL, AVR::R1, Type, InGlue); 497 498 ReplaceUses(SDValue(N, 1), CopyFromHi); 499 500 InChain = CopyFromHi.getValue(1); 501 InGlue = CopyFromHi.getValue(2); 502 } 503 504 CurDAG->RemoveDeadNode(N); 505 506 // We need to clear R1. This is currently done (dirtily) 507 // using a custom inserter. 508 509 return true; 510 } 511 512 void AVRDAGToDAGISel::Select(SDNode *N) { 513 // If we have a custom node, we already have selected! 514 if (N->isMachineOpcode()) { 515 LLVM_DEBUG(errs() << "== "; N->dump(CurDAG); errs() << "\n"); 516 N->setNodeId(-1); 517 return; 518 } 519 520 // See if subclasses can handle this node. 521 if (trySelect(N)) 522 return; 523 524 // Select the default instruction 525 SelectCode(N); 526 } 527 528 bool AVRDAGToDAGISel::trySelect(SDNode *N) { 529 unsigned Opcode = N->getOpcode(); 530 SDLoc DL(N); 531 532 switch (Opcode) { 533 // Nodes we fully handle. 534 case ISD::FrameIndex: 535 return select<ISD::FrameIndex>(N); 536 case ISD::BRIND: 537 return select<ISD::BRIND>(N); 538 case ISD::UMUL_LOHI: 539 case ISD::SMUL_LOHI: 540 return selectMultiplication(N); 541 542 // Nodes we handle partially. Other cases are autogenerated 543 case ISD::STORE: 544 return select<ISD::STORE>(N); 545 case ISD::LOAD: 546 return select<ISD::LOAD>(N); 547 case AVRISD::CALL: 548 return select<AVRISD::CALL>(N); 549 default: 550 return false; 551 } 552 } 553 554 FunctionPass *createAVRISelDag(AVRTargetMachine &TM, 555 CodeGenOpt::Level OptLevel) { 556 return new AVRDAGToDAGISel(TM, OptLevel); 557 } 558 559 } // end of namespace llvm 560