blob: 7c124b8caa91e3b3f4b295ad46ee753b63fe6766 [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#include "InstrEmitter.h"
Evan Chenga8efe282010-03-14 19:56:39 +000017#include "SDNodeDbgValue.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/ADT/Statistic.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000019#include "llvm/CodeGen/MachineConstantPool.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingc00090b2013-11-19 06:43:35 +000023#include "llvm/CodeGen/StackMaps.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000024#include "llvm/IR/DataLayout.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000025#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000027#include "llvm/Support/MathExtras.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000028#include "llvm/Target/TargetInstrInfo.h"
29#include "llvm/Target/TargetLowering.h"
30#include "llvm/Target/TargetMachine.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000031using namespace llvm;
32
Stephen Hinesdce4a402014-05-29 02:49:00 -070033#define DEBUG_TYPE "instr-emitter"
34
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +000035/// MinRCSize - Smallest register class we allow when constraining virtual
36/// registers. If satisfying all register class constraints would require
37/// using a smaller register class, emit a COPY to a new virtual register
38/// instead.
39const unsigned MinRCSize = 4;
40
Dan Gohmanbcea8592009-10-10 01:32:21 +000041/// CountResults - The results of target nodes have register or immediate
Chris Lattner29d8f0c2010-12-23 17:24:32 +000042/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanbcea8592009-10-10 01:32:21 +000043/// not go into the resulting MachineInstr).
44unsigned InstrEmitter::CountResults(SDNode *Node) {
45 unsigned N = Node->getNumValues();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000046 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000047 --N;
48 if (N && Node->getValueType(N - 1) == MVT::Other)
49 --N; // Skip over chain result.
50 return N;
51}
52
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000053/// countOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner29d8f0c2010-12-23 17:24:32 +000054/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanbcea8592009-10-10 01:32:21 +000055/// Compute the number of actual operands that will go into the resulting
56/// MachineInstr.
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000057///
58/// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding
59/// the chain and glue. These operands may be implicit on the machine instr.
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +000060static unsigned countOperands(SDNode *Node, unsigned NumExpUses,
61 unsigned &NumImpUses) {
Dan Gohmanbcea8592009-10-10 01:32:21 +000062 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000063 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000064 --N;
65 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
66 --N; // Ignore chain if it exists.
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000067
68 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +000069 NumImpUses = N - NumExpUses;
70 for (unsigned I = N; I > NumExpUses; --I) {
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000071 if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1)))
72 continue;
73 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1)))
74 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg()))
75 continue;
76 NumImpUses = N - I;
77 break;
78 }
79
Dan Gohmanbcea8592009-10-10 01:32:21 +000080 return N;
81}
82
Dan Gohman94b8d7e2008-09-03 16:01:59 +000083/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
84/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000085void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000086EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
87 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000088 unsigned VRBase = 0;
89 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
90 // Just use the input register directly!
91 SDValue Op(Node, ResNo);
92 if (IsClone)
93 VRBaseMap.erase(Op);
94 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000095 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000096 assert(isNew && "Node emitted out of order - early");
97 return;
98 }
99
100 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
101 // the CopyToReg'd destination register instead of creating a new vreg.
102 bool MatchReg = true;
Stephen Hinesdce4a402014-05-29 02:49:00 -0700103 const TargetRegisterClass *UseRC = nullptr;
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000104 MVT VT = Node->getSimpleValueType(ResNo);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000105
106 // Stick to the preferred register classes for legal types.
107 if (TLI->isTypeLegal(VT))
108 UseRC = TLI->getRegClassFor(VT);
109
Evan Chenge57187c2009-01-16 20:57:18 +0000110 if (!IsClone && !IsCloned)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700111 for (SDNode *User : Node->uses()) {
Evan Chenge57187c2009-01-16 20:57:18 +0000112 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +0000113 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000114 User->getOperand(2).getNode() == Node &&
115 User->getOperand(2).getResNo() == ResNo) {
116 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
117 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
118 VRBase = DestReg;
119 Match = false;
120 } else if (DestReg != SrcReg)
121 Match = false;
122 } else {
123 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
124 SDValue Op = User->getOperand(i);
125 if (Op.getNode() != Node || Op.getResNo() != ResNo)
126 continue;
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000127 MVT VT = Node->getSimpleValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000128 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000129 continue;
130 Match = false;
131 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000132 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Stephen Hinesdce4a402014-05-29 02:49:00 -0700133 const TargetRegisterClass *RC = nullptr;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000134 if (i+II.getNumDefs() < II.getNumOperands()) {
135 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000136 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trickf12f6df2012-05-03 01:14:37 +0000137 }
Evan Chenge57187c2009-01-16 20:57:18 +0000138 if (!UseRC)
139 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000140 else if (RC) {
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +0000141 const TargetRegisterClass *ComRC =
142 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000143 // If multiple uses expect disjoint register classes, we emit
144 // copies in AddRegisterOperand.
145 if (ComRC)
146 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000147 }
Evan Chenge57187c2009-01-16 20:57:18 +0000148 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000149 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000150 }
Evan Chenge57187c2009-01-16 20:57:18 +0000151 MatchReg &= Match;
152 if (VRBase)
153 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000154 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000155
Stephen Hinesdce4a402014-05-29 02:49:00 -0700156 const TargetRegisterClass *SrcRC = nullptr, *DstRC = nullptr;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000157 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000158
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000159 // Figure out the register class to create for the destreg.
160 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000161 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000162 } else if (UseRC) {
163 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
164 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000165 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000166 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000167 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000168
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000169 // If all uses are reading from the src physical register and copying the
170 // register is either impossible or very expensive, then don't create a copy.
171 if (MatchReg && SrcRC->getCopyCost() < 0) {
172 VRBase = SrcReg;
173 } else {
174 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000175 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000176 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
177 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000178 }
179
180 SDValue Op(Node, ResNo);
181 if (IsClone)
182 VRBaseMap.erase(Op);
183 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000184 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000185 assert(isNew && "Node emitted out of order - early");
186}
187
188/// getDstOfCopyToRegUse - If the only use of the specified result number of
189/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000190unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
191 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000192 if (!Node->hasOneUse())
193 return 0;
194
195 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000196 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000197 User->getOperand(2).getNode() == Node &&
198 User->getOperand(2).getResNo() == ResNo) {
199 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
200 if (TargetRegisterInfo::isVirtualRegister(Reg))
201 return Reg;
202 }
203 return 0;
204}
205
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000206void InstrEmitter::CreateVirtualRegisters(SDNode *Node,
207 MachineInstrBuilder &MIB,
Evan Chenge837dea2011-06-28 19:10:37 +0000208 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000209 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000210 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000211 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000212 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
213
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000214 unsigned NumResults = CountResults(Node);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000215 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
216 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000217 // is a vreg in the same register class, use the CopyToReg'd destination
218 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000219 unsigned VRBase = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000220 const TargetRegisterClass *RC =
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000221 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Stephen Hines36b56882014-04-23 16:57:46 -0700222 // Always let the value type influence the used register class. The
223 // constraints on the instruction may be too lax to represent the value
224 // type correctly. For example, a 64-bit float (X86::FR64) can't live in
225 // the 32-bit float super-class (X86::FR32).
226 if (i < NumResults && TLI->isTypeLegal(Node->getSimpleValueType(i))) {
227 const TargetRegisterClass *VTRC =
228 TLI->getRegClassFor(Node->getSimpleValueType(i));
229 if (RC)
230 VTRC = TRI->getCommonSubClass(RC, VTRC);
231 if (VTRC)
232 RC = VTRC;
233 }
234
Evan Cheng8955e932009-07-11 01:06:50 +0000235 if (II.OpInfo[i].isOptionalDef()) {
236 // Optional def must be a physical register.
237 unsigned NumResults = CountResults(Node);
238 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
239 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000240 MIB.addReg(VRBase, RegState::Define);
Evan Cheng8955e932009-07-11 01:06:50 +0000241 }
Evan Chenge57187c2009-01-16 20:57:18 +0000242
Evan Cheng8955e932009-07-11 01:06:50 +0000243 if (!VRBase && !IsClone && !IsCloned)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700244 for (SDNode *User : Node->uses()) {
Andrew Trick3af7a672011-09-20 03:06:13 +0000245 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000246 User->getOperand(2).getNode() == Node &&
247 User->getOperand(2).getResNo() == i) {
248 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
249 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000250 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000251 if (RegRC == RC) {
252 VRBase = Reg;
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000253 MIB.addReg(VRBase, RegState::Define);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000254 break;
255 }
Evan Chenge57187c2009-01-16 20:57:18 +0000256 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000257 }
258 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000259
260 // Create the result registers for this node and add the result regs to
261 // the machine instruction.
262 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000263 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000264 VRBase = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000265 MIB.addReg(VRBase, RegState::Define);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000266 }
267
268 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000269 if (IsClone)
270 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000271 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000272 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000273 assert(isNew && "Node emitted out of order - early");
274 }
275}
276
277/// getVR - Return the virtual register corresponding to the specified result
278/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000279unsigned InstrEmitter::getVR(SDValue Op,
280 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000281 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000282 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000283 // Add an IMPLICIT_DEF instruction before every use.
284 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000285 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000286 // does not include operand register class info.
287 if (!VReg) {
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000288 const TargetRegisterClass *RC =
289 TLI->getRegClassFor(Op.getSimpleValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000290 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000291 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000292 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000293 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000294 return VReg;
295 }
296
297 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
298 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
299 return I->second;
300}
301
Bill Wendlingc0407192010-08-30 04:36:50 +0000302
Dan Gohmanf8c73942009-04-13 15:38:05 +0000303/// AddRegisterOperand - Add the specified register as an operand to the
304/// specified machine instr. Insert register copies if the register is
305/// not in the required register class.
306void
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000307InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB,
308 SDValue Op,
Dan Gohmanbcea8592009-10-10 01:32:21 +0000309 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000310 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000311 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000312 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000313 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000314 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000315 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000316 // Get/emit the operand.
317 unsigned VReg = getVR(Op, VRBaseMap);
318 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
319
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000320 const MCInstrDesc &MCID = MIB->getDesc();
Evan Chenge837dea2011-06-28 19:10:37 +0000321 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
322 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000323
324 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000325 // a new virtual register and copy the value into it, but first attempt to
326 // shrink VReg's register class within reason. For example, if VReg == GR32
327 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000328 if (II) {
Stephen Hinesdce4a402014-05-29 02:49:00 -0700329 const TargetRegisterClass *DstRC = nullptr;
Chris Lattner2a386882009-07-29 21:36:49 +0000330 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000331 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000332 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000333 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000334 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
335 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000336 VReg = NewVReg;
337 }
338 }
339
Dan Gohman47bd03b2010-04-30 00:08:21 +0000340 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000341 // conservative approximation. InstrEmitter does trivial coalescing
342 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000343 // Avoid kill flags on Schedule cloned nodes, since there will be
344 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000345 // Tied operands are never killed, so we need to check that. And that
346 // means we need to determine the index of the operand.
347 bool isKill = Op.hasOneUse() &&
348 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000349 !IsDebug &&
350 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000351 if (isKill) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000352 unsigned Idx = MIB->getNumOperands();
Dan Gohman9d7019f2010-05-11 21:59:14 +0000353 while (Idx > 0 &&
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000354 MIB->getOperand(Idx-1).isReg() &&
355 MIB->getOperand(Idx-1).isImplicit())
Dan Gohman9d7019f2010-05-11 21:59:14 +0000356 --Idx;
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000357 bool isTied = MCID.getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000358 if (isTied)
359 isKill = false;
360 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000361
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000362 MIB.addReg(VReg, getDefRegState(isOptDef) | getKillRegState(isKill) |
363 getDebugRegState(IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000364}
365
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000366/// AddOperand - Add the specified operand to the specified machine instr. II
367/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000368/// operand number (in the II) that we are adding.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000369void InstrEmitter::AddOperand(MachineInstrBuilder &MIB,
370 SDValue Op,
Dan Gohmanbcea8592009-10-10 01:32:21 +0000371 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000372 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000373 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000374 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000375 if (Op.isMachineOpcode()) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000376 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000377 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000378 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000379 MIB.addImm(C->getSExtValue());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000380 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000381 MIB.addFPImm(F->getConstantFPValue());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000382 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000383 // Turn additional physreg operands into implicit uses on non-variadic
384 // instructions. This is used by call and return instructions passing
385 // arguments in registers.
386 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000387 MIB.addReg(R->getReg(), getImplRegState(Imp));
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +0000388 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000389 MIB.addRegMask(RM->getRegMask());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000390 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000391 MIB.addGlobalAddress(TGA->getGlobal(), TGA->getOffset(),
392 TGA->getTargetFlags());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000393 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000394 MIB.addMBB(BBNode->getBasicBlock());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000395 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000396 MIB.addFrameIndex(FI->getIndex());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000397 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000398 MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000399 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
400 int Offset = CP->getOffset();
401 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000402 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000403 // MachineConstantPool wants an explicit alignment.
404 if (Align == 0) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000405 Align = TM->getDataLayout()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000406 if (Align == 0) {
407 // Alignment of vector types. FIXME!
Micah Villmow3574eca2012-10-08 16:38:25 +0000408 Align = TM->getDataLayout()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000409 }
410 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000411
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000412 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000413 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000414 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000415 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000416 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000417 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000418 MIB.addConstantPoolIndex(Idx, Offset, CP->getTargetFlags());
Bill Wendling056292f2008-09-16 21:48:12 +0000419 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000420 MIB.addExternalSymbol(ES->getSymbol(), ES->getTargetFlags());
Dan Gohman8c2b5252009-10-30 01:27:03 +0000421 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000422 MIB.addBlockAddress(BA->getBlockAddress(),
423 BA->getOffset(),
424 BA->getTargetFlags());
Jakob Stoklund Olesen74500bd2012-08-07 22:37:05 +0000425 } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) {
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000426 MIB.addTargetIndex(TI->getIndex(), TI->getOffset(), TI->getTargetFlags());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000427 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000429 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000430 "Chain and glue operands should occur at end of operand list!");
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000431 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000432 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000433 }
434}
435
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000436unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000437 MVT VT, DebugLoc DL) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000438 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
439 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
440
441 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
442 // within reason.
443 if (RC && RC != VRC)
444 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
445
446 // VReg has been adjusted. It can be used with SubIdx operands now.
447 if (RC)
448 return VReg;
449
450 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
451 // register instead.
452 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
453 assert(RC && "No legal register class for VT supports that SubIdx");
454 unsigned NewReg = MRI->createVirtualRegister(RC);
455 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
456 .addReg(VReg);
457 return NewReg;
458}
459
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000460/// EmitSubregNode - Generate machine code for subreg nodes.
461///
Andrew Trick3af7a672011-09-20 03:06:13 +0000462void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000463 DenseMap<SDValue, unsigned> &VRBaseMap,
464 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000465 unsigned VRBase = 0;
466 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000467
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000468 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
469 // the CopyToReg'd destination register instead of creating a new vreg.
Stephen Hinesdce4a402014-05-29 02:49:00 -0700470 for (SDNode *User : Node->uses()) {
Andrew Trick3af7a672011-09-20 03:06:13 +0000471 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000472 User->getOperand(2).getNode() == Node) {
473 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
474 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
475 VRBase = DestReg;
476 break;
477 }
478 }
479 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000480
Chris Lattner518bb532010-02-09 19:54:29 +0000481 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000482 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
483 // constraints on the %dst register, COPY can target all legal register
484 // classes.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000485 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000486 const TargetRegisterClass *TRC =
487 TLI->getRegClassFor(Node->getSimpleValueType(0));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000488
Dan Gohmanf8c73942009-04-13 15:38:05 +0000489 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000490 MachineInstr *DefMI = MRI->getVRegDef(VReg);
491 unsigned SrcReg, DstReg, DefSubIdx;
492 if (DefMI &&
493 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Cheng87591342012-07-11 18:55:07 +0000494 SubIdx == DefSubIdx &&
495 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng0b71d392011-01-05 23:06:49 +0000496 // Optimize these:
497 // r1025 = s/zext r1024, 4
498 // r1026 = extract_subreg r1025, 4
499 // to a copy
500 // r1026 = copy r1024
Evan Cheng0b71d392011-01-05 23:06:49 +0000501 VRBase = MRI->createVirtualRegister(TRC);
502 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
503 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen8ccaad52012-06-29 21:00:03 +0000504 MRI->clearKillFlags(SrcReg);
Evan Cheng0b71d392011-01-05 23:06:49 +0000505 } else {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000506 // VReg may not support a SubIdx sub-register, and we may need to
507 // constrain its register class or issue a COPY to a compatible register
508 // class.
509 VReg = ConstrainForSubReg(VReg, SubIdx,
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000510 Node->getOperand(0).getSimpleValueType(),
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000511 Node->getDebugLoc());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000512
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000513 // Create the destreg if it is missing.
514 if (VRBase == 0)
515 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng0b71d392011-01-05 23:06:49 +0000516
517 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000518 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
519 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000520 }
Chris Lattner518bb532010-02-09 19:54:29 +0000521 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
522 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000523 SDValue N0 = Node->getOperand(0);
524 SDValue N1 = Node->getOperand(1);
525 SDValue N2 = Node->getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000526 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohman5ec3b422009-04-14 22:17:14 +0000527
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000528 // Figure out the register class to create for the destreg. It should be
529 // the largest legal register class supporting SubIdx sub-registers.
530 // RegisterCoalescer will constrain it further if it decides to eliminate
531 // the INSERT_SUBREG instruction.
532 //
533 // %dst = INSERT_SUBREG %src, %sub, SubIdx
534 //
535 // is lowered by TwoAddressInstructionPass to:
536 //
537 // %dst = COPY %src
538 // %dst:SubIdx = COPY %sub
539 //
540 // There is no constraint on the %src register class.
541 //
Patrik Hagglunda61b17c2012-12-13 06:34:11 +0000542 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0));
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000543 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
544 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
545
546 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000547 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000548
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000549 // Create the insert_subreg or subreg_to_reg machine instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000550 MachineInstrBuilder MIB =
551 BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase);
Andrew Trick3af7a672011-09-20 03:06:13 +0000552
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000553 // If creating a subreg_to_reg, then the first input operand
554 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000555 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000556 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000557 MIB.addImm(SD->getZExtValue());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000558 } else
Stephen Hinesdce4a402014-05-29 02:49:00 -0700559 AddOperand(MIB, N0, 0, nullptr, VRBaseMap, /*IsDebug=*/false,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000560 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000561 // Add the subregster being inserted
Stephen Hinesdce4a402014-05-29 02:49:00 -0700562 AddOperand(MIB, N1, 0, nullptr, VRBaseMap, /*IsDebug=*/false,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000563 IsClone, IsCloned);
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000564 MIB.addImm(SubIdx);
565 MBB->insert(InsertPos, MIB);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000566 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000567 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000568
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000569 SDValue Op(Node, 0);
570 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000571 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000572 assert(isNew && "Node emitted out of order - early");
573}
574
Dan Gohman88c7af02009-04-13 21:06:25 +0000575/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
576/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000577/// register is constrained to be in a particular register class.
578///
579void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000580InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
581 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000582 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000583
Dan Gohmanf8c73942009-04-13 15:38:05 +0000584 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000585 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trickf12f6df2012-05-03 01:14:37 +0000586 const TargetRegisterClass *DstRC =
587 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000588 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000589 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
590 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000591
592 SDValue Op(Node, 0);
593 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000594 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000595 assert(isNew && "Node emitted out of order - early");
596}
597
Evan Chengba609c82010-05-04 00:22:40 +0000598/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
599///
600void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000601 DenseMap<SDValue, unsigned> &VRBaseMap,
602 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000603 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
604 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trickf12f6df2012-05-03 01:14:37 +0000605 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000606 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
607 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II, NewVReg);
Evan Chengba609c82010-05-04 00:22:40 +0000608 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000609 assert((NumOps & 1) == 1 &&
610 "REG_SEQUENCE must have an odd number of operands!");
Owen Anderson1300f302011-06-16 18:17:13 +0000611 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000612 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000613 if ((i & 1) == 0) {
Pete Coopercd7f02b2012-01-18 04:16:16 +0000614 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
615 // Skip physical registers as they don't have a vreg to get and we'll
616 // insert copies for them in TwoAddressInstructionPass anyway.
617 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
618 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
619 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
620 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
621 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000622 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Coopercd7f02b2012-01-18 04:16:16 +0000623 if (SRC && SRC != RC) {
624 MRI->setRegClass(NewVReg, SRC);
625 RC = SRC;
626 }
Evan Cheng5012f9b2010-05-18 20:07:47 +0000627 }
Evan Chengba609c82010-05-04 00:22:40 +0000628 }
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000629 AddOperand(MIB, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000630 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000631 }
632
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000633 MBB->insert(InsertPos, MIB);
Evan Chengba609c82010-05-04 00:22:40 +0000634 SDValue Op(Node, 0);
635 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000636 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000637 assert(isNew && "Node emitted out of order - early");
638}
639
Evan Chengbfcb3052010-03-25 01:38:16 +0000640/// EmitDbgValue - Generate machine instruction for a dbg_value node.
641///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000642MachineInstr *
643InstrEmitter::EmitDbgValue(SDDbgValue *SD,
644 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000645 uint64_t Offset = SD->getOffset();
646 MDNode* MDPtr = SD->getMDPtr();
647 DebugLoc DL = SD->getDebugLoc();
648
Dale Johannesenf822e732010-04-25 21:33:54 +0000649 if (SD->getKind() == SDDbgValue::FRAMEIX) {
650 // Stack address; this needs to be lowered in target-dependent fashion.
651 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
David Blaikie6d9dbd52013-06-16 20:34:15 +0000652 return BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE))
653 .addFrameIndex(SD->getFrameIx()).addImm(Offset).addMetadata(MDPtr);
Dale Johannesenf822e732010-04-25 21:33:54 +0000654 }
655 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000656 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000657 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
658 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000659 SDNode *Node = SD->getSDNode();
660 SDValue Op = SDValue(Node, SD->getResNo());
661 // It's possible we replaced this SDNode with other(s) and therefore
662 // didn't generate code for it. It's better to catch these cases where
663 // they happen and transfer the debug info, but trying to guarantee that
664 // in all cases would be very fragile; this is a safeguard for any
665 // that were missed.
666 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
667 if (I==VRBaseMap.end())
668 MIB.addReg(0U); // undef
669 else
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000670 AddOperand(MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000671 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000672 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000673 const Value *V = SD->getConst();
674 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000675 if (CI->getBitWidth() > 64)
676 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000677 else
678 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000679 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000680 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000681 } else {
682 // Could be an Undef. In any case insert an Undef so we can see what we
683 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000684 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000685 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000686 } else {
687 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000688 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000689 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000690
Stephen Hinesdce4a402014-05-29 02:49:00 -0700691 // Indirect addressing is indicated by an Imm as the second parameter.
692 if (SD->isIndirect())
Adrian Prantl35176402013-07-09 20:28:37 +0000693 MIB.addImm(Offset);
Stephen Hinesdce4a402014-05-29 02:49:00 -0700694 else {
695 assert(Offset == 0 && "direct value cannot have an offset");
Adrian Prantl35176402013-07-09 20:28:37 +0000696 MIB.addReg(0U, RegState::Debug);
Stephen Hinesdce4a402014-05-29 02:49:00 -0700697 }
Adrian Prantl35176402013-07-09 20:28:37 +0000698
699 MIB.addMetadata(MDPtr);
700
Evan Chengbfcb3052010-03-25 01:38:16 +0000701 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000702}
703
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000704/// EmitMachineNode - Generate machine code for a target-specific node and
705/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000706///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000707void InstrEmitter::
708EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000709 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000710 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000711
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000712 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000713 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000714 Opc == TargetOpcode::INSERT_SUBREG ||
715 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000716 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000717 return;
718 }
719
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000720 // Handle COPY_TO_REGCLASS specially.
721 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
722 EmitCopyToRegClassNode(Node, VRBaseMap);
723 return;
724 }
725
Evan Chengba609c82010-05-04 00:22:40 +0000726 // Handle REG_SEQUENCE specially.
727 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000728 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000729 return;
730 }
731
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000732 if (Opc == TargetOpcode::IMPLICIT_DEF)
733 // We want a unique VR for each IMPLICIT_DEF use.
734 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000735
Evan Chenge837dea2011-06-28 19:10:37 +0000736 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000737 unsigned NumResults = CountResults(Node);
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000738 unsigned NumDefs = II.getNumDefs();
Stephen Hinesdce4a402014-05-29 02:49:00 -0700739 const MCPhysReg *ScratchRegs = nullptr;
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000740
Stephen Hines36b56882014-04-23 16:57:46 -0700741 // Handle STACKMAP and PATCHPOINT specially and then use the generic code.
742 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
743 // Stackmaps do not have arguments and do not preserve their calling
744 // convention. However, to simplify runtime support, they clobber the same
745 // scratch registers as AnyRegCC.
746 unsigned CC = CallingConv::AnyReg;
747 if (Opc == TargetOpcode::PATCHPOINT) {
748 CC = Node->getConstantOperandVal(PatchPointOpers::CCPos);
749 NumDefs = NumResults;
750 }
Juergen Ributzkad4f5a612013-11-09 01:51:33 +0000751 ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC);
752 }
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000753
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000754 unsigned NumImpUses = 0;
Jakob Stoklund Olesenbaa74e42012-08-24 20:52:42 +0000755 unsigned NodeOperands =
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000756 countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses);
Stephen Hinesdce4a402014-05-29 02:49:00 -0700757 bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=nullptr;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000758#ifndef NDEBUG
759 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000760 if (II.isVariadic())
761 assert(NumMIOperands >= II.getNumOperands() &&
762 "Too few operands for a variadic node!");
763 else
764 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000765 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
766 NumImpUses &&
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000767 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000768#endif
769
770 // Create the new machine instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000771 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000772
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000773 // Add result register values for things that are defined by this
774 // instruction.
775 if (NumResults)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000776 CreateVirtualRegisters(Node, MIB, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000777
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000778 // Emit all of the actual operands of this instruction, adding them to the
779 // instruction as appropriate.
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000780 bool HasOptPRefs = NumDefs > NumResults;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000781 assert((!HasOptPRefs || !HasPhysRegOuts) &&
782 "Unable to cope with optional defs and phys regs defs!");
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000783 unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000784 for (unsigned i = NumSkip; i != NodeOperands; ++i)
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000785 AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000786 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000787
Juergen Ributzkad4f5a612013-11-09 01:51:33 +0000788 // Add scratch registers as implicit def and early clobber
789 if (ScratchRegs)
790 for (unsigned i = 0; ScratchRegs[i]; ++i)
791 MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine |
792 RegState::EarlyClobber);
793
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000794 // Transfer all of the memory reference descriptions of this instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000795 MIB.setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000796 cast<MachineSDNode>(Node)->memoperands_end());
797
Dan Gohman14152b42010-07-06 20:24:04 +0000798 // Insert the instruction into position in the block. This needs to
799 // happen before any custom inserter hook is called so that the
800 // hook knows where in the block to insert the replacement code.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000801 MBB->insert(InsertPos, MIB);
Dan Gohman14152b42010-07-06 20:24:04 +0000802
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000803 // The MachineInstr may also define physregs instead of virtregs. These
804 // physreg values can reach other instructions in different ways:
805 //
806 // 1. When there is a use of a Node value beyond the explicitly defined
807 // virtual registers, we emit a CopyFromReg for one of the implicitly
808 // defined physregs. This only happens when HasPhysRegOuts is true.
809 //
810 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
811 //
812 // 3. A glued instruction may implicitly use a physreg.
813 //
814 // 4. A glued instruction may use a RegisterSDNode operand.
815 //
816 // Collect all the used physreg defs, and make sure that any unused physreg
817 // defs are marked as dead.
818 SmallVector<unsigned, 8> UsedRegs;
819
Eric Christopherbece0482010-12-08 22:21:42 +0000820 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000821 if (HasPhysRegOuts) {
Juergen Ributzka623d2e62013-11-08 23:28:16 +0000822 for (unsigned i = NumDefs; i < NumResults; ++i) {
823 unsigned Reg = II.getImplicitDefs()[i - NumDefs];
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000824 if (!Node->hasAnyUseOfValue(i))
825 continue;
826 // This implicitly defined physreg has a use.
827 UsedRegs.push_back(Reg);
828 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000829 }
830 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000831
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000832 // Scan the glue chain for any used physregs.
833 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
834 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
835 if (F->getOpcode() == ISD::CopyFromReg) {
836 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
837 continue;
Hal Finkelf77c03a2012-02-24 17:53:59 +0000838 } else if (F->getOpcode() == ISD::CopyToReg) {
839 // Skip CopyToReg nodes that are internal to the glue chain.
840 continue;
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000841 }
842 // Collect declared implicit uses.
843 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
844 UsedRegs.append(MCID.getImplicitUses(),
845 MCID.getImplicitUses() + MCID.getNumImplicitUses());
846 // In addition to declared implicit uses, we must also check for
847 // direct RegisterSDNode operands.
848 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
849 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
850 unsigned Reg = R->getReg();
851 if (TargetRegisterInfo::isPhysicalRegister(Reg))
852 UsedRegs.push_back(Reg);
853 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000854 }
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000855 }
856
857 // Finally mark unused registers as dead.
858 if (!UsedRegs.empty() || II.getImplicitDefs())
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000859 MIB->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Cheng37fefc22011-08-30 19:09:48 +0000860
861 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000862#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000863 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000864#endif
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000865 TLI->AdjustInstrPostInstrSelection(MIB, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000866}
867
868/// EmitSpecialNode - Generate machine code for a target-independent node and
869/// needed dependencies.
870void InstrEmitter::
871EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
872 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000873 switch (Node->getOpcode()) {
874 default:
875#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000876 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000877#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000878 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000879 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000880 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Cheng37b73872009-07-30 08:33:02 +0000881 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000882 case ISD::TokenFactor: // fall thru
883 break;
884 case ISD::CopyToReg: {
885 unsigned SrcReg;
886 SDValue SrcVal = Node->getOperand(2);
887 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
888 SrcReg = R->getReg();
889 else
890 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000891
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000892 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
893 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
894 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000895
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000896 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
897 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000898 break;
899 }
900 case ISD::CopyFromReg: {
901 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000902 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000903 break;
904 }
Chris Lattner7561d482010-03-14 02:33:54 +0000905 case ISD::EH_LABEL: {
906 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
907 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
908 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
909 break;
910 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000911
Nadav Rotemc05d3062012-09-06 09:17:37 +0000912 case ISD::LIFETIME_START:
913 case ISD::LIFETIME_END: {
914 unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ?
915 TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END;
916
917 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1));
918 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp))
919 .addFrameIndex(FI->getIndex());
920 break;
921 }
922
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000923 case ISD::INLINEASM: {
924 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000925 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000926 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000927
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000928 // Create the inline asm machine instruction.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000929 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(),
930 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000931
932 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000933 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
934 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000935 MIB.addExternalSymbol(AsmStr);
Andrew Trick3af7a672011-09-20 03:06:13 +0000936
Chad Rosierdaeec8f2012-10-30 20:39:19 +0000937 // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
938 // bits.
Evan Chengc36b7062011-01-07 23:50:32 +0000939 int64_t ExtraInfo =
940 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000941 getZExtValue();
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000942 MIB.addImm(ExtraInfo);
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000943
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000944 // Remember to operand index of the group flags.
945 SmallVector<unsigned, 8> GroupIdx;
946
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000947 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000948 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000949 unsigned Flags =
950 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000951 const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000952
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000953 GroupIdx.push_back(MIB->getNumOperands());
954 MIB.addImm(Flags);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000955 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000956
Chris Lattnerdecc2672010-04-07 05:20:54 +0000957 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000958 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000959 case InlineAsm::Kind_RegDef:
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000960 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000961 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000962 // FIXME: Add dead flags for physical and virtual registers defined.
963 // For now, mark physical register defs as implicit to help fast
964 // regalloc. This makes inline asm look a lot like calls.
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000965 MIB.addReg(Reg, RegState::Define |
966 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000967 }
968 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000969 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000970 case InlineAsm::Kind_Clobber:
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000971 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dale Johannesen913d3df2008-09-12 17:49:03 +0000972 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000973 MIB.addReg(Reg, RegState::Define | RegState::EarlyClobber |
974 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000975 }
976 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000977 case InlineAsm::Kind_RegUse: // Use of register.
978 case InlineAsm::Kind_Imm: // Immediate.
979 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000980 // The addressing mode has been selected, just add all of the
981 // operands to the machine instruction.
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000982 for (unsigned j = 0; j != NumVals; ++j, ++i)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700983 AddOperand(MIB, Node->getOperand(i), 0, nullptr, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000984 /*IsDebug=*/false, IsClone, IsCloned);
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000985
986 // Manually set isTied bits.
987 if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) {
988 unsigned DefGroup = 0;
989 if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) {
990 unsigned DefIdx = GroupIdx[DefGroup] + 1;
991 unsigned UseIdx = GroupIdx.back() + 1;
Jakob Stoklund Olesen94083142012-08-31 20:50:53 +0000992 for (unsigned j = 0; j != NumVals; ++j)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +0000993 MIB->tieOperands(DefIdx + j, UseIdx + j);
Jakob Stoklund Olesen66390802012-08-29 22:02:00 +0000994 }
995 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000996 break;
997 }
998 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000999
Chris Lattnercf9a4152010-04-07 05:38:05 +00001000 // Get the mdnode from the asm if it exists and add it to the instruction.
1001 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
1002 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +00001003 if (MD)
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +00001004 MIB.addMetadata(MD);
Andrew Trick3af7a672011-09-20 03:06:13 +00001005
Jakob Stoklund Olesen7f6ece82012-12-20 18:08:09 +00001006 MBB->insert(InsertPos, MIB);
Dan Gohman94b8d7e2008-09-03 16:01:59 +00001007 break;
1008 }
1009 }
1010}
1011
Dan Gohmanbcea8592009-10-10 01:32:21 +00001012/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
1013/// at the given position in the given block.
1014InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
1015 MachineBasicBlock::iterator insertpos)
1016 : MF(mbb->getParent()),
1017 MRI(&MF->getRegInfo()),
1018 TM(&MF->getTarget()),
1019 TII(TM->getInstrInfo()),
1020 TRI(TM->getRegisterInfo()),
1021 TLI(TM->getTargetLowering()),
1022 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +00001023}