1 //==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This implements the Emit routines for the SelectionDAG class, which creates 11 // MachineInstrs based on the decisions of the SelectionDAG instruction 12 // selection. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #define DEBUG_TYPE "instr-emitter" 17 #include "InstrEmitter.h" 18 #include "SDNodeDbgValue.h" 19 #include "llvm/CodeGen/MachineConstantPool.h" 20 #include "llvm/CodeGen/MachineFunction.h" 21 #include "llvm/CodeGen/MachineInstrBuilder.h" 22 #include "llvm/CodeGen/MachineRegisterInfo.h" 23 #include "llvm/Target/TargetData.h" 24 #include "llvm/Target/TargetMachine.h" 25 #include "llvm/Target/TargetInstrInfo.h" 26 #include "llvm/Target/TargetLowering.h" 27 #include "llvm/ADT/Statistic.h" 28 #include "llvm/Support/Debug.h" 29 #include "llvm/Support/ErrorHandling.h" 30 #include "llvm/Support/MathExtras.h" 31 using namespace llvm; 32 33 /// MinRCSize - Smallest register class we allow when constraining virtual 34 /// registers. If satisfying all register class constraints would require 35 /// using a smaller register class, emit a COPY to a new virtual register 36 /// instead. 37 const unsigned MinRCSize = 4; 38 39 /// CountResults - The results of target nodes have register or immediate 40 /// operands first, then an optional chain, and optional glue operands (which do 41 /// not go into the resulting MachineInstr). 42 unsigned InstrEmitter::CountResults(SDNode *Node) { 43 unsigned N = Node->getNumValues(); 44 while (N && Node->getValueType(N - 1) == MVT::Glue) 45 --N; 46 if (N && Node->getValueType(N - 1) == MVT::Other) 47 --N; // Skip over chain result. 48 return N; 49 } 50 51 /// countOperands - The inputs to target nodes have any actual inputs first, 52 /// followed by an optional chain operand, then an optional glue operand. 53 /// Compute the number of actual operands that will go into the resulting 54 /// MachineInstr. 55 /// 56 /// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding 57 /// the chain and glue. These operands may be implicit on the machine instr. 58 static unsigned countOperands(SDNode *Node, unsigned &NumImpUses) { 59 unsigned N = Node->getNumOperands(); 60 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue) 61 --N; 62 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other) 63 --N; // Ignore chain if it exists. 64 65 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses. 66 for (unsigned I = N; I; --I) { 67 if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1))) 68 continue; 69 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1))) 70 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg())) 71 continue; 72 NumImpUses = N - I; 73 break; 74 } 75 76 return N; 77 } 78 79 /// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an 80 /// implicit physical register output. 81 void InstrEmitter:: 82 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, 83 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) { 84 unsigned VRBase = 0; 85 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) { 86 // Just use the input register directly! 87 SDValue Op(Node, ResNo); 88 if (IsClone) 89 VRBaseMap.erase(Op); 90 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; 91 (void)isNew; // Silence compiler warning. 92 assert(isNew && "Node emitted out of order - early"); 93 return; 94 } 95 96 // If the node is only used by a CopyToReg and the dest reg is a vreg, use 97 // the CopyToReg'd destination register instead of creating a new vreg. 98 bool MatchReg = true; 99 const TargetRegisterClass *UseRC = NULL; 100 EVT VT = Node->getValueType(ResNo); 101 102 // Stick to the preferred register classes for legal types. 103 if (TLI->isTypeLegal(VT)) 104 UseRC = TLI->getRegClassFor(VT); 105 106 if (!IsClone && !IsCloned) 107 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); 108 UI != E; ++UI) { 109 SDNode *User = *UI; 110 bool Match = true; 111 if (User->getOpcode() == ISD::CopyToReg && 112 User->getOperand(2).getNode() == Node && 113 User->getOperand(2).getResNo() == ResNo) { 114 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); 115 if (TargetRegisterInfo::isVirtualRegister(DestReg)) { 116 VRBase = DestReg; 117 Match = false; 118 } else if (DestReg != SrcReg) 119 Match = false; 120 } else { 121 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) { 122 SDValue Op = User->getOperand(i); 123 if (Op.getNode() != Node || Op.getResNo() != ResNo) 124 continue; 125 EVT VT = Node->getValueType(Op.getResNo()); 126 if (VT == MVT::Other || VT == MVT::Glue) 127 continue; 128 Match = false; 129 if (User->isMachineOpcode()) { 130 const MCInstrDesc &II = TII->get(User->getMachineOpcode()); 131 const TargetRegisterClass *RC = 0; 132 if (i+II.getNumDefs() < II.getNumOperands()) { 133 RC = TRI->getAllocatableClass( 134 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF)); 135 } 136 if (!UseRC) 137 UseRC = RC; 138 else if (RC) { 139 const TargetRegisterClass *ComRC = 140 TRI->getCommonSubClass(UseRC, RC); 141 // If multiple uses expect disjoint register classes, we emit 142 // copies in AddRegisterOperand. 143 if (ComRC) 144 UseRC = ComRC; 145 } 146 } 147 } 148 } 149 MatchReg &= Match; 150 if (VRBase) 151 break; 152 } 153 154 const TargetRegisterClass *SrcRC = 0, *DstRC = 0; 155 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT); 156 157 // Figure out the register class to create for the destreg. 158 if (VRBase) { 159 DstRC = MRI->getRegClass(VRBase); 160 } else if (UseRC) { 161 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!"); 162 DstRC = UseRC; 163 } else { 164 DstRC = TLI->getRegClassFor(VT); 165 } 166 167 // If all uses are reading from the src physical register and copying the 168 // register is either impossible or very expensive, then don't create a copy. 169 if (MatchReg && SrcRC->getCopyCost() < 0) { 170 VRBase = SrcReg; 171 } else { 172 // Create the reg, emit the copy. 173 VRBase = MRI->createVirtualRegister(DstRC); 174 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 175 VRBase).addReg(SrcReg); 176 } 177 178 SDValue Op(Node, ResNo); 179 if (IsClone) 180 VRBaseMap.erase(Op); 181 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; 182 (void)isNew; // Silence compiler warning. 183 assert(isNew && "Node emitted out of order - early"); 184 } 185 186 /// getDstOfCopyToRegUse - If the only use of the specified result number of 187 /// node is a CopyToReg, return its destination register. Return 0 otherwise. 188 unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node, 189 unsigned ResNo) const { 190 if (!Node->hasOneUse()) 191 return 0; 192 193 SDNode *User = *Node->use_begin(); 194 if (User->getOpcode() == ISD::CopyToReg && 195 User->getOperand(2).getNode() == Node && 196 User->getOperand(2).getResNo() == ResNo) { 197 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); 198 if (TargetRegisterInfo::isVirtualRegister(Reg)) 199 return Reg; 200 } 201 return 0; 202 } 203 204 void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI, 205 const MCInstrDesc &II, 206 bool IsClone, bool IsCloned, 207 DenseMap<SDValue, unsigned> &VRBaseMap) { 208 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF && 209 "IMPLICIT_DEF should have been handled as a special case elsewhere!"); 210 211 for (unsigned i = 0; i < II.getNumDefs(); ++i) { 212 // If the specific node value is only used by a CopyToReg and the dest reg 213 // is a vreg in the same register class, use the CopyToReg'd destination 214 // register instead of creating a new vreg. 215 unsigned VRBase = 0; 216 const TargetRegisterClass *RC = 217 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF)); 218 if (II.OpInfo[i].isOptionalDef()) { 219 // Optional def must be a physical register. 220 unsigned NumResults = CountResults(Node); 221 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg(); 222 assert(TargetRegisterInfo::isPhysicalRegister(VRBase)); 223 MI->addOperand(MachineOperand::CreateReg(VRBase, true)); 224 } 225 226 if (!VRBase && !IsClone && !IsCloned) 227 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); 228 UI != E; ++UI) { 229 SDNode *User = *UI; 230 if (User->getOpcode() == ISD::CopyToReg && 231 User->getOperand(2).getNode() == Node && 232 User->getOperand(2).getResNo() == i) { 233 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); 234 if (TargetRegisterInfo::isVirtualRegister(Reg)) { 235 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg); 236 if (RegRC == RC) { 237 VRBase = Reg; 238 MI->addOperand(MachineOperand::CreateReg(Reg, true)); 239 break; 240 } 241 } 242 } 243 } 244 245 // Create the result registers for this node and add the result regs to 246 // the machine instruction. 247 if (VRBase == 0) { 248 assert(RC && "Isn't a register operand!"); 249 VRBase = MRI->createVirtualRegister(RC); 250 MI->addOperand(MachineOperand::CreateReg(VRBase, true)); 251 } 252 253 SDValue Op(Node, i); 254 if (IsClone) 255 VRBaseMap.erase(Op); 256 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; 257 (void)isNew; // Silence compiler warning. 258 assert(isNew && "Node emitted out of order - early"); 259 } 260 } 261 262 /// getVR - Return the virtual register corresponding to the specified result 263 /// of the specified node. 264 unsigned InstrEmitter::getVR(SDValue Op, 265 DenseMap<SDValue, unsigned> &VRBaseMap) { 266 if (Op.isMachineOpcode() && 267 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) { 268 // Add an IMPLICIT_DEF instruction before every use. 269 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo()); 270 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc 271 // does not include operand register class info. 272 if (!VReg) { 273 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType()); 274 VReg = MRI->createVirtualRegister(RC); 275 } 276 BuildMI(*MBB, InsertPos, Op.getDebugLoc(), 277 TII->get(TargetOpcode::IMPLICIT_DEF), VReg); 278 return VReg; 279 } 280 281 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); 282 assert(I != VRBaseMap.end() && "Node emitted out of order - late"); 283 return I->second; 284 } 285 286 287 /// AddRegisterOperand - Add the specified register as an operand to the 288 /// specified machine instr. Insert register copies if the register is 289 /// not in the required register class. 290 void 291 InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op, 292 unsigned IIOpNum, 293 const MCInstrDesc *II, 294 DenseMap<SDValue, unsigned> &VRBaseMap, 295 bool IsDebug, bool IsClone, bool IsCloned) { 296 assert(Op.getValueType() != MVT::Other && 297 Op.getValueType() != MVT::Glue && 298 "Chain and glue operands should occur at end of operand list!"); 299 // Get/emit the operand. 300 unsigned VReg = getVR(Op, VRBaseMap); 301 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?"); 302 303 const MCInstrDesc &MCID = MI->getDesc(); 304 bool isOptDef = IIOpNum < MCID.getNumOperands() && 305 MCID.OpInfo[IIOpNum].isOptionalDef(); 306 307 // If the instruction requires a register in a different class, create 308 // a new virtual register and copy the value into it, but first attempt to 309 // shrink VReg's register class within reason. For example, if VReg == GR32 310 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP. 311 if (II) { 312 const TargetRegisterClass *DstRC = 0; 313 if (IIOpNum < II->getNumOperands()) 314 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF)); 315 assert((DstRC || (MI->isVariadic() && IIOpNum >= MCID.getNumOperands())) && 316 "Don't have operand info for this instruction!"); 317 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) { 318 unsigned NewVReg = MRI->createVirtualRegister(DstRC); 319 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(), 320 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg); 321 VReg = NewVReg; 322 } 323 } 324 325 // If this value has only one use, that use is a kill. This is a 326 // conservative approximation. InstrEmitter does trivial coalescing 327 // with CopyFromReg nodes, so don't emit kill flags for them. 328 // Avoid kill flags on Schedule cloned nodes, since there will be 329 // multiple uses. 330 // Tied operands are never killed, so we need to check that. And that 331 // means we need to determine the index of the operand. 332 bool isKill = Op.hasOneUse() && 333 Op.getNode()->getOpcode() != ISD::CopyFromReg && 334 !IsDebug && 335 !(IsClone || IsCloned); 336 if (isKill) { 337 unsigned Idx = MI->getNumOperands(); 338 while (Idx > 0 && 339 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit()) 340 --Idx; 341 bool isTied = MI->getDesc().getOperandConstraint(Idx, MCOI::TIED_TO) != -1; 342 if (isTied) 343 isKill = false; 344 } 345 346 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef, 347 false/*isImp*/, isKill, 348 false/*isDead*/, false/*isUndef*/, 349 false/*isEarlyClobber*/, 350 0/*SubReg*/, IsDebug)); 351 } 352 353 /// AddOperand - Add the specified operand to the specified machine instr. II 354 /// specifies the instruction information for the node, and IIOpNum is the 355 /// operand number (in the II) that we are adding. 356 void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op, 357 unsigned IIOpNum, 358 const MCInstrDesc *II, 359 DenseMap<SDValue, unsigned> &VRBaseMap, 360 bool IsDebug, bool IsClone, bool IsCloned) { 361 if (Op.isMachineOpcode()) { 362 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, 363 IsDebug, IsClone, IsCloned); 364 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { 365 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue())); 366 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) { 367 const ConstantFP *CFP = F->getConstantFPValue(); 368 MI->addOperand(MachineOperand::CreateFPImm(CFP)); 369 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) { 370 // Turn additional physreg operands into implicit uses on non-variadic 371 // instructions. This is used by call and return instructions passing 372 // arguments in registers. 373 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic()); 374 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false, Imp)); 375 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) { 376 MI->addOperand(MachineOperand::CreateRegMask(RM->getRegMask())); 377 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) { 378 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(), 379 TGA->getTargetFlags())); 380 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) { 381 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock())); 382 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) { 383 MI->addOperand(MachineOperand::CreateFI(FI->getIndex())); 384 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) { 385 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(), 386 JT->getTargetFlags())); 387 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) { 388 int Offset = CP->getOffset(); 389 unsigned Align = CP->getAlignment(); 390 Type *Type = CP->getType(); 391 // MachineConstantPool wants an explicit alignment. 392 if (Align == 0) { 393 Align = TM->getTargetData()->getPrefTypeAlignment(Type); 394 if (Align == 0) { 395 // Alignment of vector types. FIXME! 396 Align = TM->getTargetData()->getTypeAllocSize(Type); 397 } 398 } 399 400 unsigned Idx; 401 MachineConstantPool *MCP = MF->getConstantPool(); 402 if (CP->isMachineConstantPoolEntry()) 403 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); 404 else 405 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); 406 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset, 407 CP->getTargetFlags())); 408 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) { 409 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(), 410 ES->getTargetFlags())); 411 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) { 412 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(), 413 BA->getTargetFlags())); 414 } else { 415 assert(Op.getValueType() != MVT::Other && 416 Op.getValueType() != MVT::Glue && 417 "Chain and glue operands should occur at end of operand list!"); 418 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, 419 IsDebug, IsClone, IsCloned); 420 } 421 } 422 423 unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx, 424 EVT VT, DebugLoc DL) { 425 const TargetRegisterClass *VRC = MRI->getRegClass(VReg); 426 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx); 427 428 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg 429 // within reason. 430 if (RC && RC != VRC) 431 RC = MRI->constrainRegClass(VReg, RC, MinRCSize); 432 433 // VReg has been adjusted. It can be used with SubIdx operands now. 434 if (RC) 435 return VReg; 436 437 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual 438 // register instead. 439 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx); 440 assert(RC && "No legal register class for VT supports that SubIdx"); 441 unsigned NewReg = MRI->createVirtualRegister(RC); 442 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg) 443 .addReg(VReg); 444 return NewReg; 445 } 446 447 /// EmitSubregNode - Generate machine code for subreg nodes. 448 /// 449 void InstrEmitter::EmitSubregNode(SDNode *Node, 450 DenseMap<SDValue, unsigned> &VRBaseMap, 451 bool IsClone, bool IsCloned) { 452 unsigned VRBase = 0; 453 unsigned Opc = Node->getMachineOpcode(); 454 455 // If the node is only used by a CopyToReg and the dest reg is a vreg, use 456 // the CopyToReg'd destination register instead of creating a new vreg. 457 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); 458 UI != E; ++UI) { 459 SDNode *User = *UI; 460 if (User->getOpcode() == ISD::CopyToReg && 461 User->getOperand(2).getNode() == Node) { 462 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); 463 if (TargetRegisterInfo::isVirtualRegister(DestReg)) { 464 VRBase = DestReg; 465 break; 466 } 467 } 468 } 469 470 if (Opc == TargetOpcode::EXTRACT_SUBREG) { 471 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no 472 // constraints on the %dst register, COPY can target all legal register 473 // classes. 474 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); 475 const TargetRegisterClass *TRC = TLI->getRegClassFor(Node->getValueType(0)); 476 477 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); 478 MachineInstr *DefMI = MRI->getVRegDef(VReg); 479 unsigned SrcReg, DstReg, DefSubIdx; 480 if (DefMI && 481 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) && 482 SubIdx == DefSubIdx && 483 TRC == MRI->getRegClass(SrcReg)) { 484 // Optimize these: 485 // r1025 = s/zext r1024, 4 486 // r1026 = extract_subreg r1025, 4 487 // to a copy 488 // r1026 = copy r1024 489 VRBase = MRI->createVirtualRegister(TRC); 490 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 491 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg); 492 MRI->clearKillFlags(SrcReg); 493 } else { 494 // VReg may not support a SubIdx sub-register, and we may need to 495 // constrain its register class or issue a COPY to a compatible register 496 // class. 497 VReg = ConstrainForSubReg(VReg, SubIdx, 498 Node->getOperand(0).getValueType(), 499 Node->getDebugLoc()); 500 501 // Create the destreg if it is missing. 502 if (VRBase == 0) 503 VRBase = MRI->createVirtualRegister(TRC); 504 505 // Create the extract_subreg machine instruction. 506 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 507 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx); 508 } 509 } else if (Opc == TargetOpcode::INSERT_SUBREG || 510 Opc == TargetOpcode::SUBREG_TO_REG) { 511 SDValue N0 = Node->getOperand(0); 512 SDValue N1 = Node->getOperand(1); 513 SDValue N2 = Node->getOperand(2); 514 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue(); 515 516 // Figure out the register class to create for the destreg. It should be 517 // the largest legal register class supporting SubIdx sub-registers. 518 // RegisterCoalescer will constrain it further if it decides to eliminate 519 // the INSERT_SUBREG instruction. 520 // 521 // %dst = INSERT_SUBREG %src, %sub, SubIdx 522 // 523 // is lowered by TwoAddressInstructionPass to: 524 // 525 // %dst = COPY %src 526 // %dst:SubIdx = COPY %sub 527 // 528 // There is no constraint on the %src register class. 529 // 530 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getValueType(0)); 531 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx); 532 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG"); 533 534 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase))) 535 VRBase = MRI->createVirtualRegister(SRC); 536 537 // Create the insert_subreg or subreg_to_reg machine instruction. 538 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc)); 539 MI->addOperand(MachineOperand::CreateReg(VRBase, true)); 540 541 // If creating a subreg_to_reg, then the first input operand 542 // is an implicit value immediate, otherwise it's a register 543 if (Opc == TargetOpcode::SUBREG_TO_REG) { 544 const ConstantSDNode *SD = cast<ConstantSDNode>(N0); 545 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue())); 546 } else 547 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false, 548 IsClone, IsCloned); 549 // Add the subregster being inserted 550 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false, 551 IsClone, IsCloned); 552 MI->addOperand(MachineOperand::CreateImm(SubIdx)); 553 MBB->insert(InsertPos, MI); 554 } else 555 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg"); 556 557 SDValue Op(Node, 0); 558 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; 559 (void)isNew; // Silence compiler warning. 560 assert(isNew && "Node emitted out of order - early"); 561 } 562 563 /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. 564 /// COPY_TO_REGCLASS is just a normal copy, except that the destination 565 /// register is constrained to be in a particular register class. 566 /// 567 void 568 InstrEmitter::EmitCopyToRegClassNode(SDNode *Node, 569 DenseMap<SDValue, unsigned> &VRBaseMap) { 570 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); 571 572 // Create the new VReg in the destination class and emit a copy. 573 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); 574 const TargetRegisterClass *DstRC = 575 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx)); 576 unsigned NewVReg = MRI->createVirtualRegister(DstRC); 577 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 578 NewVReg).addReg(VReg); 579 580 SDValue Op(Node, 0); 581 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; 582 (void)isNew; // Silence compiler warning. 583 assert(isNew && "Node emitted out of order - early"); 584 } 585 586 /// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes. 587 /// 588 void InstrEmitter::EmitRegSequence(SDNode *Node, 589 DenseMap<SDValue, unsigned> &VRBaseMap, 590 bool IsClone, bool IsCloned) { 591 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue(); 592 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx); 593 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC)); 594 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), 595 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg); 596 unsigned NumOps = Node->getNumOperands(); 597 assert((NumOps & 1) == 1 && 598 "REG_SEQUENCE must have an odd number of operands!"); 599 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE); 600 for (unsigned i = 1; i != NumOps; ++i) { 601 SDValue Op = Node->getOperand(i); 602 if ((i & 1) == 0) { 603 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1)); 604 // Skip physical registers as they don't have a vreg to get and we'll 605 // insert copies for them in TwoAddressInstructionPass anyway. 606 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) { 607 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue(); 608 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap); 609 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg); 610 const TargetRegisterClass *SRC = 611 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx); 612 if (SRC && SRC != RC) { 613 MRI->setRegClass(NewVReg, SRC); 614 RC = SRC; 615 } 616 } 617 } 618 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false, 619 IsClone, IsCloned); 620 } 621 622 MBB->insert(InsertPos, MI); 623 SDValue Op(Node, 0); 624 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; 625 (void)isNew; // Silence compiler warning. 626 assert(isNew && "Node emitted out of order - early"); 627 } 628 629 /// EmitDbgValue - Generate machine instruction for a dbg_value node. 630 /// 631 MachineInstr * 632 InstrEmitter::EmitDbgValue(SDDbgValue *SD, 633 DenseMap<SDValue, unsigned> &VRBaseMap) { 634 uint64_t Offset = SD->getOffset(); 635 MDNode* MDPtr = SD->getMDPtr(); 636 DebugLoc DL = SD->getDebugLoc(); 637 638 if (SD->getKind() == SDDbgValue::FRAMEIX) { 639 // Stack address; this needs to be lowered in target-dependent fashion. 640 // EmitTargetCodeForFrameDebugValue is responsible for allocation. 641 unsigned FrameIx = SD->getFrameIx(); 642 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL); 643 } 644 // Otherwise, we're going to create an instruction here. 645 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE); 646 MachineInstrBuilder MIB = BuildMI(*MF, DL, II); 647 if (SD->getKind() == SDDbgValue::SDNODE) { 648 SDNode *Node = SD->getSDNode(); 649 SDValue Op = SDValue(Node, SD->getResNo()); 650 // It's possible we replaced this SDNode with other(s) and therefore 651 // didn't generate code for it. It's better to catch these cases where 652 // they happen and transfer the debug info, but trying to guarantee that 653 // in all cases would be very fragile; this is a safeguard for any 654 // that were missed. 655 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); 656 if (I==VRBaseMap.end()) 657 MIB.addReg(0U); // undef 658 else 659 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap, 660 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false); 661 } else if (SD->getKind() == SDDbgValue::CONST) { 662 const Value *V = SD->getConst(); 663 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { 664 if (CI->getBitWidth() > 64) 665 MIB.addCImm(CI); 666 else 667 MIB.addImm(CI->getSExtValue()); 668 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) { 669 MIB.addFPImm(CF); 670 } else { 671 // Could be an Undef. In any case insert an Undef so we can see what we 672 // dropped. 673 MIB.addReg(0U); 674 } 675 } else { 676 // Insert an Undef so we can see what we dropped. 677 MIB.addReg(0U); 678 } 679 680 MIB.addImm(Offset).addMetadata(MDPtr); 681 return &*MIB; 682 } 683 684 /// EmitMachineNode - Generate machine code for a target-specific node and 685 /// needed dependencies. 686 /// 687 void InstrEmitter:: 688 EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned, 689 DenseMap<SDValue, unsigned> &VRBaseMap) { 690 unsigned Opc = Node->getMachineOpcode(); 691 692 // Handle subreg insert/extract specially 693 if (Opc == TargetOpcode::EXTRACT_SUBREG || 694 Opc == TargetOpcode::INSERT_SUBREG || 695 Opc == TargetOpcode::SUBREG_TO_REG) { 696 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned); 697 return; 698 } 699 700 // Handle COPY_TO_REGCLASS specially. 701 if (Opc == TargetOpcode::COPY_TO_REGCLASS) { 702 EmitCopyToRegClassNode(Node, VRBaseMap); 703 return; 704 } 705 706 // Handle REG_SEQUENCE specially. 707 if (Opc == TargetOpcode::REG_SEQUENCE) { 708 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned); 709 return; 710 } 711 712 if (Opc == TargetOpcode::IMPLICIT_DEF) 713 // We want a unique VR for each IMPLICIT_DEF use. 714 return; 715 716 const MCInstrDesc &II = TII->get(Opc); 717 unsigned NumResults = CountResults(Node); 718 unsigned NumImpUses = 0; 719 unsigned NodeOperands = countOperands(Node, NumImpUses); 720 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0; 721 #ifndef NDEBUG 722 unsigned NumMIOperands = NodeOperands + NumResults; 723 if (II.isVariadic()) 724 assert(NumMIOperands >= II.getNumOperands() && 725 "Too few operands for a variadic node!"); 726 else 727 assert(NumMIOperands >= II.getNumOperands() && 728 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() + 729 NumImpUses && 730 "#operands for dag node doesn't match .td file!"); 731 #endif 732 733 // Create the new machine instruction. 734 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II); 735 736 // Add result register values for things that are defined by this 737 // instruction. 738 if (NumResults) 739 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap); 740 741 // Emit all of the actual operands of this instruction, adding them to the 742 // instruction as appropriate. 743 bool HasOptPRefs = II.getNumDefs() > NumResults; 744 assert((!HasOptPRefs || !HasPhysRegOuts) && 745 "Unable to cope with optional defs and phys regs defs!"); 746 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0; 747 for (unsigned i = NumSkip; i != NodeOperands; ++i) 748 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II, 749 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned); 750 751 // Transfer all of the memory reference descriptions of this instruction. 752 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(), 753 cast<MachineSDNode>(Node)->memoperands_end()); 754 755 // Insert the instruction into position in the block. This needs to 756 // happen before any custom inserter hook is called so that the 757 // hook knows where in the block to insert the replacement code. 758 MBB->insert(InsertPos, MI); 759 760 // The MachineInstr may also define physregs instead of virtregs. These 761 // physreg values can reach other instructions in different ways: 762 // 763 // 1. When there is a use of a Node value beyond the explicitly defined 764 // virtual registers, we emit a CopyFromReg for one of the implicitly 765 // defined physregs. This only happens when HasPhysRegOuts is true. 766 // 767 // 2. A CopyFromReg reading a physreg may be glued to this instruction. 768 // 769 // 3. A glued instruction may implicitly use a physreg. 770 // 771 // 4. A glued instruction may use a RegisterSDNode operand. 772 // 773 // Collect all the used physreg defs, and make sure that any unused physreg 774 // defs are marked as dead. 775 SmallVector<unsigned, 8> UsedRegs; 776 777 // Additional results must be physical register defs. 778 if (HasPhysRegOuts) { 779 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) { 780 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()]; 781 if (!Node->hasAnyUseOfValue(i)) 782 continue; 783 // This implicitly defined physreg has a use. 784 UsedRegs.push_back(Reg); 785 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap); 786 } 787 } 788 789 // Scan the glue chain for any used physregs. 790 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) { 791 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) { 792 if (F->getOpcode() == ISD::CopyFromReg) { 793 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg()); 794 continue; 795 } else if (F->getOpcode() == ISD::CopyToReg) { 796 // Skip CopyToReg nodes that are internal to the glue chain. 797 continue; 798 } 799 // Collect declared implicit uses. 800 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode()); 801 UsedRegs.append(MCID.getImplicitUses(), 802 MCID.getImplicitUses() + MCID.getNumImplicitUses()); 803 // In addition to declared implicit uses, we must also check for 804 // direct RegisterSDNode operands. 805 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i) 806 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) { 807 unsigned Reg = R->getReg(); 808 if (TargetRegisterInfo::isPhysicalRegister(Reg)) 809 UsedRegs.push_back(Reg); 810 } 811 } 812 } 813 814 // Finally mark unused registers as dead. 815 if (!UsedRegs.empty() || II.getImplicitDefs()) 816 MI->setPhysRegsDeadExcept(UsedRegs, *TRI); 817 818 // Run post-isel target hook to adjust this instruction if needed. 819 #ifdef NDEBUG 820 if (II.hasPostISelHook()) 821 #endif 822 TLI->AdjustInstrPostInstrSelection(MI, Node); 823 } 824 825 /// EmitSpecialNode - Generate machine code for a target-independent node and 826 /// needed dependencies. 827 void InstrEmitter:: 828 EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned, 829 DenseMap<SDValue, unsigned> &VRBaseMap) { 830 switch (Node->getOpcode()) { 831 default: 832 #ifndef NDEBUG 833 Node->dump(); 834 #endif 835 llvm_unreachable("This target-independent node should have been selected!"); 836 case ISD::EntryToken: 837 llvm_unreachable("EntryToken should have been excluded from the schedule!"); 838 case ISD::MERGE_VALUES: 839 case ISD::TokenFactor: // fall thru 840 break; 841 case ISD::CopyToReg: { 842 unsigned SrcReg; 843 SDValue SrcVal = Node->getOperand(2); 844 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal)) 845 SrcReg = R->getReg(); 846 else 847 SrcReg = getVR(SrcVal, VRBaseMap); 848 849 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); 850 if (SrcReg == DestReg) // Coalesced away the copy? Ignore. 851 break; 852 853 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 854 DestReg).addReg(SrcReg); 855 break; 856 } 857 case ISD::CopyFromReg: { 858 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); 859 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap); 860 break; 861 } 862 case ISD::EH_LABEL: { 863 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel(); 864 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 865 TII->get(TargetOpcode::EH_LABEL)).addSym(S); 866 break; 867 } 868 869 case ISD::INLINEASM: { 870 unsigned NumOps = Node->getNumOperands(); 871 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue) 872 --NumOps; // Ignore the glue operand. 873 874 // Create the inline asm machine instruction. 875 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), 876 TII->get(TargetOpcode::INLINEASM)); 877 878 // Add the asm string as an external symbol operand. 879 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString); 880 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol(); 881 MI->addOperand(MachineOperand::CreateES(AsmStr)); 882 883 // Add the HasSideEffect and isAlignStack bits. 884 int64_t ExtraInfo = 885 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))-> 886 getZExtValue(); 887 MI->addOperand(MachineOperand::CreateImm(ExtraInfo)); 888 889 // Add all of the operand registers to the instruction. 890 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) { 891 unsigned Flags = 892 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); 893 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); 894 895 MI->addOperand(MachineOperand::CreateImm(Flags)); 896 ++i; // Skip the ID value. 897 898 switch (InlineAsm::getKind(Flags)) { 899 default: llvm_unreachable("Bad flags!"); 900 case InlineAsm::Kind_RegDef: 901 for (; NumVals; --NumVals, ++i) { 902 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); 903 // FIXME: Add dead flags for physical and virtual registers defined. 904 // For now, mark physical register defs as implicit to help fast 905 // regalloc. This makes inline asm look a lot like calls. 906 MI->addOperand(MachineOperand::CreateReg(Reg, true, 907 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg))); 908 } 909 break; 910 case InlineAsm::Kind_RegDefEarlyClobber: 911 case InlineAsm::Kind_Clobber: 912 for (; NumVals; --NumVals, ++i) { 913 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); 914 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true, 915 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg), 916 /*isKill=*/ false, 917 /*isDead=*/ false, 918 /*isUndef=*/false, 919 /*isEarlyClobber=*/ true)); 920 } 921 break; 922 case InlineAsm::Kind_RegUse: // Use of register. 923 case InlineAsm::Kind_Imm: // Immediate. 924 case InlineAsm::Kind_Mem: // Addressing mode. 925 // The addressing mode has been selected, just add all of the 926 // operands to the machine instruction. 927 for (; NumVals; --NumVals, ++i) 928 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap, 929 /*IsDebug=*/false, IsClone, IsCloned); 930 break; 931 } 932 } 933 934 // Get the mdnode from the asm if it exists and add it to the instruction. 935 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode); 936 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD(); 937 if (MD) 938 MI->addOperand(MachineOperand::CreateMetadata(MD)); 939 940 MBB->insert(InsertPos, MI); 941 break; 942 } 943 } 944 } 945 946 /// InstrEmitter - Construct an InstrEmitter and set it to start inserting 947 /// at the given position in the given block. 948 InstrEmitter::InstrEmitter(MachineBasicBlock *mbb, 949 MachineBasicBlock::iterator insertpos) 950 : MF(mbb->getParent()), 951 MRI(&MF->getRegInfo()), 952 TM(&MF->getTarget()), 953 TII(TM->getInstrInfo()), 954 TRI(TM->getRegisterInfo()), 955 TLI(TM->getTargetLowering()), 956 MBB(mbb), InsertPos(insertpos) { 957 } 958