blob: 1c596b8c42eee47cf60950a357e5c271a3503c4a [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"
Bill Wendlingc00090b2013-11-19 06:43:35 +000024#include "llvm/CodeGen/StackMaps.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000025#include "llvm/IR/DataLayout.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000026#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000027#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000028#include "llvm/Support/MathExtras.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetLowering.h"
31#include "llvm/Target/TargetMachine.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000032using namespace llvm;
33
Jakob Stoklund Olesend2ed2d72011-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 Gohmanbcea8592009-10-10 01:32:21 +000040/// CountResults - The results of target nodes have register or immediate
Chris Lattner29d8f0c2010-12-23 17:24:32 +000041/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanbcea8592009-10-10 01:32:21 +000042/// not go into the resulting MachineInstr).
43unsigned InstrEmitter::CountResults(SDNode *Node) {
44 unsigned N = Node->getNumValues();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000045 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanbcea8592009-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 Olesen33a537a2012-07-04 23:53:23 +000052/// countOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner29d8f0c2010-12-23 17:24:32 +000053/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanbcea8592009-10-10 01:32:21 +000054/// Compute the number of actual operands that will go into the resulting
55/// MachineInstr.
Jakob Stoklund Olesen33a537a2012-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 Olesenbaa74e42012-08-24 20:52:42 +000059static unsigned countOperands(SDNode *Node, unsigned NumExpUses,
60 unsigned &NumImpUses) {
Dan Gohmanbcea8592009-10-10 01:32:21 +000061 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000062 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-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 Olesen33a537a2012-07-04 23:53:23 +000066
67 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +000068 NumImpUses = N - NumExpUses;
69 for (unsigned I = N; I > NumExpUses; --I) {
Jakob Stoklund Olesen33a537a2012-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 Gohmanbcea8592009-10-10 01:32:21 +000079 return N;
80}
81
Dan Gohman94b8d7e2008-09-03 16:01:59 +000082/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
83/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000084void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000085EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
86 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-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 Yasskin8e68c382010-12-23 00:58:24 +000094 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-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 Cheng1cd33272008-09-16 23:12:11 +0000102 const TargetRegisterClass *UseRC = NULL;
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000103 MVT VT = Node->getSimpleValueType(ResNo);
Jakob Stoklund Olesenc02a6fa2011-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 Chenge57187c2009-01-16 20:57:18 +0000109 if (!IsClone && !IsCloned)
110 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
111 UI != E; ++UI) {
112 SDNode *User = *UI;
113 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +0000114 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000115 User->getOperand(2).getNode() == Node &&
116 User->getOperand(2).getResNo() == ResNo) {
117 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
118 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
119 VRBase = DestReg;
120 Match = false;
121 } else if (DestReg != SrcReg)
122 Match = false;
123 } else {
124 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
125 SDValue Op = User->getOperand(i);
126 if (Op.getNode() != Node || Op.getResNo() != ResNo)
127 continue;
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000128 MVT VT = Node->getSimpleValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000129 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000130 continue;
131 Match = false;
132 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000133 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000134 const TargetRegisterClass *RC = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000135 if (i+II.getNumDefs() < II.getNumOperands()) {
136 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000137 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trickf12f6df2012-05-03 01:14:37 +0000138 }
Evan Chenge57187c2009-01-16 20:57:18 +0000139 if (!UseRC)
140 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000141 else if (RC) {
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +0000142 const TargetRegisterClass *ComRC =
143 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000144 // If multiple uses expect disjoint register classes, we emit
145 // copies in AddRegisterOperand.
146 if (ComRC)
147 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000148 }
Evan Chenge57187c2009-01-16 20:57:18 +0000149 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000150 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000151 }
Evan Chenge57187c2009-01-16 20:57:18 +0000152 MatchReg &= Match;
153 if (VRBase)
154 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000155 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000156
157 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000158 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000159
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000160 // Figure out the register class to create for the destreg.
161 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000162 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000163 } else if (UseRC) {
164 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
165 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000166 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000167 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000168 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000169
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000170 // If all uses are reading from the src physical register and copying the
171 // register is either impossible or very expensive, then don't create a copy.
172 if (MatchReg && SrcRC->getCopyCost() < 0) {
173 VRBase = SrcReg;
174 } else {
175 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000176 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000177 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
178 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000179 }
180
181 SDValue Op(Node, ResNo);
182 if (IsClone)
183 VRBaseMap.erase(Op);
184 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000185 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000186 assert(isNew && "Node emitted out of order - early");
187}
188
189/// getDstOfCopyToRegUse - If the only use of the specified result number of
190/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000191unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
192 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000193 if (!Node->hasOneUse())
194 return 0;
195
196 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000197 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000198 User->getOperand(2).getNode() == Node &&
199 User->getOperand(2).getResNo() == ResNo) {
200 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
201 if (TargetRegisterInfo::isVirtualRegister(Reg))
202 return Reg;
203 }
204 return 0;
205}
206
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000207void InstrEmitter::CreateVirtualRegisters(SDNode *Node,
208 MachineInstrBuilder &MIB,
Evan Chenge837dea2011-06-28 19:10:37 +0000209 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000210 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000211 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000212 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000213 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
214
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000215 unsigned NumResults = CountResults(Node);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000216 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
217 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000218 // is a vreg in the same register class, use the CopyToReg'd destination
219 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000220 unsigned VRBase = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000221 const TargetRegisterClass *RC =
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000222 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Stephen Hines36b56882014-04-23 16:57:46 -0700223 // Always let the value type influence the used register class. The
224 // constraints on the instruction may be too lax to represent the value
225 // type correctly. For example, a 64-bit float (X86::FR64) can't live in
226 // the 32-bit float super-class (X86::FR32).
227 if (i < NumResults && TLI->isTypeLegal(Node->getSimpleValueType(i))) {
228 const TargetRegisterClass *VTRC =
229 TLI->getRegClassFor(Node->getSimpleValueType(i));
230 if (RC)
231 VTRC = TRI->getCommonSubClass(RC, VTRC);
232 if (VTRC)
233 RC = VTRC;
234 }
235
Evan Cheng8955e932009-07-11 01:06:50 +0000236 if (II.OpInfo[i].isOptionalDef()) {
237 // Optional def must be a physical register.
238 unsigned NumResults = CountResults(Node);
239 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
240 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000241 MIB.addReg(VRBase, RegState::Define);
Evan Cheng8955e932009-07-11 01:06:50 +0000242 }
Evan Chenge57187c2009-01-16 20:57:18 +0000243
Evan Cheng8955e932009-07-11 01:06:50 +0000244 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000245 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
246 UI != E; ++UI) {
247 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000248 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000249 User->getOperand(2).getNode() == Node &&
250 User->getOperand(2).getResNo() == i) {
251 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
252 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000253 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000254 if (RegRC == RC) {
255 VRBase = Reg;
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000256 MIB.addReg(VRBase, RegState::Define);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000257 break;
258 }
Evan Chenge57187c2009-01-16 20:57:18 +0000259 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000260 }
261 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000262
263 // Create the result registers for this node and add the result regs to
264 // the machine instruction.
265 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000266 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000267 VRBase = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000268 MIB.addReg(VRBase, RegState::Define);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000269 }
270
271 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000272 if (IsClone)
273 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000274 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000275 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000276 assert(isNew && "Node emitted out of order - early");
277 }
278}
279
280/// getVR - Return the virtual register corresponding to the specified result
281/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000282unsigned InstrEmitter::getVR(SDValue Op,
283 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000284 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000285 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000286 // Add an IMPLICIT_DEF instruction before every use.
287 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000288 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000289 // does not include operand register class info.
290 if (!VReg) {
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000291 const TargetRegisterClass *RC =
292 TLI->getRegClassFor(Op.getSimpleValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000293 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000294 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000295 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000296 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000297 return VReg;
298 }
299
300 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
301 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
302 return I->second;
303}
304
Bill Wendlingc0407192010-08-30 04:36:50 +0000305
Dan Gohmanf8c73942009-04-13 15:38:05 +0000306/// AddRegisterOperand - Add the specified register as an operand to the
307/// specified machine instr. Insert register copies if the register is
308/// not in the required register class.
309void
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000310InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB,
311 SDValue Op,
Dan Gohmanbcea8592009-10-10 01:32:21 +0000312 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000313 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000314 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000315 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000316 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000317 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000318 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000319 // Get/emit the operand.
320 unsigned VReg = getVR(Op, VRBaseMap);
321 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
322
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000323 const MCInstrDesc &MCID = MIB->getDesc();
Evan Chenge837dea2011-06-28 19:10:37 +0000324 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
325 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000326
327 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000328 // a new virtual register and copy the value into it, but first attempt to
329 // shrink VReg's register class within reason. For example, if VReg == GR32
330 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000331 if (II) {
Chris Lattner2a386882009-07-29 21:36:49 +0000332 const TargetRegisterClass *DstRC = 0;
333 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000334 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000335 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000336 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000337 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
338 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000339 VReg = NewVReg;
340 }
341 }
342
Dan Gohman47bd03b2010-04-30 00:08:21 +0000343 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000344 // conservative approximation. InstrEmitter does trivial coalescing
345 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000346 // Avoid kill flags on Schedule cloned nodes, since there will be
347 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000348 // Tied operands are never killed, so we need to check that. And that
349 // means we need to determine the index of the operand.
350 bool isKill = Op.hasOneUse() &&
351 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000352 !IsDebug &&
353 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000354 if (isKill) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000355 unsigned Idx = MIB->getNumOperands();
Dan Gohman9d7019f2010-05-11 21:59:14 +0000356 while (Idx > 0 &&
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000357 MIB->getOperand(Idx-1).isReg() &&
358 MIB->getOperand(Idx-1).isImplicit())
Dan Gohman9d7019f2010-05-11 21:59:14 +0000359 --Idx;
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000360 bool isTied = MCID.getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000361 if (isTied)
362 isKill = false;
363 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000364
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000365 MIB.addReg(VReg, getDefRegState(isOptDef) | getKillRegState(isKill) |
366 getDebugRegState(IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000367}
368
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000369/// AddOperand - Add the specified operand to the specified machine instr. II
370/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000371/// operand number (in the II) that we are adding.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000372void InstrEmitter::AddOperand(MachineInstrBuilder &MIB,
373 SDValue Op,
Dan Gohmanbcea8592009-10-10 01:32:21 +0000374 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000375 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000376 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000377 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000378 if (Op.isMachineOpcode()) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000379 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000380 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000381 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000382 MIB.addImm(C->getSExtValue());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000383 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000384 MIB.addFPImm(F->getConstantFPValue());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000385 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000386 // Turn additional physreg operands into implicit uses on non-variadic
387 // instructions. This is used by call and return instructions passing
388 // arguments in registers.
389 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000390 MIB.addReg(R->getReg(), getImplRegState(Imp));
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +0000391 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000392 MIB.addRegMask(RM->getRegMask());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000393 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000394 MIB.addGlobalAddress(TGA->getGlobal(), TGA->getOffset(),
395 TGA->getTargetFlags());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000396 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000397 MIB.addMBB(BBNode->getBasicBlock());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000398 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000399 MIB.addFrameIndex(FI->getIndex());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000400 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000401 MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000402 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
403 int Offset = CP->getOffset();
404 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000405 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000406 // MachineConstantPool wants an explicit alignment.
407 if (Align == 0) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000408 Align = TM->getDataLayout()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000409 if (Align == 0) {
410 // Alignment of vector types. FIXME!
Micah Villmow3574eca2012-10-08 16:38:25 +0000411 Align = TM->getDataLayout()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000412 }
413 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000414
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000415 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000416 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000417 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000418 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000419 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000420 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000421 MIB.addConstantPoolIndex(Idx, Offset, CP->getTargetFlags());
Bill Wendling056292f2008-09-16 21:48:12 +0000422 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000423 MIB.addExternalSymbol(ES->getSymbol(), ES->getTargetFlags());
Dan Gohman8c2b5252009-10-30 01:27:03 +0000424 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000425 MIB.addBlockAddress(BA->getBlockAddress(),
426 BA->getOffset(),
427 BA->getTargetFlags());
Jakob Stoklund Olesen74500bd2012-08-07 22:37:05 +0000428 } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000429 MIB.addTargetIndex(TI->getIndex(), TI->getOffset(), TI->getTargetFlags());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000430 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000431 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000432 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000433 "Chain and glue operands should occur at end of operand list!");
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000434 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000435 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000436 }
437}
438
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000439unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000440 MVT VT, DebugLoc DL) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000441 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
442 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
443
444 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
445 // within reason.
446 if (RC && RC != VRC)
447 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
448
449 // VReg has been adjusted. It can be used with SubIdx operands now.
450 if (RC)
451 return VReg;
452
453 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
454 // register instead.
455 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
456 assert(RC && "No legal register class for VT supports that SubIdx");
457 unsigned NewReg = MRI->createVirtualRegister(RC);
458 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
459 .addReg(VReg);
460 return NewReg;
461}
462
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000463/// EmitSubregNode - Generate machine code for subreg nodes.
464///
Andrew Trick3af7a672011-09-20 03:06:13 +0000465void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000466 DenseMap<SDValue, unsigned> &VRBaseMap,
467 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000468 unsigned VRBase = 0;
469 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000470
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000471 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
472 // the CopyToReg'd destination register instead of creating a new vreg.
473 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
474 UI != E; ++UI) {
475 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000476 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000477 User->getOperand(2).getNode() == Node) {
478 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
479 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
480 VRBase = DestReg;
481 break;
482 }
483 }
484 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000485
Chris Lattner518bb532010-02-09 19:54:29 +0000486 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000487 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
488 // constraints on the %dst register, COPY can target all legal register
489 // classes.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000490 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000491 const TargetRegisterClass *TRC =
492 TLI->getRegClassFor(Node->getSimpleValueType(0));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000493
Dan Gohmanf8c73942009-04-13 15:38:05 +0000494 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000495 MachineInstr *DefMI = MRI->getVRegDef(VReg);
496 unsigned SrcReg, DstReg, DefSubIdx;
497 if (DefMI &&
498 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Cheng87591342012-07-11 18:55:07 +0000499 SubIdx == DefSubIdx &&
500 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng0b71d392011-01-05 23:06:49 +0000501 // Optimize these:
502 // r1025 = s/zext r1024, 4
503 // r1026 = extract_subreg r1025, 4
504 // to a copy
505 // r1026 = copy r1024
Evan Cheng0b71d392011-01-05 23:06:49 +0000506 VRBase = MRI->createVirtualRegister(TRC);
507 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
508 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen8ccaad52012-06-29 21:00:03 +0000509 MRI->clearKillFlags(SrcReg);
Evan Cheng0b71d392011-01-05 23:06:49 +0000510 } else {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000511 // VReg may not support a SubIdx sub-register, and we may need to
512 // constrain its register class or issue a COPY to a compatible register
513 // class.
514 VReg = ConstrainForSubReg(VReg, SubIdx,
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000515 Node->getOperand(0).getSimpleValueType(),
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000516 Node->getDebugLoc());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000517
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000518 // Create the destreg if it is missing.
519 if (VRBase == 0)
520 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng0b71d392011-01-05 23:06:49 +0000521
522 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000523 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
524 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000525 }
Chris Lattner518bb532010-02-09 19:54:29 +0000526 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
527 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000528 SDValue N0 = Node->getOperand(0);
529 SDValue N1 = Node->getOperand(1);
530 SDValue N2 = Node->getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000531 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohman5ec3b422009-04-14 22:17:14 +0000532
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000533 // Figure out the register class to create for the destreg. It should be
534 // the largest legal register class supporting SubIdx sub-registers.
535 // RegisterCoalescer will constrain it further if it decides to eliminate
536 // the INSERT_SUBREG instruction.
537 //
538 // %dst = INSERT_SUBREG %src, %sub, SubIdx
539 //
540 // is lowered by TwoAddressInstructionPass to:
541 //
542 // %dst = COPY %src
543 // %dst:SubIdx = COPY %sub
544 //
545 // There is no constraint on the %src register class.
546 //
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000547 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0));
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000548 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
549 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
550
551 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000552 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000553
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000554 // Create the insert_subreg or subreg_to_reg machine instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000555 MachineInstrBuilder MIB =
556 BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase);
Andrew Trick3af7a672011-09-20 03:06:13 +0000557
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000558 // If creating a subreg_to_reg, then the first input operand
559 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000560 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000561 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000562 MIB.addImm(SD->getZExtValue());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000563 } else
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000564 AddOperand(MIB, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000565 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000566 // Add the subregster being inserted
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000567 AddOperand(MIB, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000568 IsClone, IsCloned);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000569 MIB.addImm(SubIdx);
570 MBB->insert(InsertPos, MIB);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000571 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000572 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000573
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000574 SDValue Op(Node, 0);
575 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000576 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000577 assert(isNew && "Node emitted out of order - early");
578}
579
Dan Gohman88c7af02009-04-13 21:06:25 +0000580/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
581/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000582/// register is constrained to be in a particular register class.
583///
584void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000585InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
586 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000587 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000588
Dan Gohmanf8c73942009-04-13 15:38:05 +0000589 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000590 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trickf12f6df2012-05-03 01:14:37 +0000591 const TargetRegisterClass *DstRC =
592 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000593 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000594 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
595 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000596
597 SDValue Op(Node, 0);
598 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000599 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000600 assert(isNew && "Node emitted out of order - early");
601}
602
Evan Chengba609c82010-05-04 00:22:40 +0000603/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
604///
605void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000606 DenseMap<SDValue, unsigned> &VRBaseMap,
607 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000608 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
609 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trickf12f6df2012-05-03 01:14:37 +0000610 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000611 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
612 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II, NewVReg);
Evan Chengba609c82010-05-04 00:22:40 +0000613 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000614 assert((NumOps & 1) == 1 &&
615 "REG_SEQUENCE must have an odd number of operands!");
Owen Anderson1300f302011-06-16 18:17:13 +0000616 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000617 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000618 if ((i & 1) == 0) {
Pete Coopercd7f02b2012-01-18 04:16:16 +0000619 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
620 // Skip physical registers as they don't have a vreg to get and we'll
621 // insert copies for them in TwoAddressInstructionPass anyway.
622 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
623 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
624 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
625 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
626 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000627 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Coopercd7f02b2012-01-18 04:16:16 +0000628 if (SRC && SRC != RC) {
629 MRI->setRegClass(NewVReg, SRC);
630 RC = SRC;
631 }
Evan Cheng5012f9b2010-05-18 20:07:47 +0000632 }
Evan Chengba609c82010-05-04 00:22:40 +0000633 }
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000634 AddOperand(MIB, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000635 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000636 }
637
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000638 MBB->insert(InsertPos, MIB);
Evan Chengba609c82010-05-04 00:22:40 +0000639 SDValue Op(Node, 0);
640 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000641 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000642 assert(isNew && "Node emitted out of order - early");
643}
644
Evan Chengbfcb3052010-03-25 01:38:16 +0000645/// EmitDbgValue - Generate machine instruction for a dbg_value node.
646///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000647MachineInstr *
648InstrEmitter::EmitDbgValue(SDDbgValue *SD,
649 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000650 uint64_t Offset = SD->getOffset();
651 MDNode* MDPtr = SD->getMDPtr();
652 DebugLoc DL = SD->getDebugLoc();
653
Dale Johannesenf822e732010-04-25 21:33:54 +0000654 if (SD->getKind() == SDDbgValue::FRAMEIX) {
655 // Stack address; this needs to be lowered in target-dependent fashion.
656 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
David Blaikie6d9dbd52013-06-16 20:34:15 +0000657 return BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE))
658 .addFrameIndex(SD->getFrameIx()).addImm(Offset).addMetadata(MDPtr);
Dale Johannesenf822e732010-04-25 21:33:54 +0000659 }
660 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000661 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000662 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
663 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000664 SDNode *Node = SD->getSDNode();
665 SDValue Op = SDValue(Node, SD->getResNo());
666 // It's possible we replaced this SDNode with other(s) and therefore
667 // didn't generate code for it. It's better to catch these cases where
668 // they happen and transfer the debug info, but trying to guarantee that
669 // in all cases would be very fragile; this is a safeguard for any
670 // that were missed.
671 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
672 if (I==VRBaseMap.end())
673 MIB.addReg(0U); // undef
674 else
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000675 AddOperand(MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000676 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000677 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000678 const Value *V = SD->getConst();
679 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000680 if (CI->getBitWidth() > 64)
681 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000682 else
683 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000684 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000685 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000686 } else {
687 // Could be an Undef. In any case insert an Undef so we can see what we
688 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000689 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000690 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000691 } else {
692 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000693 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000694 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000695
Adrian Prantl35176402013-07-09 20:28:37 +0000696 if (Offset != 0) // Indirect addressing.
697 MIB.addImm(Offset);
698 else
699 MIB.addReg(0U, RegState::Debug);
700
701 MIB.addMetadata(MDPtr);
702
Evan Chengbfcb3052010-03-25 01:38:16 +0000703 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000704}
705
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000706/// EmitMachineNode - Generate machine code for a target-specific node and
707/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000708///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000709void InstrEmitter::
710EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000711 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000712 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000713
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000714 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000715 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000716 Opc == TargetOpcode::INSERT_SUBREG ||
717 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000718 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000719 return;
720 }
721
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000722 // Handle COPY_TO_REGCLASS specially.
723 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
724 EmitCopyToRegClassNode(Node, VRBaseMap);
725 return;
726 }
727
Evan Chengba609c82010-05-04 00:22:40 +0000728 // Handle REG_SEQUENCE specially.
729 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000730 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000731 return;
732 }
733
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000734 if (Opc == TargetOpcode::IMPLICIT_DEF)
735 // We want a unique VR for each IMPLICIT_DEF use.
736 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000737
Evan Chenge837dea2011-06-28 19:10:37 +0000738 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000739 unsigned NumResults = CountResults(Node);
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000740 unsigned NumDefs = II.getNumDefs();
Juergen Ributzkad4f5a612013-11-09 01:51:33 +0000741 const uint16_t *ScratchRegs = NULL;
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000742
Stephen Hines36b56882014-04-23 16:57:46 -0700743 // Handle STACKMAP and PATCHPOINT specially and then use the generic code.
744 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
745 // Stackmaps do not have arguments and do not preserve their calling
746 // convention. However, to simplify runtime support, they clobber the same
747 // scratch registers as AnyRegCC.
748 unsigned CC = CallingConv::AnyReg;
749 if (Opc == TargetOpcode::PATCHPOINT) {
750 CC = Node->getConstantOperandVal(PatchPointOpers::CCPos);
751 NumDefs = NumResults;
752 }
Juergen Ributzkad4f5a612013-11-09 01:51:33 +0000753 ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC);
754 }
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000755
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000756 unsigned NumImpUses = 0;
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +0000757 unsigned NodeOperands =
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000758 countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses);
759 bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000760#ifndef NDEBUG
761 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000762 if (II.isVariadic())
763 assert(NumMIOperands >= II.getNumOperands() &&
764 "Too few operands for a variadic node!");
765 else
766 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000767 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
768 NumImpUses &&
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000769 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000770#endif
771
772 // Create the new machine instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000773 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000774
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000775 // Add result register values for things that are defined by this
776 // instruction.
777 if (NumResults)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000778 CreateVirtualRegisters(Node, MIB, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000779
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000780 // Emit all of the actual operands of this instruction, adding them to the
781 // instruction as appropriate.
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000782 bool HasOptPRefs = NumDefs > NumResults;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000783 assert((!HasOptPRefs || !HasPhysRegOuts) &&
784 "Unable to cope with optional defs and phys regs defs!");
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000785 unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000786 for (unsigned i = NumSkip; i != NodeOperands; ++i)
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000787 AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000788 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000789
Juergen Ributzkad4f5a612013-11-09 01:51:33 +0000790 // Add scratch registers as implicit def and early clobber
791 if (ScratchRegs)
792 for (unsigned i = 0; ScratchRegs[i]; ++i)
793 MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine |
794 RegState::EarlyClobber);
795
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000796 // Transfer all of the memory reference descriptions of this instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000797 MIB.setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000798 cast<MachineSDNode>(Node)->memoperands_end());
799
Dan Gohman14152b42010-07-06 20:24:04 +0000800 // Insert the instruction into position in the block. This needs to
801 // happen before any custom inserter hook is called so that the
802 // hook knows where in the block to insert the replacement code.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000803 MBB->insert(InsertPos, MIB);
Dan Gohman14152b42010-07-06 20:24:04 +0000804
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000805 // The MachineInstr may also define physregs instead of virtregs. These
806 // physreg values can reach other instructions in different ways:
807 //
808 // 1. When there is a use of a Node value beyond the explicitly defined
809 // virtual registers, we emit a CopyFromReg for one of the implicitly
810 // defined physregs. This only happens when HasPhysRegOuts is true.
811 //
812 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
813 //
814 // 3. A glued instruction may implicitly use a physreg.
815 //
816 // 4. A glued instruction may use a RegisterSDNode operand.
817 //
818 // Collect all the used physreg defs, and make sure that any unused physreg
819 // defs are marked as dead.
820 SmallVector<unsigned, 8> UsedRegs;
821
Eric Christopherbece0482010-12-08 22:21:42 +0000822 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000823 if (HasPhysRegOuts) {
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000824 for (unsigned i = NumDefs; i < NumResults; ++i) {
825 unsigned Reg = II.getImplicitDefs()[i - NumDefs];
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000826 if (!Node->hasAnyUseOfValue(i))
827 continue;
828 // This implicitly defined physreg has a use.
829 UsedRegs.push_back(Reg);
830 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000831 }
832 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000833
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000834 // Scan the glue chain for any used physregs.
835 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
836 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
837 if (F->getOpcode() == ISD::CopyFromReg) {
838 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
839 continue;
Hal Finkelf77c03a2012-02-24 17:53:59 +0000840 } else if (F->getOpcode() == ISD::CopyToReg) {
841 // Skip CopyToReg nodes that are internal to the glue chain.
842 continue;
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000843 }
844 // Collect declared implicit uses.
845 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
846 UsedRegs.append(MCID.getImplicitUses(),
847 MCID.getImplicitUses() + MCID.getNumImplicitUses());
848 // In addition to declared implicit uses, we must also check for
849 // direct RegisterSDNode operands.
850 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
851 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
852 unsigned Reg = R->getReg();
853 if (TargetRegisterInfo::isPhysicalRegister(Reg))
854 UsedRegs.push_back(Reg);
855 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000856 }
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000857 }
858
859 // Finally mark unused registers as dead.
860 if (!UsedRegs.empty() || II.getImplicitDefs())
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000861 MIB->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Cheng37fefc22011-08-30 19:09:48 +0000862
863 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000864#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000865 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000866#endif
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000867 TLI->AdjustInstrPostInstrSelection(MIB, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000868}
869
870/// EmitSpecialNode - Generate machine code for a target-independent node and
871/// needed dependencies.
872void InstrEmitter::
873EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
874 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000875 switch (Node->getOpcode()) {
876 default:
877#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000878 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000879#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000880 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000881 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000882 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Cheng37b73872009-07-30 08:33:02 +0000883 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000884 case ISD::TokenFactor: // fall thru
885 break;
886 case ISD::CopyToReg: {
887 unsigned SrcReg;
888 SDValue SrcVal = Node->getOperand(2);
889 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
890 SrcReg = R->getReg();
891 else
892 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000893
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000894 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
895 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
896 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000897
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000898 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
899 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000900 break;
901 }
902 case ISD::CopyFromReg: {
903 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000904 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000905 break;
906 }
Chris Lattner7561d482010-03-14 02:33:54 +0000907 case ISD::EH_LABEL: {
908 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
909 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
910 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
911 break;
912 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000913
Nadav Rotemc05d3062012-09-06 09:17:37 +0000914 case ISD::LIFETIME_START:
915 case ISD::LIFETIME_END: {
916 unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ?
917 TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END;
918
919 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1));
920 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp))
921 .addFrameIndex(FI->getIndex());
922 break;
923 }
924
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000925 case ISD::INLINEASM: {
926 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000927 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000928 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000929
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000930 // Create the inline asm machine instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000931 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(),
932 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000933
934 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000935 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
936 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000937 MIB.addExternalSymbol(AsmStr);
Andrew Trick3af7a672011-09-20 03:06:13 +0000938
Chad Rosierdaeec8f2012-10-30 20:39:19 +0000939 // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
940 // bits.
Evan Chengc36b7062011-01-07 23:50:32 +0000941 int64_t ExtraInfo =
942 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000943 getZExtValue();
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000944 MIB.addImm(ExtraInfo);
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000945
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000946 // Remember to operand index of the group flags.
947 SmallVector<unsigned, 8> GroupIdx;
948
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000949 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000950 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000951 unsigned Flags =
952 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000953 const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000954
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000955 GroupIdx.push_back(MIB->getNumOperands());
956 MIB.addImm(Flags);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000957 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000958
Chris Lattnerdecc2672010-04-07 05:20:54 +0000959 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000960 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000961 case InlineAsm::Kind_RegDef:
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000962 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000963 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000964 // FIXME: Add dead flags for physical and virtual registers defined.
965 // For now, mark physical register defs as implicit to help fast
966 // regalloc. This makes inline asm look a lot like calls.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000967 MIB.addReg(Reg, RegState::Define |
968 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000969 }
970 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000971 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000972 case InlineAsm::Kind_Clobber:
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000973 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dale Johannesen913d3df2008-09-12 17:49:03 +0000974 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000975 MIB.addReg(Reg, RegState::Define | RegState::EarlyClobber |
976 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000977 }
978 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000979 case InlineAsm::Kind_RegUse: // Use of register.
980 case InlineAsm::Kind_Imm: // Immediate.
981 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000982 // The addressing mode has been selected, just add all of the
983 // operands to the machine instruction.
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000984 for (unsigned j = 0; j != NumVals; ++j, ++i)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000985 AddOperand(MIB, Node->getOperand(i), 0, 0, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000986 /*IsDebug=*/false, IsClone, IsCloned);
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000987
988 // Manually set isTied bits.
989 if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) {
990 unsigned DefGroup = 0;
991 if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) {
992 unsigned DefIdx = GroupIdx[DefGroup] + 1;
993 unsigned UseIdx = GroupIdx.back() + 1;
Jakob Stoklund Olesen94083142012-08-31 20:50:53 +0000994 for (unsigned j = 0; j != NumVals; ++j)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000995 MIB->tieOperands(DefIdx + j, UseIdx + j);
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000996 }
997 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000998 break;
999 }
1000 }
Andrew Trick3af7a672011-09-20 03:06:13 +00001001
Chris Lattnercf9a4152010-04-07 05:38:05 +00001002 // Get the mdnode from the asm if it exists and add it to the instruction.
1003 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
1004 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +00001005 if (MD)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +00001006 MIB.addMetadata(MD);
Andrew Trick3af7a672011-09-20 03:06:13 +00001007
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +00001008 MBB->insert(InsertPos, MIB);
Dan Gohman94b8d7e2008-09-03 16:01:59 +00001009 break;
1010 }
1011 }
1012}
1013
Dan Gohmanbcea8592009-10-10 01:32:21 +00001014/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
1015/// at the given position in the given block.
1016InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
1017 MachineBasicBlock::iterator insertpos)
1018 : MF(mbb->getParent()),
1019 MRI(&MF->getRegInfo()),
1020 TM(&MF->getTarget()),
1021 TII(TM->getInstrInfo()),
1022 TRI(TM->getRegisterInfo()),
1023 TLI(TM->getTargetLowering()),
1024 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +00001025}