blob: 940cb2f3c2c10ba8ef468cc3591e1f2eba0fe41d [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000019#include "llvm/ADT/Statistic.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000020#include "llvm/CodeGen/MachineConstantPool.h"
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000024#include "llvm/DataLayout.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000025#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000027#include "llvm/Support/MathExtras.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000028#include "llvm/Target/TargetInstrInfo.h"
29#include "llvm/Target/TargetLowering.h"
30#include "llvm/Target/TargetMachine.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000031using 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
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000051/// 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.
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000055///
56/// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding
57/// the chain and glue. These operands may be implicit on the machine instr.
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +000058static unsigned countOperands(SDNode *Node, unsigned NumExpUses,
59 unsigned &NumImpUses) {
Dan Gohmanbcea8592009-10-10 01:32:21 +000060 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000061 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000062 --N;
63 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
64 --N; // Ignore chain if it exists.
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000065
66 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +000067 NumImpUses = N - NumExpUses;
68 for (unsigned I = N; I > NumExpUses; --I) {
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000069 if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1)))
70 continue;
71 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1)))
72 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg()))
73 continue;
74 NumImpUses = N - I;
75 break;
76 }
77
Dan Gohmanbcea8592009-10-10 01:32:21 +000078 return N;
79}
80
Dan Gohman94b8d7e2008-09-03 16:01:59 +000081/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
82/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000083void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000084EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
85 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000086 unsigned VRBase = 0;
87 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
88 // Just use the input register directly!
89 SDValue Op(Node, ResNo);
90 if (IsClone)
91 VRBaseMap.erase(Op);
92 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000093 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000094 assert(isNew && "Node emitted out of order - early");
95 return;
96 }
97
98 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
99 // the CopyToReg'd destination register instead of creating a new vreg.
100 bool MatchReg = true;
Evan Cheng1cd33272008-09-16 23:12:11 +0000101 const TargetRegisterClass *UseRC = NULL;
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000102 MVT VT = Node->getSimpleValueType(ResNo);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000103
104 // Stick to the preferred register classes for legal types.
105 if (TLI->isTypeLegal(VT))
106 UseRC = TLI->getRegClassFor(VT);
107
Evan Chenge57187c2009-01-16 20:57:18 +0000108 if (!IsClone && !IsCloned)
109 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
110 UI != E; ++UI) {
111 SDNode *User = *UI;
112 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +0000113 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000114 User->getOperand(2).getNode() == Node &&
115 User->getOperand(2).getResNo() == ResNo) {
116 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
117 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
118 VRBase = DestReg;
119 Match = false;
120 } else if (DestReg != SrcReg)
121 Match = false;
122 } else {
123 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
124 SDValue Op = User->getOperand(i);
125 if (Op.getNode() != Node || Op.getResNo() != ResNo)
126 continue;
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000127 MVT VT = Node->getSimpleValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000128 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000129 continue;
130 Match = false;
131 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000132 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000133 const TargetRegisterClass *RC = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000134 if (i+II.getNumDefs() < II.getNumOperands()) {
135 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000136 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trickf12f6df2012-05-03 01:14:37 +0000137 }
Evan Chenge57187c2009-01-16 20:57:18 +0000138 if (!UseRC)
139 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000140 else if (RC) {
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +0000141 const TargetRegisterClass *ComRC =
142 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000143 // If multiple uses expect disjoint register classes, we emit
144 // copies in AddRegisterOperand.
145 if (ComRC)
146 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000147 }
Evan Chenge57187c2009-01-16 20:57:18 +0000148 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000149 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000150 }
Evan Chenge57187c2009-01-16 20:57:18 +0000151 MatchReg &= Match;
152 if (VRBase)
153 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000154 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000155
156 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000157 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000158
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000159 // Figure out the register class to create for the destreg.
160 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000161 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000162 } else if (UseRC) {
163 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
164 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000165 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000166 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000167 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000168
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000169 // If all uses are reading from the src physical register and copying the
170 // register is either impossible or very expensive, then don't create a copy.
171 if (MatchReg && SrcRC->getCopyCost() < 0) {
172 VRBase = SrcReg;
173 } else {
174 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000175 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000176 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
177 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000178 }
179
180 SDValue Op(Node, ResNo);
181 if (IsClone)
182 VRBaseMap.erase(Op);
183 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000184 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000185 assert(isNew && "Node emitted out of order - early");
186}
187
188/// getDstOfCopyToRegUse - If the only use of the specified result number of
189/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000190unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
191 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000192 if (!Node->hasOneUse())
193 return 0;
194
195 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000196 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000197 User->getOperand(2).getNode() == Node &&
198 User->getOperand(2).getResNo() == ResNo) {
199 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
200 if (TargetRegisterInfo::isVirtualRegister(Reg))
201 return Reg;
202 }
203 return 0;
204}
205
Dan Gohmanbcea8592009-10-10 01:32:21 +0000206void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge837dea2011-06-28 19:10:37 +0000207 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000208 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000209 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000210 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000211 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
212
213 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
214 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000215 // is a vreg in the same register class, use the CopyToReg'd destination
216 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000217 unsigned VRBase = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000218 const TargetRegisterClass *RC =
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000219 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Evan Cheng8955e932009-07-11 01:06:50 +0000220 if (II.OpInfo[i].isOptionalDef()) {
221 // Optional def must be a physical register.
222 unsigned NumResults = CountResults(Node);
223 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
224 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
225 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
226 }
Evan Chenge57187c2009-01-16 20:57:18 +0000227
Evan Cheng8955e932009-07-11 01:06:50 +0000228 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000229 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
230 UI != E; ++UI) {
231 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000232 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000233 User->getOperand(2).getNode() == Node &&
234 User->getOperand(2).getResNo() == i) {
235 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
236 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000237 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000238 if (RegRC == RC) {
239 VRBase = Reg;
240 MI->addOperand(MachineOperand::CreateReg(Reg, true));
241 break;
242 }
Evan Chenge57187c2009-01-16 20:57:18 +0000243 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000244 }
245 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000246
247 // Create the result registers for this node and add the result regs to
248 // the machine instruction.
249 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000250 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000251 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000252 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
253 }
254
255 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000256 if (IsClone)
257 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000258 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000259 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000260 assert(isNew && "Node emitted out of order - early");
261 }
262}
263
264/// getVR - Return the virtual register corresponding to the specified result
265/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000266unsigned InstrEmitter::getVR(SDValue Op,
267 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000268 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000269 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000270 // Add an IMPLICIT_DEF instruction before every use.
271 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000272 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000273 // does not include operand register class info.
274 if (!VReg) {
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000275 const TargetRegisterClass *RC =
276 TLI->getRegClassFor(Op.getSimpleValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000277 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000278 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000279 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000280 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000281 return VReg;
282 }
283
284 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
285 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
286 return I->second;
287}
288
Bill Wendlingc0407192010-08-30 04:36:50 +0000289
Dan Gohmanf8c73942009-04-13 15:38:05 +0000290/// AddRegisterOperand - Add the specified register as an operand to the
291/// specified machine instr. Insert register copies if the register is
292/// not in the required register class.
293void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000294InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
295 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000296 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000297 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000298 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000300 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000301 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000302 // Get/emit the operand.
303 unsigned VReg = getVR(Op, VRBaseMap);
304 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
305
Evan Chenge837dea2011-06-28 19:10:37 +0000306 const MCInstrDesc &MCID = MI->getDesc();
307 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
308 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000309
310 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000311 // a new virtual register and copy the value into it, but first attempt to
312 // shrink VReg's register class within reason. For example, if VReg == GR32
313 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000314 if (II) {
Chris Lattner2a386882009-07-29 21:36:49 +0000315 const TargetRegisterClass *DstRC = 0;
316 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000317 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000318 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000319 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000320 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
321 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000322 VReg = NewVReg;
323 }
324 }
325
Dan Gohman47bd03b2010-04-30 00:08:21 +0000326 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000327 // conservative approximation. InstrEmitter does trivial coalescing
328 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000329 // Avoid kill flags on Schedule cloned nodes, since there will be
330 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000331 // Tied operands are never killed, so we need to check that. And that
332 // means we need to determine the index of the operand.
333 bool isKill = Op.hasOneUse() &&
334 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000335 !IsDebug &&
336 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000337 if (isKill) {
338 unsigned Idx = MI->getNumOperands();
339 while (Idx > 0 &&
340 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
341 --Idx;
Evan Chenge837dea2011-06-28 19:10:37 +0000342 bool isTied = MI->getDesc().getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000343 if (isTied)
344 isKill = false;
345 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000346
Evan Chengbfcb3052010-03-25 01:38:16 +0000347 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000348 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000349 false/*isDead*/, false/*isUndef*/,
350 false/*isEarlyClobber*/,
351 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000352}
353
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000354/// AddOperand - Add the specified operand to the specified machine instr. II
355/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000356/// operand number (in the II) that we are adding.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000357void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
358 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000359 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000360 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000361 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000362 if (Op.isMachineOpcode()) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000363 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
364 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000365 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000366 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000367 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000368 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000369 MI->addOperand(MachineOperand::CreateFPImm(CFP));
370 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000371 // Turn additional physreg operands into implicit uses on non-variadic
372 // instructions. This is used by call and return instructions passing
373 // arguments in registers.
374 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
375 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false, Imp));
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +0000376 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
377 MI->addOperand(MachineOperand::CreateRegMask(RM->getRegMask()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000378 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000379 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
380 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000381 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
382 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000383 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
384 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
385 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000386 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
387 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000388 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
389 int Offset = CP->getOffset();
390 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000391 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000392 // MachineConstantPool wants an explicit alignment.
393 if (Align == 0) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000394 Align = TM->getDataLayout()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000395 if (Align == 0) {
396 // Alignment of vector types. FIXME!
Micah Villmow3574eca2012-10-08 16:38:25 +0000397 Align = TM->getDataLayout()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000398 }
399 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000400
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000401 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000402 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000403 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000404 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000405 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000406 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000407 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
408 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000409 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000410 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000411 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000412 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000413 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000414 BA->getOffset(),
Dan Gohman29cbade2009-11-20 23:18:13 +0000415 BA->getTargetFlags()));
Jakob Stoklund Olesen74500bd2012-08-07 22:37:05 +0000416 } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) {
417 MI->addOperand(MachineOperand::CreateTargetIndex(TI->getIndex(),
418 TI->getOffset(),
419 TI->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000420 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000422 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000423 "Chain and glue operands should occur at end of operand list!");
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000424 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
425 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000426 }
427}
428
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000429unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000430 MVT VT, DebugLoc DL) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000431 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
432 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
433
434 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
435 // within reason.
436 if (RC && RC != VRC)
437 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
438
439 // VReg has been adjusted. It can be used with SubIdx operands now.
440 if (RC)
441 return VReg;
442
443 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
444 // register instead.
445 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
446 assert(RC && "No legal register class for VT supports that SubIdx");
447 unsigned NewReg = MRI->createVirtualRegister(RC);
448 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
449 .addReg(VReg);
450 return NewReg;
451}
452
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000453/// EmitSubregNode - Generate machine code for subreg nodes.
454///
Andrew Trick3af7a672011-09-20 03:06:13 +0000455void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000456 DenseMap<SDValue, unsigned> &VRBaseMap,
457 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000458 unsigned VRBase = 0;
459 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000460
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000461 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
462 // the CopyToReg'd destination register instead of creating a new vreg.
463 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
464 UI != E; ++UI) {
465 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000466 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000467 User->getOperand(2).getNode() == Node) {
468 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
469 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
470 VRBase = DestReg;
471 break;
472 }
473 }
474 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000475
Chris Lattner518bb532010-02-09 19:54:29 +0000476 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000477 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
478 // constraints on the %dst register, COPY can target all legal register
479 // classes.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000480 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000481 const TargetRegisterClass *TRC =
482 TLI->getRegClassFor(Node->getSimpleValueType(0));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000483
Dan Gohmanf8c73942009-04-13 15:38:05 +0000484 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000485 MachineInstr *DefMI = MRI->getVRegDef(VReg);
486 unsigned SrcReg, DstReg, DefSubIdx;
487 if (DefMI &&
488 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Cheng87591342012-07-11 18:55:07 +0000489 SubIdx == DefSubIdx &&
490 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng0b71d392011-01-05 23:06:49 +0000491 // Optimize these:
492 // r1025 = s/zext r1024, 4
493 // r1026 = extract_subreg r1025, 4
494 // to a copy
495 // r1026 = copy r1024
Evan Cheng0b71d392011-01-05 23:06:49 +0000496 VRBase = MRI->createVirtualRegister(TRC);
497 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
498 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen8ccaad52012-06-29 21:00:03 +0000499 MRI->clearKillFlags(SrcReg);
Evan Cheng0b71d392011-01-05 23:06:49 +0000500 } else {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000501 // VReg may not support a SubIdx sub-register, and we may need to
502 // constrain its register class or issue a COPY to a compatible register
503 // class.
504 VReg = ConstrainForSubReg(VReg, SubIdx,
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000505 Node->getOperand(0).getSimpleValueType(),
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000506 Node->getDebugLoc());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000507
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000508 // Create the destreg if it is missing.
509 if (VRBase == 0)
510 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng0b71d392011-01-05 23:06:49 +0000511
512 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000513 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
514 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000515 }
Chris Lattner518bb532010-02-09 19:54:29 +0000516 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
517 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000518 SDValue N0 = Node->getOperand(0);
519 SDValue N1 = Node->getOperand(1);
520 SDValue N2 = Node->getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000521 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohman5ec3b422009-04-14 22:17:14 +0000522
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000523 // Figure out the register class to create for the destreg. It should be
524 // the largest legal register class supporting SubIdx sub-registers.
525 // RegisterCoalescer will constrain it further if it decides to eliminate
526 // the INSERT_SUBREG instruction.
527 //
528 // %dst = INSERT_SUBREG %src, %sub, SubIdx
529 //
530 // is lowered by TwoAddressInstructionPass to:
531 //
532 // %dst = COPY %src
533 // %dst:SubIdx = COPY %sub
534 //
535 // There is no constraint on the %src register class.
536 //
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000537 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0));
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000538 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
539 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
540
541 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000542 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000543
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000544 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000545 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000546 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Andrew Trick3af7a672011-09-20 03:06:13 +0000547
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000548 // If creating a subreg_to_reg, then the first input operand
549 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000550 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000551 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000552 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000553 } else
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000554 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
555 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000556 // Add the subregster being inserted
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000557 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
558 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000559 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000560 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000561 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000562 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000563
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000564 SDValue Op(Node, 0);
565 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000566 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000567 assert(isNew && "Node emitted out of order - early");
568}
569
Dan Gohman88c7af02009-04-13 21:06:25 +0000570/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
571/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000572/// register is constrained to be in a particular register class.
573///
574void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000575InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
576 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000577 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000578
Dan Gohmanf8c73942009-04-13 15:38:05 +0000579 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000580 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trickf12f6df2012-05-03 01:14:37 +0000581 const TargetRegisterClass *DstRC =
582 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000583 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000584 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
585 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000586
587 SDValue Op(Node, 0);
588 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000589 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000590 assert(isNew && "Node emitted out of order - early");
591}
592
Evan Chengba609c82010-05-04 00:22:40 +0000593/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
594///
595void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000596 DenseMap<SDValue, unsigned> &VRBaseMap,
597 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000598 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
599 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trickf12f6df2012-05-03 01:14:37 +0000600 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Evan Chengba609c82010-05-04 00:22:40 +0000601 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
602 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
603 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000604 assert((NumOps & 1) == 1 &&
605 "REG_SEQUENCE must have an odd number of operands!");
Evan Chenge837dea2011-06-28 19:10:37 +0000606 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
Owen Anderson1300f302011-06-16 18:17:13 +0000607 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000608 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000609 if ((i & 1) == 0) {
Pete Coopercd7f02b2012-01-18 04:16:16 +0000610 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
611 // Skip physical registers as they don't have a vreg to get and we'll
612 // insert copies for them in TwoAddressInstructionPass anyway.
613 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
614 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
615 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
616 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
617 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000618 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Coopercd7f02b2012-01-18 04:16:16 +0000619 if (SRC && SRC != RC) {
620 MRI->setRegClass(NewVReg, SRC);
621 RC = SRC;
622 }
Evan Cheng5012f9b2010-05-18 20:07:47 +0000623 }
Evan Chengba609c82010-05-04 00:22:40 +0000624 }
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000625 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
626 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000627 }
628
629 MBB->insert(InsertPos, MI);
630 SDValue Op(Node, 0);
631 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000632 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000633 assert(isNew && "Node emitted out of order - early");
634}
635
Evan Chengbfcb3052010-03-25 01:38:16 +0000636/// EmitDbgValue - Generate machine instruction for a dbg_value node.
637///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000638MachineInstr *
639InstrEmitter::EmitDbgValue(SDDbgValue *SD,
640 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000641 uint64_t Offset = SD->getOffset();
642 MDNode* MDPtr = SD->getMDPtr();
643 DebugLoc DL = SD->getDebugLoc();
644
Dale Johannesenf822e732010-04-25 21:33:54 +0000645 if (SD->getKind() == SDDbgValue::FRAMEIX) {
646 // Stack address; this needs to be lowered in target-dependent fashion.
647 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
648 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000649 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000650 }
651 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000652 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000653 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
654 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000655 SDNode *Node = SD->getSDNode();
656 SDValue Op = SDValue(Node, SD->getResNo());
657 // It's possible we replaced this SDNode with other(s) and therefore
658 // didn't generate code for it. It's better to catch these cases where
659 // they happen and transfer the debug info, but trying to guarantee that
660 // in all cases would be very fragile; this is a safeguard for any
661 // that were missed.
662 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
663 if (I==VRBaseMap.end())
664 MIB.addReg(0U); // undef
665 else
666 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000667 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000668 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000669 const Value *V = SD->getConst();
670 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000671 if (CI->getBitWidth() > 64)
672 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000673 else
674 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000675 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000676 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000677 } else {
678 // Could be an Undef. In any case insert an Undef so we can see what we
679 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000680 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000681 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000682 } else {
683 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000684 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000685 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000686
687 MIB.addImm(Offset).addMetadata(MDPtr);
688 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000689}
690
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000691/// EmitMachineNode - Generate machine code for a target-specific node and
692/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000693///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000694void InstrEmitter::
695EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000696 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000697 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000698
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000699 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000700 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000701 Opc == TargetOpcode::INSERT_SUBREG ||
702 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000703 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000704 return;
705 }
706
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000707 // Handle COPY_TO_REGCLASS specially.
708 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
709 EmitCopyToRegClassNode(Node, VRBaseMap);
710 return;
711 }
712
Evan Chengba609c82010-05-04 00:22:40 +0000713 // Handle REG_SEQUENCE specially.
714 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000715 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000716 return;
717 }
718
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000719 if (Opc == TargetOpcode::IMPLICIT_DEF)
720 // We want a unique VR for each IMPLICIT_DEF use.
721 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000722
Evan Chenge837dea2011-06-28 19:10:37 +0000723 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000724 unsigned NumResults = CountResults(Node);
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000725 unsigned NumImpUses = 0;
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +0000726 unsigned NodeOperands =
727 countOperands(Node, II.getNumOperands() - II.getNumDefs(), NumImpUses);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000728 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000729#ifndef NDEBUG
730 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000731 if (II.isVariadic())
732 assert(NumMIOperands >= II.getNumOperands() &&
733 "Too few operands for a variadic node!");
734 else
735 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000736 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
737 NumImpUses &&
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000738 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000739#endif
740
741 // Create the new machine instruction.
742 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000743
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000744 // Add result register values for things that are defined by this
745 // instruction.
746 if (NumResults)
747 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000748
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000749 // Emit all of the actual operands of this instruction, adding them to the
750 // instruction as appropriate.
751 bool HasOptPRefs = II.getNumDefs() > NumResults;
752 assert((!HasOptPRefs || !HasPhysRegOuts) &&
753 "Unable to cope with optional defs and phys regs defs!");
754 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
755 for (unsigned i = NumSkip; i != NodeOperands; ++i)
756 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000757 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000758
759 // Transfer all of the memory reference descriptions of this instruction.
760 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
761 cast<MachineSDNode>(Node)->memoperands_end());
762
Dan Gohman14152b42010-07-06 20:24:04 +0000763 // Insert the instruction into position in the block. This needs to
764 // happen before any custom inserter hook is called so that the
765 // hook knows where in the block to insert the replacement code.
766 MBB->insert(InsertPos, MI);
767
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000768 // The MachineInstr may also define physregs instead of virtregs. These
769 // physreg values can reach other instructions in different ways:
770 //
771 // 1. When there is a use of a Node value beyond the explicitly defined
772 // virtual registers, we emit a CopyFromReg for one of the implicitly
773 // defined physregs. This only happens when HasPhysRegOuts is true.
774 //
775 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
776 //
777 // 3. A glued instruction may implicitly use a physreg.
778 //
779 // 4. A glued instruction may use a RegisterSDNode operand.
780 //
781 // Collect all the used physreg defs, and make sure that any unused physreg
782 // defs are marked as dead.
783 SmallVector<unsigned, 8> UsedRegs;
784
Eric Christopherbece0482010-12-08 22:21:42 +0000785 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000786 if (HasPhysRegOuts) {
787 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
788 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000789 if (!Node->hasAnyUseOfValue(i))
790 continue;
791 // This implicitly defined physreg has a use.
792 UsedRegs.push_back(Reg);
793 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000794 }
795 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000796
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000797 // Scan the glue chain for any used physregs.
798 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
799 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
800 if (F->getOpcode() == ISD::CopyFromReg) {
801 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
802 continue;
Hal Finkelf77c03a2012-02-24 17:53:59 +0000803 } else if (F->getOpcode() == ISD::CopyToReg) {
804 // Skip CopyToReg nodes that are internal to the glue chain.
805 continue;
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000806 }
807 // Collect declared implicit uses.
808 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
809 UsedRegs.append(MCID.getImplicitUses(),
810 MCID.getImplicitUses() + MCID.getNumImplicitUses());
811 // In addition to declared implicit uses, we must also check for
812 // direct RegisterSDNode operands.
813 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
814 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
815 unsigned Reg = R->getReg();
816 if (TargetRegisterInfo::isPhysicalRegister(Reg))
817 UsedRegs.push_back(Reg);
818 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000819 }
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000820 }
821
822 // Finally mark unused registers as dead.
823 if (!UsedRegs.empty() || II.getImplicitDefs())
824 MI->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Cheng37fefc22011-08-30 19:09:48 +0000825
826 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000827#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000828 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000829#endif
Andrew Trick83a80312011-09-20 18:22:31 +0000830 TLI->AdjustInstrPostInstrSelection(MI, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000831}
832
833/// EmitSpecialNode - Generate machine code for a target-independent node and
834/// needed dependencies.
835void InstrEmitter::
836EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
837 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000838 switch (Node->getOpcode()) {
839 default:
840#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000841 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000842#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000843 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000844 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000845 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Cheng37b73872009-07-30 08:33:02 +0000846 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000847 case ISD::TokenFactor: // fall thru
848 break;
849 case ISD::CopyToReg: {
850 unsigned SrcReg;
851 SDValue SrcVal = Node->getOperand(2);
852 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
853 SrcReg = R->getReg();
854 else
855 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000856
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000857 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
858 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
859 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000860
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000861 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
862 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000863 break;
864 }
865 case ISD::CopyFromReg: {
866 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000867 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000868 break;
869 }
Chris Lattner7561d482010-03-14 02:33:54 +0000870 case ISD::EH_LABEL: {
871 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
872 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
873 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
874 break;
875 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000876
Nadav Rotemc05d3062012-09-06 09:17:37 +0000877 case ISD::LIFETIME_START:
878 case ISD::LIFETIME_END: {
879 unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ?
880 TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END;
881
882 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1));
883 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp))
884 .addFrameIndex(FI->getIndex());
885 break;
886 }
887
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000888 case ISD::INLINEASM: {
889 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000890 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000891 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000892
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000893 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000894 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000895 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000896
897 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000898 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
899 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000900 MI->addOperand(MachineOperand::CreateES(AsmStr));
Andrew Trick3af7a672011-09-20 03:06:13 +0000901
Chad Rosierdaeec8f2012-10-30 20:39:19 +0000902 // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
903 // bits.
Evan Chengc36b7062011-01-07 23:50:32 +0000904 int64_t ExtraInfo =
905 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000906 getZExtValue();
Evan Chengc36b7062011-01-07 23:50:32 +0000907 MI->addOperand(MachineOperand::CreateImm(ExtraInfo));
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000908
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000909 // Remember to operand index of the group flags.
910 SmallVector<unsigned, 8> GroupIdx;
911
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000912 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000913 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000914 unsigned Flags =
915 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000916 const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000917
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000918 GroupIdx.push_back(MI->getNumOperands());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000919 MI->addOperand(MachineOperand::CreateImm(Flags));
920 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000921
Chris Lattnerdecc2672010-04-07 05:20:54 +0000922 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000923 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000924 case InlineAsm::Kind_RegDef:
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000925 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000926 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000927 // FIXME: Add dead flags for physical and virtual registers defined.
928 // For now, mark physical register defs as implicit to help fast
929 // regalloc. This makes inline asm look a lot like calls.
930 MI->addOperand(MachineOperand::CreateReg(Reg, true,
931 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000932 }
933 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000934 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000935 case InlineAsm::Kind_Clobber:
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000936 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dale Johannesen913d3df2008-09-12 17:49:03 +0000937 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000938 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true,
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000939 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg),
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000940 /*isKill=*/ false,
941 /*isDead=*/ false,
942 /*isUndef=*/false,
943 /*isEarlyClobber=*/ true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000944 }
945 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000946 case InlineAsm::Kind_RegUse: // Use of register.
947 case InlineAsm::Kind_Imm: // Immediate.
948 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000949 // The addressing mode has been selected, just add all of the
950 // operands to the machine instruction.
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000951 for (unsigned j = 0; j != NumVals; ++j, ++i)
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000952 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap,
953 /*IsDebug=*/false, IsClone, IsCloned);
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000954
955 // Manually set isTied bits.
956 if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) {
957 unsigned DefGroup = 0;
958 if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) {
959 unsigned DefIdx = GroupIdx[DefGroup] + 1;
960 unsigned UseIdx = GroupIdx.back() + 1;
Jakob Stoklund Olesen94083142012-08-31 20:50:53 +0000961 for (unsigned j = 0; j != NumVals; ++j)
962 MI->tieOperands(DefIdx + j, UseIdx + j);
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000963 }
964 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000965 break;
966 }
967 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000968
Chris Lattnercf9a4152010-04-07 05:38:05 +0000969 // Get the mdnode from the asm if it exists and add it to the instruction.
970 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
971 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000972 if (MD)
973 MI->addOperand(MachineOperand::CreateMetadata(MD));
Andrew Trick3af7a672011-09-20 03:06:13 +0000974
Dan Gohmanbcea8592009-10-10 01:32:21 +0000975 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000976 break;
977 }
978 }
979}
980
Dan Gohmanbcea8592009-10-10 01:32:21 +0000981/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
982/// at the given position in the given block.
983InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
984 MachineBasicBlock::iterator insertpos)
985 : MF(mbb->getParent()),
986 MRI(&MF->getRegInfo()),
987 TM(&MF->getTarget()),
988 TII(TM->getInstrInfo()),
989 TRI(TM->getRegisterInfo()),
990 TLI(TM->getTargetLowering()),
991 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000992}