blob: f154271894fed2abf481002162af537d5861db16 [file] [log] [blame]
Dan Gohmanbcea8592009-10-10 01:32:21 +00001//==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==//
Dan Gohman94b8d7e2008-09-03 16:01:59 +00002//
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//
Dan Gohmanbcea8592009-10-10 01:32:21 +000010// This implements the Emit routines for the SelectionDAG class, which creates
11// MachineInstrs based on the decisions of the SelectionDAG instruction
12// selection.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000013//
14//===----------------------------------------------------------------------===//
15
Dan Gohmanbcea8592009-10-10 01:32:21 +000016#define DEBUG_TYPE "instr-emitter"
17#include "InstrEmitter.h"
Evan Chenga8efe282010-03-14 19:56:39 +000018#include "SDNodeDbgValue.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000019#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"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000028#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000030#include "llvm/Support/MathExtras.h"
31using namespace llvm;
32
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +000033/// 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.
37const unsigned MinRCSize = 4;
38
Dan Gohmanbcea8592009-10-10 01:32:21 +000039/// CountResults - The results of target nodes have register or immediate
Chris Lattner29d8f0c2010-12-23 17:24:32 +000040/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanbcea8592009-10-10 01:32:21 +000041/// not go into the resulting MachineInstr).
42unsigned InstrEmitter::CountResults(SDNode *Node) {
43 unsigned N = Node->getNumValues();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000044 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000045 --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,
Chris Lattner29d8f0c2010-12-23 17:24:32 +000052/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanbcea8592009-10-10 01:32:21 +000053/// Compute the number of actual operands that will go into the resulting
54/// MachineInstr.
55unsigned InstrEmitter::CountOperands(SDNode *Node) {
56 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000057 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000058 --N;
59 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
60 --N; // Ignore chain if it exists.
61 return N;
62}
63
Dan Gohman94b8d7e2008-09-03 16:01:59 +000064/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
65/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000066void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000067EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
68 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000069 unsigned VRBase = 0;
70 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
71 // Just use the input register directly!
72 SDValue Op(Node, ResNo);
73 if (IsClone)
74 VRBaseMap.erase(Op);
75 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000076 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000077 assert(isNew && "Node emitted out of order - early");
78 return;
79 }
80
81 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
82 // the CopyToReg'd destination register instead of creating a new vreg.
83 bool MatchReg = true;
Evan Cheng1cd33272008-09-16 23:12:11 +000084 const TargetRegisterClass *UseRC = NULL;
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +000085 EVT VT = Node->getValueType(ResNo);
86
87 // Stick to the preferred register classes for legal types.
88 if (TLI->isTypeLegal(VT))
89 UseRC = TLI->getRegClassFor(VT);
90
Evan Chenge57187c2009-01-16 20:57:18 +000091 if (!IsClone && !IsCloned)
92 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
93 UI != E; ++UI) {
94 SDNode *User = *UI;
95 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +000096 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +000097 User->getOperand(2).getNode() == Node &&
98 User->getOperand(2).getResNo() == ResNo) {
99 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
100 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
101 VRBase = DestReg;
102 Match = false;
103 } else if (DestReg != SrcReg)
104 Match = false;
105 } else {
106 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
107 SDValue Op = User->getOperand(i);
108 if (Op.getNode() != Node || Op.getResNo() != ResNo)
109 continue;
Owen Andersone50ed302009-08-10 22:56:29 +0000110 EVT VT = Node->getValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000111 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000112 continue;
113 Match = false;
114 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000115 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000116 const TargetRegisterClass *RC = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000117 if (i+II.getNumDefs() < II.getNumOperands()) {
118 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000119 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trickf12f6df2012-05-03 01:14:37 +0000120 }
Evan Chenge57187c2009-01-16 20:57:18 +0000121 if (!UseRC)
122 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000123 else if (RC) {
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +0000124 const TargetRegisterClass *ComRC =
125 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000126 // If multiple uses expect disjoint register classes, we emit
127 // copies in AddRegisterOperand.
128 if (ComRC)
129 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000130 }
Evan Chenge57187c2009-01-16 20:57:18 +0000131 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000132 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000133 }
Evan Chenge57187c2009-01-16 20:57:18 +0000134 MatchReg &= Match;
135 if (VRBase)
136 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000137 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000138
139 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000140 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000141
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000142 // Figure out the register class to create for the destreg.
143 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000144 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000145 } else if (UseRC) {
146 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
147 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000148 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000149 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000150 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000151
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000152 // If all uses are reading from the src physical register and copying the
153 // register is either impossible or very expensive, then don't create a copy.
154 if (MatchReg && SrcRC->getCopyCost() < 0) {
155 VRBase = SrcReg;
156 } else {
157 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000158 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000159 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
160 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000161 }
162
163 SDValue Op(Node, ResNo);
164 if (IsClone)
165 VRBaseMap.erase(Op);
166 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000167 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000168 assert(isNew && "Node emitted out of order - early");
169}
170
171/// getDstOfCopyToRegUse - If the only use of the specified result number of
172/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000173unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
174 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000175 if (!Node->hasOneUse())
176 return 0;
177
178 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000179 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000180 User->getOperand(2).getNode() == Node &&
181 User->getOperand(2).getResNo() == ResNo) {
182 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
183 if (TargetRegisterInfo::isVirtualRegister(Reg))
184 return Reg;
185 }
186 return 0;
187}
188
Dan Gohmanbcea8592009-10-10 01:32:21 +0000189void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge837dea2011-06-28 19:10:37 +0000190 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000191 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000192 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000193 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000194 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
195
196 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
197 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000198 // is a vreg in the same register class, use the CopyToReg'd destination
199 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000200 unsigned VRBase = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000201 const TargetRegisterClass *RC =
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000202 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Evan Cheng8955e932009-07-11 01:06:50 +0000203 if (II.OpInfo[i].isOptionalDef()) {
204 // Optional def must be a physical register.
205 unsigned NumResults = CountResults(Node);
206 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
207 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
208 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
209 }
Evan Chenge57187c2009-01-16 20:57:18 +0000210
Evan Cheng8955e932009-07-11 01:06:50 +0000211 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000212 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
213 UI != E; ++UI) {
214 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000215 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000216 User->getOperand(2).getNode() == Node &&
217 User->getOperand(2).getResNo() == i) {
218 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
219 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000220 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000221 if (RegRC == RC) {
222 VRBase = Reg;
223 MI->addOperand(MachineOperand::CreateReg(Reg, true));
224 break;
225 }
Evan Chenge57187c2009-01-16 20:57:18 +0000226 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000227 }
228 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000229
230 // Create the result registers for this node and add the result regs to
231 // the machine instruction.
232 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000233 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000234 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000235 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
236 }
237
238 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000239 if (IsClone)
240 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000241 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000242 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000243 assert(isNew && "Node emitted out of order - early");
244 }
245}
246
247/// getVR - Return the virtual register corresponding to the specified result
248/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000249unsigned InstrEmitter::getVR(SDValue Op,
250 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000251 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000252 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000253 // Add an IMPLICIT_DEF instruction before every use.
254 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000255 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000256 // does not include operand register class info.
257 if (!VReg) {
258 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000259 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000260 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000261 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000262 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000263 return VReg;
264 }
265
266 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
267 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
268 return I->second;
269}
270
Bill Wendlingc0407192010-08-30 04:36:50 +0000271
Dan Gohmanf8c73942009-04-13 15:38:05 +0000272/// AddRegisterOperand - Add the specified register as an operand to the
273/// specified machine instr. Insert register copies if the register is
274/// not in the required register class.
275void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000276InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
277 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000278 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000279 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000280 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000281 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000282 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000283 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000284 // Get/emit the operand.
285 unsigned VReg = getVR(Op, VRBaseMap);
286 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
287
Evan Chenge837dea2011-06-28 19:10:37 +0000288 const MCInstrDesc &MCID = MI->getDesc();
289 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
290 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000291
292 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000293 // a new virtual register and copy the value into it, but first attempt to
294 // shrink VReg's register class within reason. For example, if VReg == GR32
295 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000296 if (II) {
Chris Lattner2a386882009-07-29 21:36:49 +0000297 const TargetRegisterClass *DstRC = 0;
298 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000299 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000300 assert((DstRC || (MI->isVariadic() && IIOpNum >= MCID.getNumOperands())) &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000301 "Don't have operand info for this instruction!");
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000302 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000303 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000304 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
305 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000306 VReg = NewVReg;
307 }
308 }
309
Dan Gohman47bd03b2010-04-30 00:08:21 +0000310 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000311 // conservative approximation. InstrEmitter does trivial coalescing
312 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000313 // Avoid kill flags on Schedule cloned nodes, since there will be
314 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000315 // Tied operands are never killed, so we need to check that. And that
316 // means we need to determine the index of the operand.
317 bool isKill = Op.hasOneUse() &&
318 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000319 !IsDebug &&
320 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000321 if (isKill) {
322 unsigned Idx = MI->getNumOperands();
323 while (Idx > 0 &&
324 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
325 --Idx;
Evan Chenge837dea2011-06-28 19:10:37 +0000326 bool isTied = MI->getDesc().getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000327 if (isTied)
328 isKill = false;
329 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000330
Evan Chengbfcb3052010-03-25 01:38:16 +0000331 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000332 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000333 false/*isDead*/, false/*isUndef*/,
334 false/*isEarlyClobber*/,
335 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000336}
337
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000338/// AddOperand - Add the specified operand to the specified machine instr. II
339/// specifies the instruction information for the node, and IIOpNum is the
Andrew Trick3af7a672011-09-20 03:06:13 +0000340/// operand number (in the II) that we are adding. IIOpNum and II are used for
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000341/// assertions only.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000342void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
343 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000344 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000345 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000346 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000347 if (Op.isMachineOpcode()) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000348 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
349 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000350 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000351 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000352 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000353 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000354 MI->addOperand(MachineOperand::CreateFPImm(CFP));
355 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Bill Wendlingc0407192010-08-30 04:36:50 +0000356 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +0000357 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
358 MI->addOperand(MachineOperand::CreateRegMask(RM->getRegMask()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000359 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000360 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
361 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000362 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
363 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000364 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
365 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
366 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000367 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
368 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000369 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
370 int Offset = CP->getOffset();
371 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000372 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000373 // MachineConstantPool wants an explicit alignment.
374 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000375 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000376 if (Align == 0) {
377 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000378 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000379 }
380 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000381
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000382 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000383 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000384 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000385 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000386 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000387 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000388 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
389 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000390 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000391 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000392 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000393 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000394 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
395 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000396 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000397 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000398 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000399 "Chain and glue operands should occur at end of operand list!");
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000400 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
401 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000402 }
403}
404
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000405unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
406 EVT VT, DebugLoc DL) {
407 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
408 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
409
410 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
411 // within reason.
412 if (RC && RC != VRC)
413 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
414
415 // VReg has been adjusted. It can be used with SubIdx operands now.
416 if (RC)
417 return VReg;
418
419 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
420 // register instead.
421 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
422 assert(RC && "No legal register class for VT supports that SubIdx");
423 unsigned NewReg = MRI->createVirtualRegister(RC);
424 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
425 .addReg(VReg);
426 return NewReg;
427}
428
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000429/// EmitSubregNode - Generate machine code for subreg nodes.
430///
Andrew Trick3af7a672011-09-20 03:06:13 +0000431void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000432 DenseMap<SDValue, unsigned> &VRBaseMap,
433 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000434 unsigned VRBase = 0;
435 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000436
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000437 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
438 // the CopyToReg'd destination register instead of creating a new vreg.
439 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
440 UI != E; ++UI) {
441 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000442 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000443 User->getOperand(2).getNode() == Node) {
444 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
445 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
446 VRBase = DestReg;
447 break;
448 }
449 }
450 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000451
Chris Lattner518bb532010-02-09 19:54:29 +0000452 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000453 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
454 // constraints on the %dst register, COPY can target all legal register
455 // classes.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000456 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000457 const TargetRegisterClass *TRC = TLI->getRegClassFor(Node->getValueType(0));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000458
Dan Gohmanf8c73942009-04-13 15:38:05 +0000459 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000460 MachineInstr *DefMI = MRI->getVRegDef(VReg);
461 unsigned SrcReg, DstReg, DefSubIdx;
462 if (DefMI &&
463 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
464 SubIdx == DefSubIdx) {
465 // Optimize these:
466 // r1025 = s/zext r1024, 4
467 // r1026 = extract_subreg r1025, 4
468 // to a copy
469 // r1026 = copy r1024
Evan Cheng0b71d392011-01-05 23:06:49 +0000470 VRBase = MRI->createVirtualRegister(TRC);
471 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
472 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen8ccaad52012-06-29 21:00:03 +0000473 MRI->clearKillFlags(SrcReg);
Evan Cheng0b71d392011-01-05 23:06:49 +0000474 } else {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000475 // VReg may not support a SubIdx sub-register, and we may need to
476 // constrain its register class or issue a COPY to a compatible register
477 // class.
478 VReg = ConstrainForSubReg(VReg, SubIdx,
479 Node->getOperand(0).getValueType(),
480 Node->getDebugLoc());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000481
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000482 // Create the destreg if it is missing.
483 if (VRBase == 0)
484 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng0b71d392011-01-05 23:06:49 +0000485
486 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000487 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
488 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000489 }
Chris Lattner518bb532010-02-09 19:54:29 +0000490 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
491 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000492 SDValue N0 = Node->getOperand(0);
493 SDValue N1 = Node->getOperand(1);
494 SDValue N2 = Node->getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000495 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohman5ec3b422009-04-14 22:17:14 +0000496
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000497 // Figure out the register class to create for the destreg. It should be
498 // the largest legal register class supporting SubIdx sub-registers.
499 // RegisterCoalescer will constrain it further if it decides to eliminate
500 // the INSERT_SUBREG instruction.
501 //
502 // %dst = INSERT_SUBREG %src, %sub, SubIdx
503 //
504 // is lowered by TwoAddressInstructionPass to:
505 //
506 // %dst = COPY %src
507 // %dst:SubIdx = COPY %sub
508 //
509 // There is no constraint on the %src register class.
510 //
511 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getValueType(0));
512 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
513 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
514
515 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000516 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000517
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000518 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000519 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000520 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Andrew Trick3af7a672011-09-20 03:06:13 +0000521
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000522 // If creating a subreg_to_reg, then the first input operand
523 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000524 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000525 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000526 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000527 } else
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000528 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
529 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000530 // Add the subregster being inserted
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000531 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
532 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000533 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000534 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000535 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000536 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000537
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000538 SDValue Op(Node, 0);
539 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000540 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000541 assert(isNew && "Node emitted out of order - early");
542}
543
Dan Gohman88c7af02009-04-13 21:06:25 +0000544/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
545/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000546/// register is constrained to be in a particular register class.
547///
548void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000549InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
550 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000551 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000552
Dan Gohmanf8c73942009-04-13 15:38:05 +0000553 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000554 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trickf12f6df2012-05-03 01:14:37 +0000555 const TargetRegisterClass *DstRC =
556 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000557 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000558 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
559 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000560
561 SDValue Op(Node, 0);
562 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000563 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000564 assert(isNew && "Node emitted out of order - early");
565}
566
Evan Chengba609c82010-05-04 00:22:40 +0000567/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
568///
569void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000570 DenseMap<SDValue, unsigned> &VRBaseMap,
571 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000572 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
573 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trickf12f6df2012-05-03 01:14:37 +0000574 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Evan Chengba609c82010-05-04 00:22:40 +0000575 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
576 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
577 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000578 assert((NumOps & 1) == 1 &&
579 "REG_SEQUENCE must have an odd number of operands!");
Evan Chenge837dea2011-06-28 19:10:37 +0000580 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
Owen Anderson1300f302011-06-16 18:17:13 +0000581 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000582 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000583 if ((i & 1) == 0) {
Pete Coopercd7f02b2012-01-18 04:16:16 +0000584 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
585 // Skip physical registers as they don't have a vreg to get and we'll
586 // insert copies for them in TwoAddressInstructionPass anyway.
587 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
588 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
589 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
590 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
591 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000592 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Coopercd7f02b2012-01-18 04:16:16 +0000593 if (SRC && SRC != RC) {
594 MRI->setRegClass(NewVReg, SRC);
595 RC = SRC;
596 }
Evan Cheng5012f9b2010-05-18 20:07:47 +0000597 }
Evan Chengba609c82010-05-04 00:22:40 +0000598 }
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000599 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
600 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000601 }
602
603 MBB->insert(InsertPos, MI);
604 SDValue Op(Node, 0);
605 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000606 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000607 assert(isNew && "Node emitted out of order - early");
608}
609
Evan Chengbfcb3052010-03-25 01:38:16 +0000610/// EmitDbgValue - Generate machine instruction for a dbg_value node.
611///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000612MachineInstr *
613InstrEmitter::EmitDbgValue(SDDbgValue *SD,
614 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000615 uint64_t Offset = SD->getOffset();
616 MDNode* MDPtr = SD->getMDPtr();
617 DebugLoc DL = SD->getDebugLoc();
618
Dale Johannesenf822e732010-04-25 21:33:54 +0000619 if (SD->getKind() == SDDbgValue::FRAMEIX) {
620 // Stack address; this needs to be lowered in target-dependent fashion.
621 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
622 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000623 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000624 }
625 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000626 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000627 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
628 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000629 SDNode *Node = SD->getSDNode();
630 SDValue Op = SDValue(Node, SD->getResNo());
631 // It's possible we replaced this SDNode with other(s) and therefore
632 // didn't generate code for it. It's better to catch these cases where
633 // they happen and transfer the debug info, but trying to guarantee that
634 // in all cases would be very fragile; this is a safeguard for any
635 // that were missed.
636 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
637 if (I==VRBaseMap.end())
638 MIB.addReg(0U); // undef
639 else
640 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000641 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000642 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000643 const Value *V = SD->getConst();
644 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000645 if (CI->getBitWidth() > 64)
646 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000647 else
648 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000649 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000650 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000651 } else {
652 // Could be an Undef. In any case insert an Undef so we can see what we
653 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000654 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000655 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000656 } else {
657 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000658 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000659 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000660
661 MIB.addImm(Offset).addMetadata(MDPtr);
662 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000663}
664
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000665/// EmitMachineNode - Generate machine code for a target-specific node and
666/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000667///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000668void InstrEmitter::
669EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000670 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000671 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000672
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000673 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000674 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000675 Opc == TargetOpcode::INSERT_SUBREG ||
676 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000677 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000678 return;
679 }
680
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000681 // Handle COPY_TO_REGCLASS specially.
682 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
683 EmitCopyToRegClassNode(Node, VRBaseMap);
684 return;
685 }
686
Evan Chengba609c82010-05-04 00:22:40 +0000687 // Handle REG_SEQUENCE specially.
688 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000689 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000690 return;
691 }
692
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000693 if (Opc == TargetOpcode::IMPLICIT_DEF)
694 // We want a unique VR for each IMPLICIT_DEF use.
695 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000696
Evan Chenge837dea2011-06-28 19:10:37 +0000697 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000698 unsigned NumResults = CountResults(Node);
699 unsigned NodeOperands = CountOperands(Node);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000700 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000701#ifndef NDEBUG
702 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000703 if (II.isVariadic())
704 assert(NumMIOperands >= II.getNumOperands() &&
705 "Too few operands for a variadic node!");
706 else
707 assert(NumMIOperands >= II.getNumOperands() &&
708 NumMIOperands <= II.getNumOperands()+II.getNumImplicitDefs() &&
709 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000710#endif
711
712 // Create the new machine instruction.
713 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000714
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000715 // Add result register values for things that are defined by this
716 // instruction.
717 if (NumResults)
718 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000719
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000720 // Emit all of the actual operands of this instruction, adding them to the
721 // instruction as appropriate.
722 bool HasOptPRefs = II.getNumDefs() > NumResults;
723 assert((!HasOptPRefs || !HasPhysRegOuts) &&
724 "Unable to cope with optional defs and phys regs defs!");
725 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
726 for (unsigned i = NumSkip; i != NodeOperands; ++i)
727 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000728 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000729
730 // Transfer all of the memory reference descriptions of this instruction.
731 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
732 cast<MachineSDNode>(Node)->memoperands_end());
733
Dan Gohman14152b42010-07-06 20:24:04 +0000734 // Insert the instruction into position in the block. This needs to
735 // happen before any custom inserter hook is called so that the
736 // hook knows where in the block to insert the replacement code.
737 MBB->insert(InsertPos, MI);
738
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000739 // The MachineInstr may also define physregs instead of virtregs. These
740 // physreg values can reach other instructions in different ways:
741 //
742 // 1. When there is a use of a Node value beyond the explicitly defined
743 // virtual registers, we emit a CopyFromReg for one of the implicitly
744 // defined physregs. This only happens when HasPhysRegOuts is true.
745 //
746 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
747 //
748 // 3. A glued instruction may implicitly use a physreg.
749 //
750 // 4. A glued instruction may use a RegisterSDNode operand.
751 //
752 // Collect all the used physreg defs, and make sure that any unused physreg
753 // defs are marked as dead.
754 SmallVector<unsigned, 8> UsedRegs;
755
Eric Christopherbece0482010-12-08 22:21:42 +0000756 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000757 if (HasPhysRegOuts) {
758 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
759 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000760 if (!Node->hasAnyUseOfValue(i))
761 continue;
762 // This implicitly defined physreg has a use.
763 UsedRegs.push_back(Reg);
764 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000765 }
766 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000767
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000768 // Scan the glue chain for any used physregs.
769 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
770 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
771 if (F->getOpcode() == ISD::CopyFromReg) {
772 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
773 continue;
Hal Finkelf77c03a2012-02-24 17:53:59 +0000774 } else if (F->getOpcode() == ISD::CopyToReg) {
775 // Skip CopyToReg nodes that are internal to the glue chain.
776 continue;
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000777 }
778 // Collect declared implicit uses.
779 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
780 UsedRegs.append(MCID.getImplicitUses(),
781 MCID.getImplicitUses() + MCID.getNumImplicitUses());
782 // In addition to declared implicit uses, we must also check for
783 // direct RegisterSDNode operands.
784 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
785 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
786 unsigned Reg = R->getReg();
787 if (TargetRegisterInfo::isPhysicalRegister(Reg))
788 UsedRegs.push_back(Reg);
789 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000790 }
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000791 }
792
793 // Finally mark unused registers as dead.
794 if (!UsedRegs.empty() || II.getImplicitDefs())
795 MI->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Cheng37fefc22011-08-30 19:09:48 +0000796
797 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000798#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000799 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000800#endif
Andrew Trick83a80312011-09-20 18:22:31 +0000801 TLI->AdjustInstrPostInstrSelection(MI, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000802}
803
804/// EmitSpecialNode - Generate machine code for a target-independent node and
805/// needed dependencies.
806void InstrEmitter::
807EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
808 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000809 switch (Node->getOpcode()) {
810 default:
811#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000812 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000813#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000814 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000815 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000816 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Cheng37b73872009-07-30 08:33:02 +0000817 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000818 case ISD::TokenFactor: // fall thru
819 break;
820 case ISD::CopyToReg: {
821 unsigned SrcReg;
822 SDValue SrcVal = Node->getOperand(2);
823 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
824 SrcReg = R->getReg();
825 else
826 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000827
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000828 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
829 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
830 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000831
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000832 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
833 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000834 break;
835 }
836 case ISD::CopyFromReg: {
837 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000838 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000839 break;
840 }
Chris Lattner7561d482010-03-14 02:33:54 +0000841 case ISD::EH_LABEL: {
842 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
843 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
844 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
845 break;
846 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000847
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000848 case ISD::INLINEASM: {
849 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000850 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000851 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000852
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000853 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000854 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000855 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000856
857 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000858 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
859 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000860 MI->addOperand(MachineOperand::CreateES(AsmStr));
Andrew Trick3af7a672011-09-20 03:06:13 +0000861
Evan Chengc36b7062011-01-07 23:50:32 +0000862 // Add the HasSideEffect and isAlignStack bits.
863 int64_t ExtraInfo =
864 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000865 getZExtValue();
Evan Chengc36b7062011-01-07 23:50:32 +0000866 MI->addOperand(MachineOperand::CreateImm(ExtraInfo));
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000867
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000868 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000869 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000870 unsigned Flags =
871 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000872 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000873
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000874 MI->addOperand(MachineOperand::CreateImm(Flags));
875 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000876
Chris Lattnerdecc2672010-04-07 05:20:54 +0000877 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000878 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000879 case InlineAsm::Kind_RegDef:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000880 for (; NumVals; --NumVals, ++i) {
881 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000882 // FIXME: Add dead flags for physical and virtual registers defined.
883 // For now, mark physical register defs as implicit to help fast
884 // regalloc. This makes inline asm look a lot like calls.
885 MI->addOperand(MachineOperand::CreateReg(Reg, true,
886 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000887 }
888 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000889 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000890 case InlineAsm::Kind_Clobber:
Dale Johannesen913d3df2008-09-12 17:49:03 +0000891 for (; NumVals; --NumVals, ++i) {
892 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000893 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true,
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000894 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg),
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000895 /*isKill=*/ false,
896 /*isDead=*/ false,
897 /*isUndef=*/false,
898 /*isEarlyClobber=*/ true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000899 }
900 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000901 case InlineAsm::Kind_RegUse: // Use of register.
902 case InlineAsm::Kind_Imm: // Immediate.
903 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000904 // The addressing mode has been selected, just add all of the
905 // operands to the machine instruction.
906 for (; NumVals; --NumVals, ++i)
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000907 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap,
908 /*IsDebug=*/false, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000909 break;
910 }
911 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000912
Chris Lattnercf9a4152010-04-07 05:38:05 +0000913 // Get the mdnode from the asm if it exists and add it to the instruction.
914 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
915 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000916 if (MD)
917 MI->addOperand(MachineOperand::CreateMetadata(MD));
Andrew Trick3af7a672011-09-20 03:06:13 +0000918
Dan Gohmanbcea8592009-10-10 01:32:21 +0000919 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000920 break;
921 }
922 }
923}
924
Dan Gohmanbcea8592009-10-10 01:32:21 +0000925/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
926/// at the given position in the given block.
927InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
928 MachineBasicBlock::iterator insertpos)
929 : MF(mbb->getParent()),
930 MRI(&MF->getRegInfo()),
931 TM(&MF->getTarget()),
932 TII(TM->getInstrInfo()),
933 TRI(TM->getRegisterInfo()),
934 TLI(TM->getTargetLowering()),
935 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000936}