blob: 98ad0466f0b36c483096c21303fe3726c135886a [file] [log] [blame]
Dan Gohmanb8120772009-10-10 01:32:21 +00001//==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==//
Dan Gohmanb10f1a52008-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 Gohmanb8120772009-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 Gohmanb10f1a52008-09-03 16:01:59 +000013//
14//===----------------------------------------------------------------------===//
15
Dan Gohmanb8120772009-10-10 01:32:21 +000016#define DEBUG_TYPE "instr-emitter"
17#include "InstrEmitter.h"
Evan Cheng00fd0b62010-03-14 19:56:39 +000018#include "SDNodeDbgValue.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/Statistic.h"
Dan Gohmanb10f1a52008-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"
Andrew Trick1f54e802013-11-19 05:05:43 +000024#include "llvm/CodeGen/StackMaps.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/DataLayout.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000026#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000027#include "llvm/Support/ErrorHandling.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000028#include "llvm/Support/MathExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetLowering.h"
31#include "llvm/Target/TargetMachine.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000032using namespace llvm;
33
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +000034/// MinRCSize - Smallest register class we allow when constraining virtual
35/// registers. If satisfying all register class constraints would require
36/// using a smaller register class, emit a COPY to a new virtual register
37/// instead.
38const unsigned MinRCSize = 4;
39
Dan Gohmanb8120772009-10-10 01:32:21 +000040/// CountResults - The results of target nodes have register or immediate
Chris Lattner11a33812010-12-23 17:24:32 +000041/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanb8120772009-10-10 01:32:21 +000042/// not go into the resulting MachineInstr).
43unsigned InstrEmitter::CountResults(SDNode *Node) {
44 unsigned N = Node->getNumValues();
Chris Lattner3e5fbd72010-12-21 02:38:05 +000045 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanb8120772009-10-10 01:32:21 +000046 --N;
47 if (N && Node->getValueType(N - 1) == MVT::Other)
48 --N; // Skip over chain result.
49 return N;
50}
51
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000052/// countOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner11a33812010-12-23 17:24:32 +000053/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanb8120772009-10-10 01:32:21 +000054/// Compute the number of actual operands that will go into the resulting
55/// MachineInstr.
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000056///
57/// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding
58/// the chain and glue. These operands may be implicit on the machine instr.
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +000059static unsigned countOperands(SDNode *Node, unsigned NumExpUses,
60 unsigned &NumImpUses) {
Dan Gohmanb8120772009-10-10 01:32:21 +000061 unsigned N = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +000062 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanb8120772009-10-10 01:32:21 +000063 --N;
64 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
65 --N; // Ignore chain if it exists.
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000066
67 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +000068 NumImpUses = N - NumExpUses;
69 for (unsigned I = N; I > NumExpUses; --I) {
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000070 if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1)))
71 continue;
72 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1)))
73 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg()))
74 continue;
75 NumImpUses = N - I;
76 break;
77 }
78
Dan Gohmanb8120772009-10-10 01:32:21 +000079 return N;
80}
81
Dan Gohmanb10f1a52008-09-03 16:01:59 +000082/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
83/// implicit physical register output.
Dan Gohmanb8120772009-10-10 01:32:21 +000084void InstrEmitter::
Chris Lattner54b8ebc2009-06-26 05:39:02 +000085EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
86 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +000087 unsigned VRBase = 0;
88 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
89 // Just use the input register directly!
90 SDValue Op(Node, ResNo);
91 if (IsClone)
92 VRBaseMap.erase(Op);
93 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +000094 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +000095 assert(isNew && "Node emitted out of order - early");
96 return;
97 }
98
99 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
100 // the CopyToReg'd destination register instead of creating a new vreg.
101 bool MatchReg = true;
Evan Chenga904f462008-09-16 23:12:11 +0000102 const TargetRegisterClass *UseRC = NULL;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000103 MVT VT = Node->getSimpleValueType(ResNo);
Jakob Stoklund Olesenc826df92011-06-16 22:50:38 +0000104
105 // Stick to the preferred register classes for legal types.
106 if (TLI->isTypeLegal(VT))
107 UseRC = TLI->getRegClassFor(VT);
108
Evan Cheng968e2e72009-01-16 20:57:18 +0000109 if (!IsClone && !IsCloned)
Jim Grosbach5d049b92014-04-11 01:13:16 +0000110 for (SDNode *User : Node->uses()) {
Evan Cheng968e2e72009-01-16 20:57:18 +0000111 bool Match = true;
Andrew Trick53df4b62011-09-20 03:06:13 +0000112 if (User->getOpcode() == ISD::CopyToReg &&
Evan Cheng968e2e72009-01-16 20:57:18 +0000113 User->getOperand(2).getNode() == Node &&
114 User->getOperand(2).getResNo() == ResNo) {
115 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
116 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
117 VRBase = DestReg;
118 Match = false;
119 } else if (DestReg != SrcReg)
120 Match = false;
121 } else {
122 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
123 SDValue Op = User->getOperand(i);
124 if (Op.getNode() != Node || Op.getResNo() != ResNo)
125 continue;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000126 MVT VT = Node->getSimpleValueType(Op.getResNo());
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000127 if (VT == MVT::Other || VT == MVT::Glue)
Evan Cheng968e2e72009-01-16 20:57:18 +0000128 continue;
129 Match = false;
130 if (User->isMachineOpcode()) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000131 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner76673322009-07-29 21:36:49 +0000132 const TargetRegisterClass *RC = 0;
Andrew Trick32aea352012-05-03 01:14:37 +0000133 if (i+II.getNumDefs() < II.getNumOperands()) {
134 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000135 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trick32aea352012-05-03 01:14:37 +0000136 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000137 if (!UseRC)
138 UseRC = RC;
Dan Gohman60a446a2009-04-13 15:38:05 +0000139 else if (RC) {
Jakob Stoklund Olesen1352be22011-09-30 22:18:51 +0000140 const TargetRegisterClass *ComRC =
141 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesen7f91fee2009-08-16 17:40:59 +0000142 // If multiple uses expect disjoint register classes, we emit
143 // copies in AddRegisterOperand.
144 if (ComRC)
145 UseRC = ComRC;
Dan Gohman60a446a2009-04-13 15:38:05 +0000146 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000147 }
Evan Chenga904f462008-09-16 23:12:11 +0000148 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000149 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000150 MatchReg &= Match;
151 if (VRBase)
152 break;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000153 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000154
155 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindola38a7d7c2010-06-29 14:02:34 +0000156 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc826df92011-06-16 22:50:38 +0000157
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000158 // Figure out the register class to create for the destreg.
159 if (VRBase) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000160 DstRC = MRI->getRegClass(VRBase);
Evan Chenga904f462008-09-16 23:12:11 +0000161 } else if (UseRC) {
162 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
163 DstRC = UseRC;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000164 } else {
Evan Chenga904f462008-09-16 23:12:11 +0000165 DstRC = TLI->getRegClassFor(VT);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000166 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000167
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000168 // If all uses are reading from the src physical register and copying the
169 // register is either impossible or very expensive, then don't create a copy.
170 if (MatchReg && SrcRC->getCopyCost() < 0) {
171 VRBase = SrcReg;
172 } else {
173 // Create the reg, emit the copy.
Dan Gohmanb8120772009-10-10 01:32:21 +0000174 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000175 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
176 VRBase).addReg(SrcReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000177 }
178
179 SDValue Op(Node, ResNo);
180 if (IsClone)
181 VRBaseMap.erase(Op);
182 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000183 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000184 assert(isNew && "Node emitted out of order - early");
185}
186
187/// getDstOfCopyToRegUse - If the only use of the specified result number of
188/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanb8120772009-10-10 01:32:21 +0000189unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
190 unsigned ResNo) const {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000191 if (!Node->hasOneUse())
192 return 0;
193
194 SDNode *User = *Node->use_begin();
Andrew Trick53df4b62011-09-20 03:06:13 +0000195 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000196 User->getOperand(2).getNode() == Node &&
197 User->getOperand(2).getResNo() == ResNo) {
198 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
199 if (TargetRegisterInfo::isVirtualRegister(Reg))
200 return Reg;
201 }
202 return 0;
203}
204
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000205void InstrEmitter::CreateVirtualRegisters(SDNode *Node,
206 MachineInstrBuilder &MIB,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000207 const MCInstrDesc &II,
Evan Cheng968e2e72009-01-16 20:57:18 +0000208 bool IsClone, bool IsCloned,
Evan Chenged74d8a2009-01-09 22:44:02 +0000209 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattnerb06015a2010-02-09 19:54:29 +0000210 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000211 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
212
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000213 unsigned NumResults = CountResults(Node);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000214 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
215 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohman60a446a2009-04-13 15:38:05 +0000216 // is a vreg in the same register class, use the CopyToReg'd destination
217 // register instead of creating a new vreg.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000218 unsigned VRBase = 0;
Andrew Trick32aea352012-05-03 01:14:37 +0000219 const TargetRegisterClass *RC =
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000220 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Jakob Stoklund Olesenb6b35a42014-01-14 06:18:38 +0000221 // Always let the value type influence the used register class. The
222 // constraints on the instruction may be too lax to represent the value
223 // type correctly. For example, a 64-bit float (X86::FR64) can't live in
224 // the 32-bit float super-class (X86::FR32).
225 if (i < NumResults && TLI->isTypeLegal(Node->getSimpleValueType(i))) {
226 const TargetRegisterClass *VTRC =
227 TLI->getRegClassFor(Node->getSimpleValueType(i));
228 if (RC)
229 VTRC = TRI->getCommonSubClass(RC, VTRC);
230 if (VTRC)
231 RC = VTRC;
232 }
233
Evan Chengede2ce72009-07-11 01:06:50 +0000234 if (II.OpInfo[i].isOptionalDef()) {
235 // Optional def must be a physical register.
236 unsigned NumResults = CountResults(Node);
237 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
238 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000239 MIB.addReg(VRBase, RegState::Define);
Evan Chengede2ce72009-07-11 01:06:50 +0000240 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000241
Evan Chengede2ce72009-07-11 01:06:50 +0000242 if (!VRBase && !IsClone && !IsCloned)
Jim Grosbach5d049b92014-04-11 01:13:16 +0000243 for (SDNode *User : Node->uses()) {
Andrew Trick53df4b62011-09-20 03:06:13 +0000244 if (User->getOpcode() == ISD::CopyToReg &&
Evan Cheng968e2e72009-01-16 20:57:18 +0000245 User->getOperand(2).getNode() == Node &&
246 User->getOperand(2).getResNo() == i) {
247 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
248 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000249 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000250 if (RegRC == RC) {
251 VRBase = Reg;
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000252 MIB.addReg(VRBase, RegState::Define);
Dan Gohman60a446a2009-04-13 15:38:05 +0000253 break;
254 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000255 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000256 }
257 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000258
259 // Create the result registers for this node and add the result regs to
260 // the machine instruction.
261 if (VRBase == 0) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000262 assert(RC && "Isn't a register operand!");
Dan Gohmanb8120772009-10-10 01:32:21 +0000263 VRBase = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000264 MIB.addReg(VRBase, RegState::Define);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000265 }
266
267 SDValue Op(Node, i);
Evan Chenged74d8a2009-01-09 22:44:02 +0000268 if (IsClone)
269 VRBaseMap.erase(Op);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000270 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000271 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000272 assert(isNew && "Node emitted out of order - early");
273 }
274}
275
276/// getVR - Return the virtual register corresponding to the specified result
277/// of the specified node.
Dan Gohmanb8120772009-10-10 01:32:21 +0000278unsigned InstrEmitter::getVR(SDValue Op,
279 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000280 if (Op.isMachineOpcode() &&
Chris Lattnerb06015a2010-02-09 19:54:29 +0000281 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000282 // Add an IMPLICIT_DEF instruction before every use.
283 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Cheng6cc775f2011-06-28 19:10:37 +0000284 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000285 // does not include operand register class info.
286 if (!VReg) {
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000287 const TargetRegisterClass *RC =
288 TLI->getRegClassFor(Op.getSimpleValueType());
Dan Gohmanb8120772009-10-10 01:32:21 +0000289 VReg = MRI->createVirtualRegister(RC);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000290 }
Dan Gohmanfbdba812010-07-10 13:55:45 +0000291 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattnerb06015a2010-02-09 19:54:29 +0000292 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000293 return VReg;
294 }
295
296 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
297 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
298 return I->second;
299}
300
Bill Wendlingf8244892010-08-30 04:36:50 +0000301
Dan Gohman60a446a2009-04-13 15:38:05 +0000302/// AddRegisterOperand - Add the specified register as an operand to the
303/// specified machine instr. Insert register copies if the register is
304/// not in the required register class.
305void
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000306InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB,
307 SDValue Op,
Dan Gohmanb8120772009-10-10 01:32:21 +0000308 unsigned IIOpNum,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000309 const MCInstrDesc *II,
Evan Cheng563fe3c2010-03-25 01:38:16 +0000310 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000311 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson9f944592009-08-11 20:47:22 +0000312 assert(Op.getValueType() != MVT::Other &&
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000313 Op.getValueType() != MVT::Glue &&
Chris Lattner11a33812010-12-23 17:24:32 +0000314 "Chain and glue operands should occur at end of operand list!");
Dan Gohman60a446a2009-04-13 15:38:05 +0000315 // Get/emit the operand.
316 unsigned VReg = getVR(Op, VRBaseMap);
317 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
318
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000319 const MCInstrDesc &MCID = MIB->getDesc();
Evan Cheng6cc775f2011-06-28 19:10:37 +0000320 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
321 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohman60a446a2009-04-13 15:38:05 +0000322
323 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesene92e5ee2011-09-22 21:39:34 +0000324 // a new virtual register and copy the value into it, but first attempt to
325 // shrink VReg's register class within reason. For example, if VReg == GR32
326 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohman60a446a2009-04-13 15:38:05 +0000327 if (II) {
Chris Lattner76673322009-07-29 21:36:49 +0000328 const TargetRegisterClass *DstRC = 0;
329 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000330 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Jakob Stoklund Olesene92e5ee2011-09-22 21:39:34 +0000331 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000332 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000333 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
334 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000335 VReg = NewVReg;
336 }
337 }
338
Dan Gohmanac555102010-04-30 00:08:21 +0000339 // If this value has only one use, that use is a kill. This is a
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000340 // conservative approximation. InstrEmitter does trivial coalescing
341 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman2f277c82010-05-14 22:01:14 +0000342 // Avoid kill flags on Schedule cloned nodes, since there will be
343 // multiple uses.
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000344 // Tied operands are never killed, so we need to check that. And that
345 // means we need to determine the index of the operand.
346 bool isKill = Op.hasOneUse() &&
347 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman2f277c82010-05-14 22:01:14 +0000348 !IsDebug &&
349 !(IsClone || IsCloned);
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000350 if (isKill) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000351 unsigned Idx = MIB->getNumOperands();
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000352 while (Idx > 0 &&
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000353 MIB->getOperand(Idx-1).isReg() &&
354 MIB->getOperand(Idx-1).isImplicit())
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000355 --Idx;
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000356 bool isTied = MCID.getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000357 if (isTied)
358 isKill = false;
359 }
Dan Gohmanac555102010-04-30 00:08:21 +0000360
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000361 MIB.addReg(VReg, getDefRegState(isOptDef) | getKillRegState(isKill) |
362 getDebugRegState(IsDebug));
Dan Gohman60a446a2009-04-13 15:38:05 +0000363}
364
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000365/// AddOperand - Add the specified operand to the specified machine instr. II
366/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000367/// operand number (in the II) that we are adding.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000368void InstrEmitter::AddOperand(MachineInstrBuilder &MIB,
369 SDValue Op,
Dan Gohmanb8120772009-10-10 01:32:21 +0000370 unsigned IIOpNum,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000371 const MCInstrDesc *II,
Evan Cheng563fe3c2010-03-25 01:38:16 +0000372 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000373 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000374 if (Op.isMachineOpcode()) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000375 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000376 IsDebug, IsClone, IsCloned);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000377 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000378 MIB.addImm(C->getSExtValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000379 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000380 MIB.addFPImm(F->getConstantFPValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000381 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000382 // Turn additional physreg operands into implicit uses on non-variadic
383 // instructions. This is used by call and return instructions passing
384 // arguments in registers.
385 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000386 MIB.addReg(R->getReg(), getImplRegState(Imp));
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +0000387 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000388 MIB.addRegMask(RM->getRegMask());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000389 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000390 MIB.addGlobalAddress(TGA->getGlobal(), TGA->getOffset(),
391 TGA->getTargetFlags());
Dan Gohman60a446a2009-04-13 15:38:05 +0000392 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000393 MIB.addMBB(BBNode->getBasicBlock());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000394 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000395 MIB.addFrameIndex(FI->getIndex());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000396 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000397 MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000398 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
399 int Offset = CP->getOffset();
400 unsigned Align = CP->getAlignment();
Chris Lattner229907c2011-07-18 04:54:35 +0000401 Type *Type = CP->getType();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000402 // MachineConstantPool wants an explicit alignment.
403 if (Align == 0) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000404 Align = TM->getDataLayout()->getPrefTypeAlignment(Type);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000405 if (Align == 0) {
406 // Alignment of vector types. FIXME!
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000407 Align = TM->getDataLayout()->getTypeAllocSize(Type);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000408 }
409 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000410
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000411 unsigned Idx;
Dan Gohmanb8120772009-10-10 01:32:21 +0000412 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000413 if (CP->isMachineConstantPoolEntry())
Dan Gohmanb8120772009-10-10 01:32:21 +0000414 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000415 else
Dan Gohmanb8120772009-10-10 01:32:21 +0000416 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000417 MIB.addConstantPoolIndex(Idx, Offset, CP->getTargetFlags());
Bill Wendling24c79f22008-09-16 21:48:12 +0000418 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000419 MIB.addExternalSymbol(ES->getSymbol(), ES->getTargetFlags());
Dan Gohman6c938802009-10-30 01:27:03 +0000420 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000421 MIB.addBlockAddress(BA->getBlockAddress(),
422 BA->getOffset(),
423 BA->getTargetFlags());
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +0000424 } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000425 MIB.addTargetIndex(TI->getIndex(), TI->getOffset(), TI->getTargetFlags());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000426 } else {
Owen Anderson9f944592009-08-11 20:47:22 +0000427 assert(Op.getValueType() != MVT::Other &&
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000428 Op.getValueType() != MVT::Glue &&
Chris Lattner11a33812010-12-23 17:24:32 +0000429 "Chain and glue operands should occur at end of operand list!");
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000430 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000431 IsDebug, IsClone, IsCloned);
Dan Gohman60a446a2009-04-13 15:38:05 +0000432 }
433}
434
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000435unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000436 MVT VT, DebugLoc DL) {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000437 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
438 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
439
440 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
441 // within reason.
442 if (RC && RC != VRC)
443 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
444
445 // VReg has been adjusted. It can be used with SubIdx operands now.
446 if (RC)
447 return VReg;
448
449 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
450 // register instead.
451 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
452 assert(RC && "No legal register class for VT supports that SubIdx");
453 unsigned NewReg = MRI->createVirtualRegister(RC);
454 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
455 .addReg(VReg);
456 return NewReg;
457}
458
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000459/// EmitSubregNode - Generate machine code for subreg nodes.
460///
Andrew Trick53df4b62011-09-20 03:06:13 +0000461void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman2f277c82010-05-14 22:01:14 +0000462 DenseMap<SDValue, unsigned> &VRBaseMap,
463 bool IsClone, bool IsCloned) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000464 unsigned VRBase = 0;
465 unsigned Opc = Node->getMachineOpcode();
Andrew Trick53df4b62011-09-20 03:06:13 +0000466
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000467 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
468 // the CopyToReg'd destination register instead of creating a new vreg.
Jim Grosbach5d049b92014-04-11 01:13:16 +0000469 for (SDNode *User : Node->uses()) {
Andrew Trick53df4b62011-09-20 03:06:13 +0000470 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000471 User->getOperand(2).getNode() == Node) {
472 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
473 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
474 VRBase = DestReg;
475 break;
476 }
477 }
478 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000479
Chris Lattnerb06015a2010-02-09 19:54:29 +0000480 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000481 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
482 // constraints on the %dst register, COPY can target all legal register
483 // classes.
Dan Gohmaneffb8942008-09-12 16:56:44 +0000484 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000485 const TargetRegisterClass *TRC =
486 TLI->getRegClassFor(Node->getSimpleValueType(0));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000487
Dan Gohman60a446a2009-04-13 15:38:05 +0000488 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng260acf32011-01-05 23:06:49 +0000489 MachineInstr *DefMI = MRI->getVRegDef(VReg);
490 unsigned SrcReg, DstReg, DefSubIdx;
491 if (DefMI &&
492 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Chengb1712282012-07-11 18:55:07 +0000493 SubIdx == DefSubIdx &&
494 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng260acf32011-01-05 23:06:49 +0000495 // Optimize these:
496 // r1025 = s/zext r1024, 4
497 // r1026 = extract_subreg r1025, 4
498 // to a copy
499 // r1026 = copy r1024
Evan Cheng260acf32011-01-05 23:06:49 +0000500 VRBase = MRI->createVirtualRegister(TRC);
501 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
502 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen3e3cdec2012-06-29 21:00:03 +0000503 MRI->clearKillFlags(SrcReg);
Evan Cheng260acf32011-01-05 23:06:49 +0000504 } else {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000505 // VReg may not support a SubIdx sub-register, and we may need to
506 // constrain its register class or issue a COPY to a compatible register
507 // class.
508 VReg = ConstrainForSubReg(VReg, SubIdx,
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000509 Node->getOperand(0).getSimpleValueType(),
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000510 Node->getDebugLoc());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000511
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000512 // Create the destreg if it is missing.
513 if (VRBase == 0)
514 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng260acf32011-01-05 23:06:49 +0000515
516 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000517 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
518 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000519 }
Chris Lattnerb06015a2010-02-09 19:54:29 +0000520 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
521 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000522 SDValue N0 = Node->getOperand(0);
523 SDValue N1 = Node->getOperand(1);
524 SDValue N2 = Node->getOperand(2);
Dan Gohmaneffb8942008-09-12 16:56:44 +0000525 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmane5cd1fc2009-04-14 22:17:14 +0000526
Jakob Stoklund Olesen8ff52c42011-10-05 18:31:00 +0000527 // Figure out the register class to create for the destreg. It should be
528 // the largest legal register class supporting SubIdx sub-registers.
529 // RegisterCoalescer will constrain it further if it decides to eliminate
530 // the INSERT_SUBREG instruction.
531 //
532 // %dst = INSERT_SUBREG %src, %sub, SubIdx
533 //
534 // is lowered by TwoAddressInstructionPass to:
535 //
536 // %dst = COPY %src
537 // %dst:SubIdx = COPY %sub
538 //
539 // There is no constraint on the %src register class.
540 //
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000541 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0));
Jakob Stoklund Olesen8ff52c42011-10-05 18:31:00 +0000542 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
543 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
544
545 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanb8120772009-10-10 01:32:21 +0000546 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohmane5cd1fc2009-04-14 22:17:14 +0000547
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000548 // Create the insert_subreg or subreg_to_reg machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000549 MachineInstrBuilder MIB =
550 BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase);
Andrew Trick53df4b62011-09-20 03:06:13 +0000551
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000552 // If creating a subreg_to_reg, then the first input operand
553 // is an implicit value immediate, otherwise it's a register
Chris Lattnerb06015a2010-02-09 19:54:29 +0000554 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000555 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000556 MIB.addImm(SD->getZExtValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000557 } else
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000558 AddOperand(MIB, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000559 IsClone, IsCloned);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000560 // Add the subregster being inserted
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000561 AddOperand(MIB, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000562 IsClone, IsCloned);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000563 MIB.addImm(SubIdx);
564 MBB->insert(InsertPos, MIB);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000565 } else
Torok Edwinfbcc6632009-07-14 16:55:14 +0000566 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick53df4b62011-09-20 03:06:13 +0000567
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000568 SDValue Op(Node, 0);
569 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000570 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000571 assert(isNew && "Node emitted out of order - early");
572}
573
Dan Gohman6c142632009-04-13 21:06:25 +0000574/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
575/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohman60a446a2009-04-13 15:38:05 +0000576/// register is constrained to be in a particular register class.
577///
578void
Dan Gohmanb8120772009-10-10 01:32:21 +0000579InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
580 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman60a446a2009-04-13 15:38:05 +0000581 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohman60a446a2009-04-13 15:38:05 +0000582
Dan Gohman60a446a2009-04-13 15:38:05 +0000583 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000584 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trick32aea352012-05-03 01:14:37 +0000585 const TargetRegisterClass *DstRC =
586 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanb8120772009-10-10 01:32:21 +0000587 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000588 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
589 NewVReg).addReg(VReg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000590
591 SDValue Op(Node, 0);
592 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000593 (void)isNew; // Silence compiler warning.
Dan Gohman60a446a2009-04-13 15:38:05 +0000594 assert(isNew && "Node emitted out of order - early");
595}
596
Evan Chengf869d9a2010-05-04 00:22:40 +0000597/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
598///
599void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman2f277c82010-05-14 22:01:14 +0000600 DenseMap<SDValue, unsigned> &VRBaseMap,
601 bool IsClone, bool IsCloned) {
Owen Anderson5fc8b772011-06-16 18:17:13 +0000602 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
603 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trick32aea352012-05-03 01:14:37 +0000604 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000605 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
606 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II, NewVReg);
Evan Chengf869d9a2010-05-04 00:22:40 +0000607 unsigned NumOps = Node->getNumOperands();
Owen Anderson5fc8b772011-06-16 18:17:13 +0000608 assert((NumOps & 1) == 1 &&
609 "REG_SEQUENCE must have an odd number of operands!");
Owen Anderson5fc8b772011-06-16 18:17:13 +0000610 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengf869d9a2010-05-04 00:22:40 +0000611 SDValue Op = Node->getOperand(i);
Owen Anderson5fc8b772011-06-16 18:17:13 +0000612 if ((i & 1) == 0) {
Pete Cooperc52eeed2012-01-18 04:16:16 +0000613 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
614 // Skip physical registers as they don't have a vreg to get and we'll
615 // insert copies for them in TwoAddressInstructionPass anyway.
616 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
617 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
618 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
619 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
620 const TargetRegisterClass *SRC =
Evan Chenge7fc64a2010-05-18 20:03:28 +0000621 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Cooperc52eeed2012-01-18 04:16:16 +0000622 if (SRC && SRC != RC) {
623 MRI->setRegClass(NewVReg, SRC);
624 RC = SRC;
625 }
Evan Cheng45b3f702010-05-18 20:07:47 +0000626 }
Evan Chengf869d9a2010-05-04 00:22:40 +0000627 }
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000628 AddOperand(MIB, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000629 IsClone, IsCloned);
Evan Chengf869d9a2010-05-04 00:22:40 +0000630 }
631
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000632 MBB->insert(InsertPos, MIB);
Evan Chengf869d9a2010-05-04 00:22:40 +0000633 SDValue Op(Node, 0);
634 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000635 (void)isNew; // Silence compiler warning.
Evan Chengf869d9a2010-05-04 00:22:40 +0000636 assert(isNew && "Node emitted out of order - early");
637}
638
Evan Cheng563fe3c2010-03-25 01:38:16 +0000639/// EmitDbgValue - Generate machine instruction for a dbg_value node.
640///
Dan Gohman8acc8f72010-04-30 19:35:33 +0000641MachineInstr *
642InstrEmitter::EmitDbgValue(SDDbgValue *SD,
643 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Cheng563fe3c2010-03-25 01:38:16 +0000644 uint64_t Offset = SD->getOffset();
645 MDNode* MDPtr = SD->getMDPtr();
646 DebugLoc DL = SD->getDebugLoc();
647
Dale Johannesen582565e2010-04-25 21:33:54 +0000648 if (SD->getKind() == SDDbgValue::FRAMEIX) {
649 // Stack address; this needs to be lowered in target-dependent fashion.
650 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
David Blaikie0252265b2013-06-16 20:34:15 +0000651 return BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE))
652 .addFrameIndex(SD->getFrameIx()).addImm(Offset).addMetadata(MDPtr);
Dale Johannesen582565e2010-04-25 21:33:54 +0000653 }
654 // Otherwise, we're going to create an instruction here.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000655 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000656 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
657 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesend1976e32010-04-06 21:59:56 +0000658 SDNode *Node = SD->getSDNode();
659 SDValue Op = SDValue(Node, SD->getResNo());
660 // It's possible we replaced this SDNode with other(s) and therefore
661 // didn't generate code for it. It's better to catch these cases where
662 // they happen and transfer the debug info, but trying to guarantee that
663 // in all cases would be very fragile; this is a safeguard for any
664 // that were missed.
665 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
666 if (I==VRBaseMap.end())
667 MIB.addReg(0U); // undef
668 else
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000669 AddOperand(MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000670 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000671 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000672 const Value *V = SD->getConst();
673 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patelf071d722011-06-24 20:46:11 +0000674 if (CI->getBitWidth() > 64)
675 MIB.addCImm(CI);
Dan Gohman7de01ec2010-05-07 22:19:08 +0000676 else
677 MIB.addImm(CI->getSExtValue());
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000678 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Cheng563fe3c2010-03-25 01:38:16 +0000679 MIB.addFPImm(CF);
Dale Johannesen49de0602010-03-10 22:13:47 +0000680 } else {
681 // Could be an Undef. In any case insert an Undef so we can see what we
682 // dropped.
Evan Cheng563fe3c2010-03-25 01:38:16 +0000683 MIB.addReg(0U);
Dale Johannesen49de0602010-03-10 22:13:47 +0000684 }
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000685 } else {
686 // Insert an Undef so we can see what we dropped.
Evan Cheng563fe3c2010-03-25 01:38:16 +0000687 MIB.addReg(0U);
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000688 }
Evan Cheng563fe3c2010-03-25 01:38:16 +0000689
Adrian Prantl418d1d12013-07-09 20:28:37 +0000690 if (Offset != 0) // Indirect addressing.
691 MIB.addImm(Offset);
692 else
693 MIB.addReg(0U, RegState::Debug);
694
695 MIB.addMetadata(MDPtr);
696
Evan Cheng563fe3c2010-03-25 01:38:16 +0000697 return &*MIB;
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000698}
699
Chris Lattnere2a504e2010-03-25 04:41:16 +0000700/// EmitMachineNode - Generate machine code for a target-specific node and
701/// needed dependencies.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000702///
Chris Lattnere2a504e2010-03-25 04:41:16 +0000703void InstrEmitter::
704EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohman25c16532010-05-01 00:01:06 +0000705 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattnere2a504e2010-03-25 04:41:16 +0000706 unsigned Opc = Node->getMachineOpcode();
Andrew Trick53df4b62011-09-20 03:06:13 +0000707
Chris Lattnere2a504e2010-03-25 04:41:16 +0000708 // Handle subreg insert/extract specially
Andrew Trick53df4b62011-09-20 03:06:13 +0000709 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattnere2a504e2010-03-25 04:41:16 +0000710 Opc == TargetOpcode::INSERT_SUBREG ||
711 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman2f277c82010-05-14 22:01:14 +0000712 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerddca7b02010-03-24 23:41:19 +0000713 return;
714 }
715
Chris Lattnere2a504e2010-03-25 04:41:16 +0000716 // Handle COPY_TO_REGCLASS specially.
717 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
718 EmitCopyToRegClassNode(Node, VRBaseMap);
719 return;
720 }
721
Evan Chengf869d9a2010-05-04 00:22:40 +0000722 // Handle REG_SEQUENCE specially.
723 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman2f277c82010-05-14 22:01:14 +0000724 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengf869d9a2010-05-04 00:22:40 +0000725 return;
726 }
727
Chris Lattnere2a504e2010-03-25 04:41:16 +0000728 if (Opc == TargetOpcode::IMPLICIT_DEF)
729 // We want a unique VR for each IMPLICIT_DEF use.
730 return;
Andrew Trick53df4b62011-09-20 03:06:13 +0000731
Evan Cheng6cc775f2011-06-28 19:10:37 +0000732 const MCInstrDesc &II = TII->get(Opc);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000733 unsigned NumResults = CountResults(Node);
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000734 unsigned NumDefs = II.getNumDefs();
Craig Topper840beec2014-04-04 05:16:06 +0000735 const MCPhysReg *ScratchRegs = NULL;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000736
Andrew Trickfbb278c2014-03-05 07:08:16 +0000737 // Handle STACKMAP and PATCHPOINT specially and then use the generic code.
738 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
739 // Stackmaps do not have arguments and do not preserve their calling
740 // convention. However, to simplify runtime support, they clobber the same
741 // scratch registers as AnyRegCC.
742 unsigned CC = CallingConv::AnyReg;
743 if (Opc == TargetOpcode::PATCHPOINT) {
744 CC = Node->getConstantOperandVal(PatchPointOpers::CCPos);
745 NumDefs = NumResults;
746 }
Juergen Ributzka87ed9062013-11-09 01:51:33 +0000747 ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC);
748 }
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000749
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000750 unsigned NumImpUses = 0;
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +0000751 unsigned NodeOperands =
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000752 countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses);
753 bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=0;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000754#ifndef NDEBUG
755 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner4690af82010-03-25 05:40:48 +0000756 if (II.isVariadic())
757 assert(NumMIOperands >= II.getNumOperands() &&
758 "Too few operands for a variadic node!");
759 else
760 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000761 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
762 NumImpUses &&
Chris Lattner4690af82010-03-25 05:40:48 +0000763 "#operands for dag node doesn't match .td file!");
Chris Lattnere2a504e2010-03-25 04:41:16 +0000764#endif
765
766 // Create the new machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000767 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohman86936502010-06-18 23:28:01 +0000768
Chris Lattnere2a504e2010-03-25 04:41:16 +0000769 // Add result register values for things that are defined by this
770 // instruction.
771 if (NumResults)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000772 CreateVirtualRegisters(Node, MIB, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick53df4b62011-09-20 03:06:13 +0000773
Chris Lattnere2a504e2010-03-25 04:41:16 +0000774 // Emit all of the actual operands of this instruction, adding them to the
775 // instruction as appropriate.
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000776 bool HasOptPRefs = NumDefs > NumResults;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000777 assert((!HasOptPRefs || !HasPhysRegOuts) &&
778 "Unable to cope with optional defs and phys regs defs!");
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000779 unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000780 for (unsigned i = NumSkip; i != NodeOperands; ++i)
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000781 AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II,
Dan Gohman2f277c82010-05-14 22:01:14 +0000782 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000783
Juergen Ributzka87ed9062013-11-09 01:51:33 +0000784 // Add scratch registers as implicit def and early clobber
785 if (ScratchRegs)
786 for (unsigned i = 0; ScratchRegs[i]; ++i)
787 MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine |
788 RegState::EarlyClobber);
789
Chris Lattnere2a504e2010-03-25 04:41:16 +0000790 // Transfer all of the memory reference descriptions of this instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000791 MIB.setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
Chris Lattnere2a504e2010-03-25 04:41:16 +0000792 cast<MachineSDNode>(Node)->memoperands_end());
793
Dan Gohman34396292010-07-06 20:24:04 +0000794 // Insert the instruction into position in the block. This needs to
795 // happen before any custom inserter hook is called so that the
796 // hook knows where in the block to insert the replacement code.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000797 MBB->insert(InsertPos, MIB);
Dan Gohman34396292010-07-06 20:24:04 +0000798
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000799 // The MachineInstr may also define physregs instead of virtregs. These
800 // physreg values can reach other instructions in different ways:
801 //
802 // 1. When there is a use of a Node value beyond the explicitly defined
803 // virtual registers, we emit a CopyFromReg for one of the implicitly
804 // defined physregs. This only happens when HasPhysRegOuts is true.
805 //
806 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
807 //
808 // 3. A glued instruction may implicitly use a physreg.
809 //
810 // 4. A glued instruction may use a RegisterSDNode operand.
811 //
812 // Collect all the used physreg defs, and make sure that any unused physreg
813 // defs are marked as dead.
814 SmallVector<unsigned, 8> UsedRegs;
815
Eric Christopher1b93e7b2010-12-08 22:21:42 +0000816 // Additional results must be physical register defs.
Chris Lattnere2a504e2010-03-25 04:41:16 +0000817 if (HasPhysRegOuts) {
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000818 for (unsigned i = NumDefs; i < NumResults; ++i) {
819 unsigned Reg = II.getImplicitDefs()[i - NumDefs];
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000820 if (!Node->hasAnyUseOfValue(i))
821 continue;
822 // This implicitly defined physreg has a use.
823 UsedRegs.push_back(Reg);
824 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000825 }
826 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000827
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000828 // Scan the glue chain for any used physregs.
829 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
830 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
831 if (F->getOpcode() == ISD::CopyFromReg) {
832 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
833 continue;
Hal Finkelb9a3d612012-02-24 17:53:59 +0000834 } else if (F->getOpcode() == ISD::CopyToReg) {
835 // Skip CopyToReg nodes that are internal to the glue chain.
836 continue;
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000837 }
838 // Collect declared implicit uses.
839 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
840 UsedRegs.append(MCID.getImplicitUses(),
841 MCID.getImplicitUses() + MCID.getNumImplicitUses());
842 // In addition to declared implicit uses, we must also check for
843 // direct RegisterSDNode operands.
844 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
845 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
846 unsigned Reg = R->getReg();
847 if (TargetRegisterInfo::isPhysicalRegister(Reg))
848 UsedRegs.push_back(Reg);
849 }
Chris Lattner4690af82010-03-25 05:40:48 +0000850 }
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000851 }
852
853 // Finally mark unused registers as dead.
854 if (!UsedRegs.empty() || II.getImplicitDefs())
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000855 MIB->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Chenge6fba772011-08-30 19:09:48 +0000856
857 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick924123a2011-09-21 02:20:46 +0000858#ifdef NDEBUG
Andrew Trick52363bd2011-09-20 18:22:31 +0000859 if (II.hasPostISelHook())
Andrew Trick924123a2011-09-21 02:20:46 +0000860#endif
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000861 TLI->AdjustInstrPostInstrSelection(MIB, Node);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000862}
863
864/// EmitSpecialNode - Generate machine code for a target-independent node and
865/// needed dependencies.
866void InstrEmitter::
867EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
868 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000869 switch (Node->getOpcode()) {
870 default:
871#ifndef NDEBUG
Dan Gohmanb8120772009-10-10 01:32:21 +0000872 Node->dump();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000873#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +0000874 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000875 case ISD::EntryToken:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000876 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Chenge62288f2009-07-30 08:33:02 +0000877 case ISD::MERGE_VALUES:
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000878 case ISD::TokenFactor: // fall thru
879 break;
880 case ISD::CopyToReg: {
881 unsigned SrcReg;
882 SDValue SrcVal = Node->getOperand(2);
883 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
884 SrcReg = R->getReg();
885 else
886 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick53df4b62011-09-20 03:06:13 +0000887
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000888 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
889 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
890 break;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000891
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000892 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
893 DestReg).addReg(SrcReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000894 break;
895 }
896 case ISD::CopyFromReg: {
897 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Cheng968e2e72009-01-16 20:57:18 +0000898 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000899 break;
900 }
Chris Lattneree2fbbc2010-03-14 02:33:54 +0000901 case ISD::EH_LABEL: {
902 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
903 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
904 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
905 break;
906 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000907
Nadav Rotem7c277da2012-09-06 09:17:37 +0000908 case ISD::LIFETIME_START:
909 case ISD::LIFETIME_END: {
910 unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ?
911 TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END;
912
913 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1));
914 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp))
915 .addFrameIndex(FI->getIndex());
916 break;
917 }
918
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000919 case ISD::INLINEASM: {
920 unsigned NumOps = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000921 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner11a33812010-12-23 17:24:32 +0000922 --NumOps; // Ignore the glue operand.
Andrew Trick53df4b62011-09-20 03:06:13 +0000923
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000924 // Create the inline asm machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000925 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(),
926 TII->get(TargetOpcode::INLINEASM));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000927
928 // Add the asm string as an external symbol operand.
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000929 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
930 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000931 MIB.addExternalSymbol(AsmStr);
Andrew Trick53df4b62011-09-20 03:06:13 +0000932
Chad Rosier909f6a02012-10-30 20:39:19 +0000933 // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
934 // bits.
Evan Cheng6eb516d2011-01-07 23:50:32 +0000935 int64_t ExtraInfo =
936 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesen4d887f7c2010-07-02 20:16:09 +0000937 getZExtValue();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000938 MIB.addImm(ExtraInfo);
Dale Johannesen4d887f7c2010-07-02 20:16:09 +0000939
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000940 // Remember to operand index of the group flags.
941 SmallVector<unsigned, 8> GroupIdx;
942
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000943 // Add all of the operand registers to the instruction.
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000944 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmaneffb8942008-09-12 16:56:44 +0000945 unsigned Flags =
946 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000947 const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick53df4b62011-09-20 03:06:13 +0000948
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000949 GroupIdx.push_back(MIB->getNumOperands());
950 MIB.addImm(Flags);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000951 ++i; // Skip the ID value.
Andrew Trick53df4b62011-09-20 03:06:13 +0000952
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000953 switch (InlineAsm::getKind(Flags)) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000954 default: llvm_unreachable("Bad flags!");
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000955 case InlineAsm::Kind_RegDef:
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000956 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000957 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen8bc5eca2010-06-09 20:05:00 +0000958 // FIXME: Add dead flags for physical and virtual registers defined.
959 // For now, mark physical register defs as implicit to help fast
960 // regalloc. This makes inline asm look a lot like calls.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000961 MIB.addReg(Reg, RegState::Define |
962 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000963 }
964 break;
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000965 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesen537a3022011-06-27 04:08:33 +0000966 case InlineAsm::Kind_Clobber:
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000967 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dale Johannesen1f3ab862008-09-12 17:49:03 +0000968 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000969 MIB.addReg(Reg, RegState::Define | RegState::EarlyClobber |
970 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dale Johannesen1f3ab862008-09-12 17:49:03 +0000971 }
972 break;
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000973 case InlineAsm::Kind_RegUse: // Use of register.
974 case InlineAsm::Kind_Imm: // Immediate.
975 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000976 // The addressing mode has been selected, just add all of the
977 // operands to the machine instruction.
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000978 for (unsigned j = 0; j != NumVals; ++j, ++i)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000979 AddOperand(MIB, Node->getOperand(i), 0, 0, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000980 /*IsDebug=*/false, IsClone, IsCloned);
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000981
982 // Manually set isTied bits.
983 if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) {
984 unsigned DefGroup = 0;
985 if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) {
986 unsigned DefIdx = GroupIdx[DefGroup] + 1;
987 unsigned UseIdx = GroupIdx.back() + 1;
Jakob Stoklund Olesen5c8eda02012-08-31 20:50:53 +0000988 for (unsigned j = 0; j != NumVals; ++j)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000989 MIB->tieOperands(DefIdx + j, UseIdx + j);
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000990 }
991 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000992 break;
993 }
994 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000995
Chris Lattner51065562010-04-07 05:38:05 +0000996 // Get the mdnode from the asm if it exists and add it to the instruction.
997 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
998 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsona1e34302010-04-26 22:56:56 +0000999 if (MD)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001000 MIB.addMetadata(MD);
Andrew Trick53df4b62011-09-20 03:06:13 +00001001
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001002 MBB->insert(InsertPos, MIB);
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001003 break;
1004 }
1005 }
1006}
1007
Dan Gohmanb8120772009-10-10 01:32:21 +00001008/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
1009/// at the given position in the given block.
1010InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
1011 MachineBasicBlock::iterator insertpos)
1012 : MF(mbb->getParent()),
1013 MRI(&MF->getRegInfo()),
1014 TM(&MF->getTarget()),
1015 TII(TM->getInstrInfo()),
1016 TRI(TM->getRegisterInfo()),
1017 TLI(TM->getTargetLowering()),
1018 MBB(mbb), InsertPos(insertpos) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001019}