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 if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) { 415 MI->addOperand(MachineOperand::CreateTargetIndex(TI->getIndex(), 416 TI->getOffset(), 417 TI->getTargetFlags())); 418 } else { 419 assert(Op.getValueType() != MVT::Other && 420 Op.getValueType() != MVT::Glue && 421 "Chain and glue operands should occur at end of operand list!"); 422 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, 423 IsDebug, IsClone, IsCloned); 424 } 425 } 426 427 unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx, 428 EVT VT, DebugLoc DL) { 429 const TargetRegisterClass *VRC = MRI->getRegClass(VReg); 430 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx); 431 432 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg 433 // within reason. 434 if (RC && RC != VRC) 435 RC = MRI->constrainRegClass(VReg, RC, MinRCSize); 436 437 // VReg has been adjusted. It can be used with SubIdx operands now. 438 if (RC) 439 return VReg; 440 441 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual 442 // register instead. 443 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx); 444 assert(RC && "No legal register class for VT supports that SubIdx"); 445 unsigned NewReg = MRI->createVirtualRegister(RC); 446 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg) 447 .addReg(VReg); 448 return NewReg; 449 } 450 451 /// EmitSubregNode - Generate machine code for subreg nodes. 452 /// 453 void InstrEmitter::EmitSubregNode(SDNode *Node, 454 DenseMap<SDValue, unsigned> &VRBaseMap, 455 bool IsClone, bool IsCloned) { 456 unsigned VRBase = 0; 457 unsigned Opc = Node->getMachineOpcode(); 458 459 // If the node is only used by a CopyToReg and the dest reg is a vreg, use 460 // the CopyToReg'd destination register instead of creating a new vreg. 461 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); 462 UI != E; ++UI) { 463 SDNode *User = *UI; 464 if (User->getOpcode() == ISD::CopyToReg && 465 User->getOperand(2).getNode() == Node) { 466 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); 467 if (TargetRegisterInfo::isVirtualRegister(DestReg)) { 468 VRBase = DestReg; 469 break; 470 } 471 } 472 } 473 474 if (Opc == TargetOpcode::EXTRACT_SUBREG) { 475 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no 476 // constraints on the %dst register, COPY can target all legal register 477 // classes. 478 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); 479 const TargetRegisterClass *TRC = TLI->getRegClassFor(Node->getValueType(0)); 480 481 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); 482 MachineInstr *DefMI = MRI->getVRegDef(VReg); 483 unsigned SrcReg, DstReg, DefSubIdx; 484 if (DefMI && 485 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) && 486 SubIdx == DefSubIdx && 487 TRC == MRI->getRegClass(SrcReg)) { 488 // Optimize these: 489 // r1025 = s/zext r1024, 4 490 // r1026 = extract_subreg r1025, 4 491 // to a copy 492 // r1026 = copy r1024 493 VRBase = MRI->createVirtualRegister(TRC); 494 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 495 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg); 496 MRI->clearKillFlags(SrcReg); 497 } else { 498 // VReg may not support a SubIdx sub-register, and we may need to 499 // constrain its register class or issue a COPY to a compatible register 500 // class. 501 VReg = ConstrainForSubReg(VReg, SubIdx, 502 Node->getOperand(0).getValueType(), 503 Node->getDebugLoc()); 504 505 // Create the destreg if it is missing. 506 if (VRBase == 0) 507 VRBase = MRI->createVirtualRegister(TRC); 508 509 // Create the extract_subreg machine instruction. 510 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 511 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx); 512 } 513 } else if (Opc == TargetOpcode::INSERT_SUBREG || 514 Opc == TargetOpcode::SUBREG_TO_REG) { 515 SDValue N0 = Node->getOperand(0); 516 SDValue N1 = Node->getOperand(1); 517 SDValue N2 = Node->getOperand(2); 518 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue(); 519 520 // Figure out the register class to create for the destreg. It should be 521 // the largest legal register class supporting SubIdx sub-registers. 522 // RegisterCoalescer will constrain it further if it decides to eliminate 523 // the INSERT_SUBREG instruction. 524 // 525 // %dst = INSERT_SUBREG %src, %sub, SubIdx 526 // 527 // is lowered by TwoAddressInstructionPass to: 528 // 529 // %dst = COPY %src 530 // %dst:SubIdx = COPY %sub 531 // 532 // There is no constraint on the %src register class. 533 // 534 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getValueType(0)); 535 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx); 536 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG"); 537 538 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase))) 539 VRBase = MRI->createVirtualRegister(SRC); 540 541 // Create the insert_subreg or subreg_to_reg machine instruction. 542 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc)); 543 MI->addOperand(MachineOperand::CreateReg(VRBase, true)); 544 545 // If creating a subreg_to_reg, then the first input operand 546 // is an implicit value immediate, otherwise it's a register 547 if (Opc == TargetOpcode::SUBREG_TO_REG) { 548 const ConstantSDNode *SD = cast<ConstantSDNode>(N0); 549 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue())); 550 } else 551 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false, 552 IsClone, IsCloned); 553 // Add the subregster being inserted 554 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false, 555 IsClone, IsCloned); 556 MI->addOperand(MachineOperand::CreateImm(SubIdx)); 557 MBB->insert(InsertPos, MI); 558 } else 559 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg"); 560 561 SDValue Op(Node, 0); 562 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; 563 (void)isNew; // Silence compiler warning. 564 assert(isNew && "Node emitted out of order - early"); 565 } 566 567 /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. 568 /// COPY_TO_REGCLASS is just a normal copy, except that the destination 569 /// register is constrained to be in a particular register class. 570 /// 571 void 572 InstrEmitter::EmitCopyToRegClassNode(SDNode *Node, 573 DenseMap<SDValue, unsigned> &VRBaseMap) { 574 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); 575 576 // Create the new VReg in the destination class and emit a copy. 577 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); 578 const TargetRegisterClass *DstRC = 579 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx)); 580 unsigned NewVReg = MRI->createVirtualRegister(DstRC); 581 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 582 NewVReg).addReg(VReg); 583 584 SDValue Op(Node, 0); 585 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; 586 (void)isNew; // Silence compiler warning. 587 assert(isNew && "Node emitted out of order - early"); 588 } 589 590 /// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes. 591 /// 592 void InstrEmitter::EmitRegSequence(SDNode *Node, 593 DenseMap<SDValue, unsigned> &VRBaseMap, 594 bool IsClone, bool IsCloned) { 595 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue(); 596 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx); 597 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC)); 598 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), 599 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg); 600 unsigned NumOps = Node->getNumOperands(); 601 assert((NumOps & 1) == 1 && 602 "REG_SEQUENCE must have an odd number of operands!"); 603 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE); 604 for (unsigned i = 1; i != NumOps; ++i) { 605 SDValue Op = Node->getOperand(i); 606 if ((i & 1) == 0) { 607 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1)); 608 // Skip physical registers as they don't have a vreg to get and we'll 609 // insert copies for them in TwoAddressInstructionPass anyway. 610 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) { 611 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue(); 612 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap); 613 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg); 614 const TargetRegisterClass *SRC = 615 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx); 616 if (SRC && SRC != RC) { 617 MRI->setRegClass(NewVReg, SRC); 618 RC = SRC; 619 } 620 } 621 } 622 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false, 623 IsClone, IsCloned); 624 } 625 626 MBB->insert(InsertPos, MI); 627 SDValue Op(Node, 0); 628 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; 629 (void)isNew; // Silence compiler warning. 630 assert(isNew && "Node emitted out of order - early"); 631 } 632 633 /// EmitDbgValue - Generate machine instruction for a dbg_value node. 634 /// 635 MachineInstr * 636 InstrEmitter::EmitDbgValue(SDDbgValue *SD, 637 DenseMap<SDValue, unsigned> &VRBaseMap) { 638 uint64_t Offset = SD->getOffset(); 639 MDNode* MDPtr = SD->getMDPtr(); 640 DebugLoc DL = SD->getDebugLoc(); 641 642 if (SD->getKind() == SDDbgValue::FRAMEIX) { 643 // Stack address; this needs to be lowered in target-dependent fashion. 644 // EmitTargetCodeForFrameDebugValue is responsible for allocation. 645 unsigned FrameIx = SD->getFrameIx(); 646 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL); 647 } 648 // Otherwise, we're going to create an instruction here. 649 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE); 650 MachineInstrBuilder MIB = BuildMI(*MF, DL, II); 651 if (SD->getKind() == SDDbgValue::SDNODE) { 652 SDNode *Node = SD->getSDNode(); 653 SDValue Op = SDValue(Node, SD->getResNo()); 654 // It's possible we replaced this SDNode with other(s) and therefore 655 // didn't generate code for it. It's better to catch these cases where 656 // they happen and transfer the debug info, but trying to guarantee that 657 // in all cases would be very fragile; this is a safeguard for any 658 // that were missed. 659 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); 660 if (I==VRBaseMap.end()) 661 MIB.addReg(0U); // undef 662 else 663 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap, 664 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false); 665 } else if (SD->getKind() == SDDbgValue::CONST) { 666 const Value *V = SD->getConst(); 667 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { 668 if (CI->getBitWidth() > 64) 669 MIB.addCImm(CI); 670 else 671 MIB.addImm(CI->getSExtValue()); 672 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) { 673 MIB.addFPImm(CF); 674 } else { 675 // Could be an Undef. In any case insert an Undef so we can see what we 676 // dropped. 677 MIB.addReg(0U); 678 } 679 } else { 680 // Insert an Undef so we can see what we dropped. 681 MIB.addReg(0U); 682 } 683 684 MIB.addImm(Offset).addMetadata(MDPtr); 685 return &*MIB; 686 } 687 688 /// EmitMachineNode - Generate machine code for a target-specific node and 689 /// needed dependencies. 690 /// 691 void InstrEmitter:: 692 EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned, 693 DenseMap<SDValue, unsigned> &VRBaseMap) { 694 unsigned Opc = Node->getMachineOpcode(); 695 696 // Handle subreg insert/extract specially 697 if (Opc == TargetOpcode::EXTRACT_SUBREG || 698 Opc == TargetOpcode::INSERT_SUBREG || 699 Opc == TargetOpcode::SUBREG_TO_REG) { 700 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned); 701 return; 702 } 703 704 // Handle COPY_TO_REGCLASS specially. 705 if (Opc == TargetOpcode::COPY_TO_REGCLASS) { 706 EmitCopyToRegClassNode(Node, VRBaseMap); 707 return; 708 } 709 710 // Handle REG_SEQUENCE specially. 711 if (Opc == TargetOpcode::REG_SEQUENCE) { 712 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned); 713 return; 714 } 715 716 if (Opc == TargetOpcode::IMPLICIT_DEF) 717 // We want a unique VR for each IMPLICIT_DEF use. 718 return; 719 720 const MCInstrDesc &II = TII->get(Opc); 721 unsigned NumResults = CountResults(Node); 722 unsigned NumImpUses = 0; 723 unsigned NodeOperands = countOperands(Node, NumImpUses); 724 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0; 725 #ifndef NDEBUG 726 unsigned NumMIOperands = NodeOperands + NumResults; 727 if (II.isVariadic()) 728 assert(NumMIOperands >= II.getNumOperands() && 729 "Too few operands for a variadic node!"); 730 else 731 assert(NumMIOperands >= II.getNumOperands() && 732 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() + 733 NumImpUses && 734 "#operands for dag node doesn't match .td file!"); 735 #endif 736 737 // Create the new machine instruction. 738 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II); 739 740 // Add result register values for things that are defined by this 741 // instruction. 742 if (NumResults) 743 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap); 744 745 // Emit all of the actual operands of this instruction, adding them to the 746 // instruction as appropriate. 747 bool HasOptPRefs = II.getNumDefs() > NumResults; 748 assert((!HasOptPRefs || !HasPhysRegOuts) && 749 "Unable to cope with optional defs and phys regs defs!"); 750 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0; 751 for (unsigned i = NumSkip; i != NodeOperands; ++i) 752 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II, 753 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned); 754 755 // Transfer all of the memory reference descriptions of this instruction. 756 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(), 757 cast<MachineSDNode>(Node)->memoperands_end()); 758 759 // Insert the instruction into position in the block. This needs to 760 // happen before any custom inserter hook is called so that the 761 // hook knows where in the block to insert the replacement code. 762 MBB->insert(InsertPos, MI); 763 764 // The MachineInstr may also define physregs instead of virtregs. These 765 // physreg values can reach other instructions in different ways: 766 // 767 // 1. When there is a use of a Node value beyond the explicitly defined 768 // virtual registers, we emit a CopyFromReg for one of the implicitly 769 // defined physregs. This only happens when HasPhysRegOuts is true. 770 // 771 // 2. A CopyFromReg reading a physreg may be glued to this instruction. 772 // 773 // 3. A glued instruction may implicitly use a physreg. 774 // 775 // 4. A glued instruction may use a RegisterSDNode operand. 776 // 777 // Collect all the used physreg defs, and make sure that any unused physreg 778 // defs are marked as dead. 779 SmallVector<unsigned, 8> UsedRegs; 780 781 // Additional results must be physical register defs. 782 if (HasPhysRegOuts) { 783 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) { 784 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()]; 785 if (!Node->hasAnyUseOfValue(i)) 786 continue; 787 // This implicitly defined physreg has a use. 788 UsedRegs.push_back(Reg); 789 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap); 790 } 791 } 792 793 // Scan the glue chain for any used physregs. 794 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) { 795 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) { 796 if (F->getOpcode() == ISD::CopyFromReg) { 797 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg()); 798 continue; 799 } else if (F->getOpcode() == ISD::CopyToReg) { 800 // Skip CopyToReg nodes that are internal to the glue chain. 801 continue; 802 } 803 // Collect declared implicit uses. 804 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode()); 805 UsedRegs.append(MCID.getImplicitUses(), 806 MCID.getImplicitUses() + MCID.getNumImplicitUses()); 807 // In addition to declared implicit uses, we must also check for 808 // direct RegisterSDNode operands. 809 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i) 810 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) { 811 unsigned Reg = R->getReg(); 812 if (TargetRegisterInfo::isPhysicalRegister(Reg)) 813 UsedRegs.push_back(Reg); 814 } 815 } 816 } 817 818 // Finally mark unused registers as dead. 819 if (!UsedRegs.empty() || II.getImplicitDefs()) 820 MI->setPhysRegsDeadExcept(UsedRegs, *TRI); 821 822 // Run post-isel target hook to adjust this instruction if needed. 823 #ifdef NDEBUG 824 if (II.hasPostISelHook()) 825 #endif 826 TLI->AdjustInstrPostInstrSelection(MI, Node); 827 } 828 829 /// EmitSpecialNode - Generate machine code for a target-independent node and 830 /// needed dependencies. 831 void InstrEmitter:: 832 EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned, 833 DenseMap<SDValue, unsigned> &VRBaseMap) { 834 switch (Node->getOpcode()) { 835 default: 836 #ifndef NDEBUG 837 Node->dump(); 838 #endif 839 llvm_unreachable("This target-independent node should have been selected!"); 840 case ISD::EntryToken: 841 llvm_unreachable("EntryToken should have been excluded from the schedule!"); 842 case ISD::MERGE_VALUES: 843 case ISD::TokenFactor: // fall thru 844 break; 845 case ISD::CopyToReg: { 846 unsigned SrcReg; 847 SDValue SrcVal = Node->getOperand(2); 848 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal)) 849 SrcReg = R->getReg(); 850 else 851 SrcReg = getVR(SrcVal, VRBaseMap); 852 853 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); 854 if (SrcReg == DestReg) // Coalesced away the copy? Ignore. 855 break; 856 857 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 858 DestReg).addReg(SrcReg); 859 break; 860 } 861 case ISD::CopyFromReg: { 862 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); 863 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap); 864 break; 865 } 866 case ISD::EH_LABEL: { 867 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel(); 868 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 869 TII->get(TargetOpcode::EH_LABEL)).addSym(S); 870 break; 871 } 872 873 case ISD::INLINEASM: { 874 unsigned NumOps = Node->getNumOperands(); 875 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue) 876 --NumOps; // Ignore the glue operand. 877 878 // Create the inline asm machine instruction. 879 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), 880 TII->get(TargetOpcode::INLINEASM)); 881 882 // Add the asm string as an external symbol operand. 883 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString); 884 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol(); 885 MI->addOperand(MachineOperand::CreateES(AsmStr)); 886 887 // Add the HasSideEffect and isAlignStack bits. 888 int64_t ExtraInfo = 889 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))-> 890 getZExtValue(); 891 MI->addOperand(MachineOperand::CreateImm(ExtraInfo)); 892 893 // Add all of the operand registers to the instruction. 894 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) { 895 unsigned Flags = 896 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); 897 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); 898 899 MI->addOperand(MachineOperand::CreateImm(Flags)); 900 ++i; // Skip the ID value. 901 902 switch (InlineAsm::getKind(Flags)) { 903 default: llvm_unreachable("Bad flags!"); 904 case InlineAsm::Kind_RegDef: 905 for (; NumVals; --NumVals, ++i) { 906 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); 907 // FIXME: Add dead flags for physical and virtual registers defined. 908 // For now, mark physical register defs as implicit to help fast 909 // regalloc. This makes inline asm look a lot like calls. 910 MI->addOperand(MachineOperand::CreateReg(Reg, true, 911 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg))); 912 } 913 break; 914 case InlineAsm::Kind_RegDefEarlyClobber: 915 case InlineAsm::Kind_Clobber: 916 for (; NumVals; --NumVals, ++i) { 917 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); 918 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true, 919 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg), 920 /*isKill=*/ false, 921 /*isDead=*/ false, 922 /*isUndef=*/false, 923 /*isEarlyClobber=*/ true)); 924 } 925 break; 926 case InlineAsm::Kind_RegUse: // Use of register. 927 case InlineAsm::Kind_Imm: // Immediate. 928 case InlineAsm::Kind_Mem: // Addressing mode. 929 // The addressing mode has been selected, just add all of the 930 // operands to the machine instruction. 931 for (; NumVals; --NumVals, ++i) 932 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap, 933 /*IsDebug=*/false, IsClone, IsCloned); 934 break; 935 } 936 } 937 938 // Get the mdnode from the asm if it exists and add it to the instruction. 939 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode); 940 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD(); 941 if (MD) 942 MI->addOperand(MachineOperand::CreateMetadata(MD)); 943 944 MBB->insert(InsertPos, MI); 945 break; 946 } 947 } 948 } 949 950 /// InstrEmitter - Construct an InstrEmitter and set it to start inserting 951 /// at the given position in the given block. 952 InstrEmitter::InstrEmitter(MachineBasicBlock *mbb, 953 MachineBasicBlock::iterator insertpos) 954 : MF(mbb->getParent()), 955 MRI(&MF->getRegInfo()), 956 TM(&MF->getTarget()), 957 TII(TM->getInstrInfo()), 958 TRI(TM->getRegisterInfo()), 959 TLI(TM->getTargetLowering()), 960 MBB(mbb), InsertPos(insertpos) { 961 } 962