blob: 5ec10308dc28db1033460be15fce5f2dc0d74a51 [file] [log] [blame]
Dan Gohmanb8120772009-10-10 01:32:21 +00001//==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==//
Dan Gohmanb10f1a52008-09-03 16:01:59 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dan Gohmanb8120772009-10-10 01:32:21 +000010// This implements the Emit routines for the SelectionDAG class, which creates
11// MachineInstrs based on the decisions of the SelectionDAG instruction
12// selection.
Dan Gohmanb10f1a52008-09-03 16:01:59 +000013//
14//===----------------------------------------------------------------------===//
15
Dan Gohmanb8120772009-10-10 01:32:21 +000016#include "InstrEmitter.h"
Evan Cheng00fd0b62010-03-14 19:56:39 +000017#include "SDNodeDbgValue.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/ADT/Statistic.h"
Dan Gohmanb10f1a52008-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"
Andrew Trick1f54e802013-11-19 05:05:43 +000023#include "llvm/CodeGen/StackMaps.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/DataLayout.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000025#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000027#include "llvm/Support/MathExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Target/TargetInstrInfo.h"
29#include "llvm/Target/TargetLowering.h"
Eric Christopherd9134482014-08-04 21:25:23 +000030#include "llvm/Target/TargetSubtargetInfo.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000031using namespace llvm;
32
Chandler Carruth1b9dde02014-04-22 02:02:50 +000033#define DEBUG_TYPE "instr-emitter"
34
Jakob Stoklund Olesenf7957a92011-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 Gohmanb8120772009-10-10 01:32:21 +000041/// CountResults - The results of target nodes have register or immediate
Chris Lattner11a33812010-12-23 17:24:32 +000042/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanb8120772009-10-10 01:32:21 +000043/// not go into the resulting MachineInstr).
44unsigned InstrEmitter::CountResults(SDNode *Node) {
45 unsigned N = Node->getNumValues();
Chris Lattner3e5fbd72010-12-21 02:38:05 +000046 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanb8120772009-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 Olesenc300ef02012-07-04 23:53:23 +000053/// countOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner11a33812010-12-23 17:24:32 +000054/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanb8120772009-10-10 01:32:21 +000055/// Compute the number of actual operands that will go into the resulting
56/// MachineInstr.
Jakob Stoklund Olesenc300ef02012-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 Olesen10cdd092012-08-24 20:52:42 +000060static unsigned countOperands(SDNode *Node, unsigned NumExpUses,
61 unsigned &NumImpUses) {
Dan Gohmanb8120772009-10-10 01:32:21 +000062 unsigned N = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +000063 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanb8120772009-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 Olesenc300ef02012-07-04 23:53:23 +000067
68 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +000069 NumImpUses = N - NumExpUses;
70 for (unsigned I = N; I > NumExpUses; --I) {
Jakob Stoklund Olesenc300ef02012-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 Gohmanb8120772009-10-10 01:32:21 +000080 return N;
81}
82
Dan Gohmanb10f1a52008-09-03 16:01:59 +000083/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
84/// implicit physical register output.
Dan Gohmanb8120772009-10-10 01:32:21 +000085void InstrEmitter::
Chris Lattner54b8ebc2009-06-26 05:39:02 +000086EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
87 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-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 Yasskin9b43f332010-12-23 00:58:24 +000095 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-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;
Craig Topperc0196b12014-04-14 00:51:57 +0000103 const TargetRegisterClass *UseRC = nullptr;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000104 MVT VT = Node->getSimpleValueType(ResNo);
Jakob Stoklund Olesenc826df92011-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 Cheng968e2e72009-01-16 20:57:18 +0000110 if (!IsClone && !IsCloned)
Jim Grosbach5d049b92014-04-11 01:13:16 +0000111 for (SDNode *User : Node->uses()) {
Evan Cheng968e2e72009-01-16 20:57:18 +0000112 bool Match = true;
Andrew Trick53df4b62011-09-20 03:06:13 +0000113 if (User->getOpcode() == ISD::CopyToReg &&
Evan Cheng968e2e72009-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 Hagglund5e6c3612012-12-13 06:34:11 +0000127 MVT VT = Node->getSimpleValueType(Op.getResNo());
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000128 if (VT == MVT::Other || VT == MVT::Glue)
Evan Cheng968e2e72009-01-16 20:57:18 +0000129 continue;
130 Match = false;
131 if (User->isMachineOpcode()) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000132 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Craig Topperc0196b12014-04-14 00:51:57 +0000133 const TargetRegisterClass *RC = nullptr;
Andrew Trick32aea352012-05-03 01:14:37 +0000134 if (i+II.getNumDefs() < II.getNumOperands()) {
135 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000136 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trick32aea352012-05-03 01:14:37 +0000137 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000138 if (!UseRC)
139 UseRC = RC;
Dan Gohman60a446a2009-04-13 15:38:05 +0000140 else if (RC) {
Jakob Stoklund Olesen1352be22011-09-30 22:18:51 +0000141 const TargetRegisterClass *ComRC =
142 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesen7f91fee2009-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 Gohman60a446a2009-04-13 15:38:05 +0000147 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000148 }
Evan Chenga904f462008-09-16 23:12:11 +0000149 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000150 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000151 MatchReg &= Match;
152 if (VRBase)
153 break;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000154 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000155
Craig Topperc0196b12014-04-14 00:51:57 +0000156 const TargetRegisterClass *SrcRC = nullptr, *DstRC = nullptr;
Rafael Espindola38a7d7c2010-06-29 14:02:34 +0000157 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc826df92011-06-16 22:50:38 +0000158
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000159 // Figure out the register class to create for the destreg.
160 if (VRBase) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000161 DstRC = MRI->getRegClass(VRBase);
Evan Chenga904f462008-09-16 23:12:11 +0000162 } else if (UseRC) {
163 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
164 DstRC = UseRC;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000165 } else {
Evan Chenga904f462008-09-16 23:12:11 +0000166 DstRC = TLI->getRegClassFor(VT);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000167 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000168
Dan Gohmanb10f1a52008-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 Gohmanb8120772009-10-10 01:32:21 +0000175 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000176 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
177 VRBase).addReg(SrcReg);
Dan Gohmanb10f1a52008-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 Yasskin9b43f332010-12-23 00:58:24 +0000184 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-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 Gohmanb8120772009-10-10 01:32:21 +0000190unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
191 unsigned ResNo) const {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000192 if (!Node->hasOneUse())
193 return 0;
194
195 SDNode *User = *Node->use_begin();
Andrew Trick53df4b62011-09-20 03:06:13 +0000196 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohmanb10f1a52008-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 Olesenb109a7b2012-12-20 18:08:09 +0000206void InstrEmitter::CreateVirtualRegisters(SDNode *Node,
207 MachineInstrBuilder &MIB,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000208 const MCInstrDesc &II,
Evan Cheng968e2e72009-01-16 20:57:18 +0000209 bool IsClone, bool IsCloned,
Evan Chenged74d8a2009-01-09 22:44:02 +0000210 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattnerb06015a2010-02-09 19:54:29 +0000211 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000212 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
213
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000214 unsigned NumResults = CountResults(Node);
Dan Gohmanb10f1a52008-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 Gohman60a446a2009-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 Gohmanb10f1a52008-09-03 16:01:59 +0000219 unsigned VRBase = 0;
Andrew Trick32aea352012-05-03 01:14:37 +0000220 const TargetRegisterClass *RC =
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000221 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Jakob Stoklund Olesenb6b35a42014-01-14 06:18:38 +0000222 // 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 Chengede2ce72009-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 Olesenb109a7b2012-12-20 18:08:09 +0000240 MIB.addReg(VRBase, RegState::Define);
Evan Chengede2ce72009-07-11 01:06:50 +0000241 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000242
Evan Chengede2ce72009-07-11 01:06:50 +0000243 if (!VRBase && !IsClone && !IsCloned)
Jim Grosbach5d049b92014-04-11 01:13:16 +0000244 for (SDNode *User : Node->uses()) {
Andrew Trick53df4b62011-09-20 03:06:13 +0000245 if (User->getOpcode() == ISD::CopyToReg &&
Evan Cheng968e2e72009-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 Gohmanb8120772009-10-10 01:32:21 +0000250 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000251 if (RegRC == RC) {
252 VRBase = Reg;
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000253 MIB.addReg(VRBase, RegState::Define);
Dan Gohman60a446a2009-04-13 15:38:05 +0000254 break;
255 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000256 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000257 }
258 }
Dan Gohmanb10f1a52008-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 Gohmanb10f1a52008-09-03 16:01:59 +0000263 assert(RC && "Isn't a register operand!");
Dan Gohmanb8120772009-10-10 01:32:21 +0000264 VRBase = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000265 MIB.addReg(VRBase, RegState::Define);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000266 }
267
Chandler Carrutheae2d282014-07-25 09:19:18 +0000268 // If this def corresponds to a result of the SDNode insert the VRBase into
269 // the lookup map.
270 if (i < NumResults) {
271 SDValue Op(Node, i);
272 if (IsClone)
273 VRBaseMap.erase(Op);
274 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
275 (void)isNew; // Silence compiler warning.
276 assert(isNew && "Node emitted out of order - early");
277 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000278 }
279}
280
281/// getVR - Return the virtual register corresponding to the specified result
282/// of the specified node.
Dan Gohmanb8120772009-10-10 01:32:21 +0000283unsigned InstrEmitter::getVR(SDValue Op,
284 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000285 if (Op.isMachineOpcode() &&
Chris Lattnerb06015a2010-02-09 19:54:29 +0000286 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000287 // Add an IMPLICIT_DEF instruction before every use.
288 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Cheng6cc775f2011-06-28 19:10:37 +0000289 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000290 // does not include operand register class info.
291 if (!VReg) {
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000292 const TargetRegisterClass *RC =
293 TLI->getRegClassFor(Op.getSimpleValueType());
Dan Gohmanb8120772009-10-10 01:32:21 +0000294 VReg = MRI->createVirtualRegister(RC);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000295 }
Dan Gohmanfbdba812010-07-10 13:55:45 +0000296 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattnerb06015a2010-02-09 19:54:29 +0000297 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000298 return VReg;
299 }
300
301 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
302 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
303 return I->second;
304}
305
Bill Wendlingf8244892010-08-30 04:36:50 +0000306
Dan Gohman60a446a2009-04-13 15:38:05 +0000307/// AddRegisterOperand - Add the specified register as an operand to the
308/// specified machine instr. Insert register copies if the register is
309/// not in the required register class.
310void
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000311InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB,
312 SDValue Op,
Dan Gohmanb8120772009-10-10 01:32:21 +0000313 unsigned IIOpNum,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000314 const MCInstrDesc *II,
Evan Cheng563fe3c2010-03-25 01:38:16 +0000315 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000316 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson9f944592009-08-11 20:47:22 +0000317 assert(Op.getValueType() != MVT::Other &&
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000318 Op.getValueType() != MVT::Glue &&
Chris Lattner11a33812010-12-23 17:24:32 +0000319 "Chain and glue operands should occur at end of operand list!");
Dan Gohman60a446a2009-04-13 15:38:05 +0000320 // Get/emit the operand.
321 unsigned VReg = getVR(Op, VRBaseMap);
322 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
323
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000324 const MCInstrDesc &MCID = MIB->getDesc();
Evan Cheng6cc775f2011-06-28 19:10:37 +0000325 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
326 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohman60a446a2009-04-13 15:38:05 +0000327
328 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesene92e5ee2011-09-22 21:39:34 +0000329 // a new virtual register and copy the value into it, but first attempt to
330 // shrink VReg's register class within reason. For example, if VReg == GR32
331 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohman60a446a2009-04-13 15:38:05 +0000332 if (II) {
Craig Topperc0196b12014-04-14 00:51:57 +0000333 const TargetRegisterClass *DstRC = nullptr;
Chris Lattner76673322009-07-29 21:36:49 +0000334 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000335 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Jakob Stoklund Olesene92e5ee2011-09-22 21:39:34 +0000336 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000337 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000338 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
339 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000340 VReg = NewVReg;
341 }
342 }
343
Dan Gohmanac555102010-04-30 00:08:21 +0000344 // If this value has only one use, that use is a kill. This is a
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000345 // conservative approximation. InstrEmitter does trivial coalescing
346 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman2f277c82010-05-14 22:01:14 +0000347 // Avoid kill flags on Schedule cloned nodes, since there will be
348 // multiple uses.
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000349 // Tied operands are never killed, so we need to check that. And that
350 // means we need to determine the index of the operand.
351 bool isKill = Op.hasOneUse() &&
352 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman2f277c82010-05-14 22:01:14 +0000353 !IsDebug &&
354 !(IsClone || IsCloned);
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000355 if (isKill) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000356 unsigned Idx = MIB->getNumOperands();
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000357 while (Idx > 0 &&
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000358 MIB->getOperand(Idx-1).isReg() &&
359 MIB->getOperand(Idx-1).isImplicit())
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000360 --Idx;
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000361 bool isTied = MCID.getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000362 if (isTied)
363 isKill = false;
364 }
Dan Gohmanac555102010-04-30 00:08:21 +0000365
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000366 MIB.addReg(VReg, getDefRegState(isOptDef) | getKillRegState(isKill) |
367 getDebugRegState(IsDebug));
Dan Gohman60a446a2009-04-13 15:38:05 +0000368}
369
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000370/// AddOperand - Add the specified operand to the specified machine instr. II
371/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000372/// operand number (in the II) that we are adding.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000373void InstrEmitter::AddOperand(MachineInstrBuilder &MIB,
374 SDValue Op,
Dan Gohmanb8120772009-10-10 01:32:21 +0000375 unsigned IIOpNum,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000376 const MCInstrDesc *II,
Evan Cheng563fe3c2010-03-25 01:38:16 +0000377 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000378 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000379 if (Op.isMachineOpcode()) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000380 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000381 IsDebug, IsClone, IsCloned);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000382 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000383 MIB.addImm(C->getSExtValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000384 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000385 MIB.addFPImm(F->getConstantFPValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000386 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000387 // Turn additional physreg operands into implicit uses on non-variadic
388 // instructions. This is used by call and return instructions passing
389 // arguments in registers.
390 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000391 MIB.addReg(R->getReg(), getImplRegState(Imp));
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +0000392 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000393 MIB.addRegMask(RM->getRegMask());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000394 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000395 MIB.addGlobalAddress(TGA->getGlobal(), TGA->getOffset(),
396 TGA->getTargetFlags());
Dan Gohman60a446a2009-04-13 15:38:05 +0000397 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000398 MIB.addMBB(BBNode->getBasicBlock());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000399 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000400 MIB.addFrameIndex(FI->getIndex());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000401 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000402 MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000403 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
404 int Offset = CP->getOffset();
405 unsigned Align = CP->getAlignment();
Chris Lattner229907c2011-07-18 04:54:35 +0000406 Type *Type = CP->getType();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000407 // MachineConstantPool wants an explicit alignment.
408 if (Align == 0) {
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000409 Align = MF->getDataLayout().getPrefTypeAlignment(Type);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000410 if (Align == 0) {
411 // Alignment of vector types. FIXME!
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000412 Align = MF->getDataLayout().getTypeAllocSize(Type);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000413 }
414 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000415
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000416 unsigned Idx;
Dan Gohmanb8120772009-10-10 01:32:21 +0000417 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000418 if (CP->isMachineConstantPoolEntry())
Dan Gohmanb8120772009-10-10 01:32:21 +0000419 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000420 else
Dan Gohmanb8120772009-10-10 01:32:21 +0000421 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000422 MIB.addConstantPoolIndex(Idx, Offset, CP->getTargetFlags());
Bill Wendling24c79f22008-09-16 21:48:12 +0000423 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000424 MIB.addExternalSymbol(ES->getSymbol(), ES->getTargetFlags());
Rafael Espindola36b718f2015-06-22 17:46:53 +0000425 } else if (auto *SymNode = dyn_cast<MCSymbolSDNode>(Op)) {
426 MIB.addSym(SymNode->getMCSymbol());
Dan Gohman6c938802009-10-30 01:27:03 +0000427 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000428 MIB.addBlockAddress(BA->getBlockAddress(),
429 BA->getOffset(),
430 BA->getTargetFlags());
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +0000431 } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000432 MIB.addTargetIndex(TI->getIndex(), TI->getOffset(), TI->getTargetFlags());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000433 } else {
Owen Anderson9f944592009-08-11 20:47:22 +0000434 assert(Op.getValueType() != MVT::Other &&
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000435 Op.getValueType() != MVT::Glue &&
Chris Lattner11a33812010-12-23 17:24:32 +0000436 "Chain and glue operands should occur at end of operand list!");
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000437 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000438 IsDebug, IsClone, IsCloned);
Dan Gohman60a446a2009-04-13 15:38:05 +0000439 }
440}
441
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000442unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000443 MVT VT, DebugLoc DL) {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000444 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
445 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
446
447 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
448 // within reason.
449 if (RC && RC != VRC)
450 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
451
452 // VReg has been adjusted. It can be used with SubIdx operands now.
453 if (RC)
454 return VReg;
455
456 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
457 // register instead.
458 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
459 assert(RC && "No legal register class for VT supports that SubIdx");
460 unsigned NewReg = MRI->createVirtualRegister(RC);
461 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
462 .addReg(VReg);
463 return NewReg;
464}
465
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000466/// EmitSubregNode - Generate machine code for subreg nodes.
467///
Andrew Trick53df4b62011-09-20 03:06:13 +0000468void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman2f277c82010-05-14 22:01:14 +0000469 DenseMap<SDValue, unsigned> &VRBaseMap,
470 bool IsClone, bool IsCloned) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000471 unsigned VRBase = 0;
472 unsigned Opc = Node->getMachineOpcode();
Andrew Trick53df4b62011-09-20 03:06:13 +0000473
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000474 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
475 // the CopyToReg'd destination register instead of creating a new vreg.
Jim Grosbach5d049b92014-04-11 01:13:16 +0000476 for (SDNode *User : Node->uses()) {
Andrew Trick53df4b62011-09-20 03:06:13 +0000477 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000478 User->getOperand(2).getNode() == Node) {
479 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
480 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
481 VRBase = DestReg;
482 break;
483 }
484 }
485 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000486
Chris Lattnerb06015a2010-02-09 19:54:29 +0000487 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000488 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
489 // constraints on the %dst register, COPY can target all legal register
490 // classes.
Dan Gohmaneffb8942008-09-12 16:56:44 +0000491 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000492 const TargetRegisterClass *TRC =
493 TLI->getRegClassFor(Node->getSimpleValueType(0));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000494
Dan Gohman60a446a2009-04-13 15:38:05 +0000495 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng260acf32011-01-05 23:06:49 +0000496 MachineInstr *DefMI = MRI->getVRegDef(VReg);
497 unsigned SrcReg, DstReg, DefSubIdx;
498 if (DefMI &&
499 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Chengb1712282012-07-11 18:55:07 +0000500 SubIdx == DefSubIdx &&
501 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng260acf32011-01-05 23:06:49 +0000502 // Optimize these:
503 // r1025 = s/zext r1024, 4
504 // r1026 = extract_subreg r1025, 4
505 // to a copy
506 // r1026 = copy r1024
Evan Cheng260acf32011-01-05 23:06:49 +0000507 VRBase = MRI->createVirtualRegister(TRC);
508 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
509 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen3e3cdec2012-06-29 21:00:03 +0000510 MRI->clearKillFlags(SrcReg);
Evan Cheng260acf32011-01-05 23:06:49 +0000511 } else {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000512 // VReg may not support a SubIdx sub-register, and we may need to
513 // constrain its register class or issue a COPY to a compatible register
514 // class.
515 VReg = ConstrainForSubReg(VReg, SubIdx,
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000516 Node->getOperand(0).getSimpleValueType(),
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000517 Node->getDebugLoc());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000518
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000519 // Create the destreg if it is missing.
520 if (VRBase == 0)
521 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng260acf32011-01-05 23:06:49 +0000522
523 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000524 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
525 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000526 }
Chris Lattnerb06015a2010-02-09 19:54:29 +0000527 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
528 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000529 SDValue N0 = Node->getOperand(0);
530 SDValue N1 = Node->getOperand(1);
531 SDValue N2 = Node->getOperand(2);
Dan Gohmaneffb8942008-09-12 16:56:44 +0000532 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmane5cd1fc2009-04-14 22:17:14 +0000533
Jakob Stoklund Olesen8ff52c42011-10-05 18:31:00 +0000534 // Figure out the register class to create for the destreg. It should be
535 // the largest legal register class supporting SubIdx sub-registers.
536 // RegisterCoalescer will constrain it further if it decides to eliminate
537 // the INSERT_SUBREG instruction.
538 //
539 // %dst = INSERT_SUBREG %src, %sub, SubIdx
540 //
541 // is lowered by TwoAddressInstructionPass to:
542 //
543 // %dst = COPY %src
544 // %dst:SubIdx = COPY %sub
545 //
546 // There is no constraint on the %src register class.
547 //
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000548 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0));
Jakob Stoklund Olesen8ff52c42011-10-05 18:31:00 +0000549 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
550 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
551
552 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanb8120772009-10-10 01:32:21 +0000553 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohmane5cd1fc2009-04-14 22:17:14 +0000554
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000555 // Create the insert_subreg or subreg_to_reg machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000556 MachineInstrBuilder MIB =
557 BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase);
Andrew Trick53df4b62011-09-20 03:06:13 +0000558
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000559 // If creating a subreg_to_reg, then the first input operand
560 // is an implicit value immediate, otherwise it's a register
Chris Lattnerb06015a2010-02-09 19:54:29 +0000561 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000562 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000563 MIB.addImm(SD->getZExtValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000564 } else
Craig Topperc0196b12014-04-14 00:51:57 +0000565 AddOperand(MIB, N0, 0, nullptr, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000566 IsClone, IsCloned);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000567 // Add the subregster being inserted
Craig Topperc0196b12014-04-14 00:51:57 +0000568 AddOperand(MIB, N1, 0, nullptr, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000569 IsClone, IsCloned);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000570 MIB.addImm(SubIdx);
571 MBB->insert(InsertPos, MIB);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000572 } else
Torok Edwinfbcc6632009-07-14 16:55:14 +0000573 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick53df4b62011-09-20 03:06:13 +0000574
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000575 SDValue Op(Node, 0);
576 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000577 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000578 assert(isNew && "Node emitted out of order - early");
579}
580
Dan Gohman6c142632009-04-13 21:06:25 +0000581/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
582/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohman60a446a2009-04-13 15:38:05 +0000583/// register is constrained to be in a particular register class.
584///
585void
Dan Gohmanb8120772009-10-10 01:32:21 +0000586InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
587 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman60a446a2009-04-13 15:38:05 +0000588 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohman60a446a2009-04-13 15:38:05 +0000589
Dan Gohman60a446a2009-04-13 15:38:05 +0000590 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000591 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trick32aea352012-05-03 01:14:37 +0000592 const TargetRegisterClass *DstRC =
593 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanb8120772009-10-10 01:32:21 +0000594 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000595 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
596 NewVReg).addReg(VReg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000597
598 SDValue Op(Node, 0);
599 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000600 (void)isNew; // Silence compiler warning.
Dan Gohman60a446a2009-04-13 15:38:05 +0000601 assert(isNew && "Node emitted out of order - early");
602}
603
Evan Chengf869d9a2010-05-04 00:22:40 +0000604/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
605///
606void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman2f277c82010-05-14 22:01:14 +0000607 DenseMap<SDValue, unsigned> &VRBaseMap,
608 bool IsClone, bool IsCloned) {
Owen Anderson5fc8b772011-06-16 18:17:13 +0000609 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
610 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trick32aea352012-05-03 01:14:37 +0000611 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000612 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
613 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II, NewVReg);
Evan Chengf869d9a2010-05-04 00:22:40 +0000614 unsigned NumOps = Node->getNumOperands();
Owen Anderson5fc8b772011-06-16 18:17:13 +0000615 assert((NumOps & 1) == 1 &&
616 "REG_SEQUENCE must have an odd number of operands!");
Owen Anderson5fc8b772011-06-16 18:17:13 +0000617 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengf869d9a2010-05-04 00:22:40 +0000618 SDValue Op = Node->getOperand(i);
Owen Anderson5fc8b772011-06-16 18:17:13 +0000619 if ((i & 1) == 0) {
Pete Cooperc52eeed2012-01-18 04:16:16 +0000620 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
621 // Skip physical registers as they don't have a vreg to get and we'll
622 // insert copies for them in TwoAddressInstructionPass anyway.
623 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
624 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
625 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
626 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
627 const TargetRegisterClass *SRC =
Evan Chenge7fc64a2010-05-18 20:03:28 +0000628 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Cooperc52eeed2012-01-18 04:16:16 +0000629 if (SRC && SRC != RC) {
630 MRI->setRegClass(NewVReg, SRC);
631 RC = SRC;
632 }
Evan Cheng45b3f702010-05-18 20:07:47 +0000633 }
Evan Chengf869d9a2010-05-04 00:22:40 +0000634 }
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000635 AddOperand(MIB, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000636 IsClone, IsCloned);
Evan Chengf869d9a2010-05-04 00:22:40 +0000637 }
638
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000639 MBB->insert(InsertPos, MIB);
Evan Chengf869d9a2010-05-04 00:22:40 +0000640 SDValue Op(Node, 0);
641 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000642 (void)isNew; // Silence compiler warning.
Evan Chengf869d9a2010-05-04 00:22:40 +0000643 assert(isNew && "Node emitted out of order - early");
644}
645
Evan Cheng563fe3c2010-03-25 01:38:16 +0000646/// EmitDbgValue - Generate machine instruction for a dbg_value node.
647///
Dan Gohman8acc8f72010-04-30 19:35:33 +0000648MachineInstr *
649InstrEmitter::EmitDbgValue(SDDbgValue *SD,
650 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Cheng563fe3c2010-03-25 01:38:16 +0000651 uint64_t Offset = SD->getOffset();
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000652 MDNode *Var = SD->getVariable();
653 MDNode *Expr = SD->getExpression();
Evan Cheng563fe3c2010-03-25 01:38:16 +0000654 DebugLoc DL = SD->getDebugLoc();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000655 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
Duncan P. N. Exon Smith3bef6a32015-04-03 19:20:26 +0000656 "Expected inlined-at fields to agree");
Evan Cheng563fe3c2010-03-25 01:38:16 +0000657
Dale Johannesen582565e2010-04-25 21:33:54 +0000658 if (SD->getKind() == SDDbgValue::FRAMEIX) {
659 // Stack address; this needs to be lowered in target-dependent fashion.
660 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
David Blaikie0252265b2013-06-16 20:34:15 +0000661 return BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE))
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000662 .addFrameIndex(SD->getFrameIx())
663 .addImm(Offset)
664 .addMetadata(Var)
665 .addMetadata(Expr);
Dale Johannesen582565e2010-04-25 21:33:54 +0000666 }
667 // Otherwise, we're going to create an instruction here.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000668 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000669 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
670 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesend1976e32010-04-06 21:59:56 +0000671 SDNode *Node = SD->getSDNode();
672 SDValue Op = SDValue(Node, SD->getResNo());
673 // It's possible we replaced this SDNode with other(s) and therefore
674 // didn't generate code for it. It's better to catch these cases where
675 // they happen and transfer the debug info, but trying to guarantee that
676 // in all cases would be very fragile; this is a safeguard for any
677 // that were missed.
678 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
679 if (I==VRBaseMap.end())
680 MIB.addReg(0U); // undef
681 else
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000682 AddOperand(MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000683 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000684 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000685 const Value *V = SD->getConst();
686 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patelf071d722011-06-24 20:46:11 +0000687 if (CI->getBitWidth() > 64)
688 MIB.addCImm(CI);
Dan Gohman7de01ec2010-05-07 22:19:08 +0000689 else
690 MIB.addImm(CI->getSExtValue());
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000691 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Cheng563fe3c2010-03-25 01:38:16 +0000692 MIB.addFPImm(CF);
Dale Johannesen49de0602010-03-10 22:13:47 +0000693 } else {
694 // Could be an Undef. In any case insert an Undef so we can see what we
695 // dropped.
Evan Cheng563fe3c2010-03-25 01:38:16 +0000696 MIB.addReg(0U);
Dale Johannesen49de0602010-03-10 22:13:47 +0000697 }
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000698 } else {
699 // Insert an Undef so we can see what we dropped.
Evan Cheng563fe3c2010-03-25 01:38:16 +0000700 MIB.addReg(0U);
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000701 }
Evan Cheng563fe3c2010-03-25 01:38:16 +0000702
Adrian Prantl32da8892014-04-25 20:49:25 +0000703 // Indirect addressing is indicated by an Imm as the second parameter.
704 if (SD->isIndirect())
Adrian Prantl418d1d12013-07-09 20:28:37 +0000705 MIB.addImm(Offset);
Adrian Prantl32da8892014-04-25 20:49:25 +0000706 else {
707 assert(Offset == 0 && "direct value cannot have an offset");
Adrian Prantl418d1d12013-07-09 20:28:37 +0000708 MIB.addReg(0U, RegState::Debug);
Adrian Prantl32da8892014-04-25 20:49:25 +0000709 }
Adrian Prantl418d1d12013-07-09 20:28:37 +0000710
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000711 MIB.addMetadata(Var);
712 MIB.addMetadata(Expr);
Adrian Prantl418d1d12013-07-09 20:28:37 +0000713
Evan Cheng563fe3c2010-03-25 01:38:16 +0000714 return &*MIB;
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000715}
716
Chris Lattnere2a504e2010-03-25 04:41:16 +0000717/// EmitMachineNode - Generate machine code for a target-specific node and
718/// needed dependencies.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000719///
Chris Lattnere2a504e2010-03-25 04:41:16 +0000720void InstrEmitter::
721EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohman25c16532010-05-01 00:01:06 +0000722 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattnere2a504e2010-03-25 04:41:16 +0000723 unsigned Opc = Node->getMachineOpcode();
Andrew Trick53df4b62011-09-20 03:06:13 +0000724
Chris Lattnere2a504e2010-03-25 04:41:16 +0000725 // Handle subreg insert/extract specially
Andrew Trick53df4b62011-09-20 03:06:13 +0000726 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattnere2a504e2010-03-25 04:41:16 +0000727 Opc == TargetOpcode::INSERT_SUBREG ||
728 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman2f277c82010-05-14 22:01:14 +0000729 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerddca7b02010-03-24 23:41:19 +0000730 return;
731 }
732
Chris Lattnere2a504e2010-03-25 04:41:16 +0000733 // Handle COPY_TO_REGCLASS specially.
734 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
735 EmitCopyToRegClassNode(Node, VRBaseMap);
736 return;
737 }
738
Evan Chengf869d9a2010-05-04 00:22:40 +0000739 // Handle REG_SEQUENCE specially.
740 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman2f277c82010-05-14 22:01:14 +0000741 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengf869d9a2010-05-04 00:22:40 +0000742 return;
743 }
744
Chris Lattnere2a504e2010-03-25 04:41:16 +0000745 if (Opc == TargetOpcode::IMPLICIT_DEF)
746 // We want a unique VR for each IMPLICIT_DEF use.
747 return;
Andrew Trick53df4b62011-09-20 03:06:13 +0000748
Evan Cheng6cc775f2011-06-28 19:10:37 +0000749 const MCInstrDesc &II = TII->get(Opc);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000750 unsigned NumResults = CountResults(Node);
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000751 unsigned NumDefs = II.getNumDefs();
Craig Topperc0196b12014-04-14 00:51:57 +0000752 const MCPhysReg *ScratchRegs = nullptr;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000753
Andrew Trickfbb278c2014-03-05 07:08:16 +0000754 // Handle STACKMAP and PATCHPOINT specially and then use the generic code.
755 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
756 // Stackmaps do not have arguments and do not preserve their calling
757 // convention. However, to simplify runtime support, they clobber the same
758 // scratch registers as AnyRegCC.
759 unsigned CC = CallingConv::AnyReg;
760 if (Opc == TargetOpcode::PATCHPOINT) {
761 CC = Node->getConstantOperandVal(PatchPointOpers::CCPos);
762 NumDefs = NumResults;
763 }
Juergen Ributzka87ed9062013-11-09 01:51:33 +0000764 ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC);
765 }
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000766
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000767 unsigned NumImpUses = 0;
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +0000768 unsigned NodeOperands =
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000769 countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses);
Craig Topperc0196b12014-04-14 00:51:57 +0000770 bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=nullptr;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000771#ifndef NDEBUG
772 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner4690af82010-03-25 05:40:48 +0000773 if (II.isVariadic())
774 assert(NumMIOperands >= II.getNumOperands() &&
775 "Too few operands for a variadic node!");
776 else
777 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000778 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
779 NumImpUses &&
Chris Lattner4690af82010-03-25 05:40:48 +0000780 "#operands for dag node doesn't match .td file!");
Chris Lattnere2a504e2010-03-25 04:41:16 +0000781#endif
782
783 // Create the new machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000784 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohman86936502010-06-18 23:28:01 +0000785
Chris Lattnere2a504e2010-03-25 04:41:16 +0000786 // Add result register values for things that are defined by this
787 // instruction.
788 if (NumResults)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000789 CreateVirtualRegisters(Node, MIB, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick53df4b62011-09-20 03:06:13 +0000790
Chris Lattnere2a504e2010-03-25 04:41:16 +0000791 // Emit all of the actual operands of this instruction, adding them to the
792 // instruction as appropriate.
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000793 bool HasOptPRefs = NumDefs > NumResults;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000794 assert((!HasOptPRefs || !HasPhysRegOuts) &&
795 "Unable to cope with optional defs and phys regs defs!");
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000796 unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000797 for (unsigned i = NumSkip; i != NodeOperands; ++i)
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000798 AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II,
Dan Gohman2f277c82010-05-14 22:01:14 +0000799 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000800
Juergen Ributzka87ed9062013-11-09 01:51:33 +0000801 // Add scratch registers as implicit def and early clobber
802 if (ScratchRegs)
803 for (unsigned i = 0; ScratchRegs[i]; ++i)
804 MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine |
805 RegState::EarlyClobber);
806
Chris Lattnere2a504e2010-03-25 04:41:16 +0000807 // Transfer all of the memory reference descriptions of this instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000808 MIB.setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
Chris Lattnere2a504e2010-03-25 04:41:16 +0000809 cast<MachineSDNode>(Node)->memoperands_end());
810
Dan Gohman34396292010-07-06 20:24:04 +0000811 // Insert the instruction into position in the block. This needs to
812 // happen before any custom inserter hook is called so that the
813 // hook knows where in the block to insert the replacement code.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000814 MBB->insert(InsertPos, MIB);
Dan Gohman34396292010-07-06 20:24:04 +0000815
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000816 // The MachineInstr may also define physregs instead of virtregs. These
817 // physreg values can reach other instructions in different ways:
818 //
819 // 1. When there is a use of a Node value beyond the explicitly defined
820 // virtual registers, we emit a CopyFromReg for one of the implicitly
821 // defined physregs. This only happens when HasPhysRegOuts is true.
822 //
823 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
824 //
825 // 3. A glued instruction may implicitly use a physreg.
826 //
827 // 4. A glued instruction may use a RegisterSDNode operand.
828 //
829 // Collect all the used physreg defs, and make sure that any unused physreg
830 // defs are marked as dead.
831 SmallVector<unsigned, 8> UsedRegs;
832
Eric Christopher1b93e7b2010-12-08 22:21:42 +0000833 // Additional results must be physical register defs.
Chris Lattnere2a504e2010-03-25 04:41:16 +0000834 if (HasPhysRegOuts) {
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000835 for (unsigned i = NumDefs; i < NumResults; ++i) {
836 unsigned Reg = II.getImplicitDefs()[i - NumDefs];
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000837 if (!Node->hasAnyUseOfValue(i))
838 continue;
839 // This implicitly defined physreg has a use.
840 UsedRegs.push_back(Reg);
841 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000842 }
843 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000844
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000845 // Scan the glue chain for any used physregs.
846 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
847 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
848 if (F->getOpcode() == ISD::CopyFromReg) {
849 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
850 continue;
Hal Finkelb9a3d612012-02-24 17:53:59 +0000851 } else if (F->getOpcode() == ISD::CopyToReg) {
852 // Skip CopyToReg nodes that are internal to the glue chain.
853 continue;
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000854 }
855 // Collect declared implicit uses.
856 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
857 UsedRegs.append(MCID.getImplicitUses(),
858 MCID.getImplicitUses() + MCID.getNumImplicitUses());
859 // In addition to declared implicit uses, we must also check for
860 // direct RegisterSDNode operands.
861 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
862 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
863 unsigned Reg = R->getReg();
864 if (TargetRegisterInfo::isPhysicalRegister(Reg))
865 UsedRegs.push_back(Reg);
866 }
Chris Lattner4690af82010-03-25 05:40:48 +0000867 }
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000868 }
869
870 // Finally mark unused registers as dead.
871 if (!UsedRegs.empty() || II.getImplicitDefs())
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000872 MIB->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Chenge6fba772011-08-30 19:09:48 +0000873
874 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick52363bd2011-09-20 18:22:31 +0000875 if (II.hasPostISelHook())
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000876 TLI->AdjustInstrPostInstrSelection(MIB, Node);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000877}
878
879/// EmitSpecialNode - Generate machine code for a target-independent node and
880/// needed dependencies.
881void InstrEmitter::
882EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
883 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000884 switch (Node->getOpcode()) {
885 default:
886#ifndef NDEBUG
Dan Gohmanb8120772009-10-10 01:32:21 +0000887 Node->dump();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000888#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +0000889 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000890 case ISD::EntryToken:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000891 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Chenge62288f2009-07-30 08:33:02 +0000892 case ISD::MERGE_VALUES:
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000893 case ISD::TokenFactor: // fall thru
894 break;
895 case ISD::CopyToReg: {
896 unsigned SrcReg;
897 SDValue SrcVal = Node->getOperand(2);
898 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
899 SrcReg = R->getReg();
900 else
901 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick53df4b62011-09-20 03:06:13 +0000902
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000903 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
904 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
905 break;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000906
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000907 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
908 DestReg).addReg(SrcReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000909 break;
910 }
911 case ISD::CopyFromReg: {
912 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Cheng968e2e72009-01-16 20:57:18 +0000913 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000914 break;
915 }
Chris Lattneree2fbbc2010-03-14 02:33:54 +0000916 case ISD::EH_LABEL: {
917 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
918 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
919 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
920 break;
921 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000922
Nadav Rotem7c277da2012-09-06 09:17:37 +0000923 case ISD::LIFETIME_START:
924 case ISD::LIFETIME_END: {
925 unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ?
926 TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END;
927
928 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1));
929 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp))
930 .addFrameIndex(FI->getIndex());
931 break;
932 }
933
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000934 case ISD::INLINEASM: {
935 unsigned NumOps = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000936 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner11a33812010-12-23 17:24:32 +0000937 --NumOps; // Ignore the glue operand.
Andrew Trick53df4b62011-09-20 03:06:13 +0000938
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000939 // Create the inline asm machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000940 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(),
941 TII->get(TargetOpcode::INLINEASM));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000942
943 // Add the asm string as an external symbol operand.
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000944 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
945 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000946 MIB.addExternalSymbol(AsmStr);
Andrew Trick53df4b62011-09-20 03:06:13 +0000947
Chad Rosier909f6a02012-10-30 20:39:19 +0000948 // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
949 // bits.
Evan Cheng6eb516d2011-01-07 23:50:32 +0000950 int64_t ExtraInfo =
951 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesen4d887f7c2010-07-02 20:16:09 +0000952 getZExtValue();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000953 MIB.addImm(ExtraInfo);
Dale Johannesen4d887f7c2010-07-02 20:16:09 +0000954
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000955 // Remember to operand index of the group flags.
956 SmallVector<unsigned, 8> GroupIdx;
957
Hal Finkel1e5733b2015-04-20 00:01:30 +0000958 // Remember registers that are part of early-clobber defs.
959 SmallVector<unsigned, 8> ECRegs;
960
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000961 // Add all of the operand registers to the instruction.
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000962 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmaneffb8942008-09-12 16:56:44 +0000963 unsigned Flags =
964 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000965 const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick53df4b62011-09-20 03:06:13 +0000966
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000967 GroupIdx.push_back(MIB->getNumOperands());
968 MIB.addImm(Flags);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000969 ++i; // Skip the ID value.
Andrew Trick53df4b62011-09-20 03:06:13 +0000970
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000971 switch (InlineAsm::getKind(Flags)) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000972 default: llvm_unreachable("Bad flags!");
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000973 case InlineAsm::Kind_RegDef:
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000974 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000975 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen8bc5eca2010-06-09 20:05:00 +0000976 // FIXME: Add dead flags for physical and virtual registers defined.
977 // For now, mark physical register defs as implicit to help fast
978 // regalloc. This makes inline asm look a lot like calls.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000979 MIB.addReg(Reg, RegState::Define |
980 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000981 }
982 break;
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000983 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesen537a3022011-06-27 04:08:33 +0000984 case InlineAsm::Kind_Clobber:
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000985 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dale Johannesen1f3ab862008-09-12 17:49:03 +0000986 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000987 MIB.addReg(Reg, RegState::Define | RegState::EarlyClobber |
988 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Hal Finkel1e5733b2015-04-20 00:01:30 +0000989 ECRegs.push_back(Reg);
Dale Johannesen1f3ab862008-09-12 17:49:03 +0000990 }
991 break;
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000992 case InlineAsm::Kind_RegUse: // Use of register.
993 case InlineAsm::Kind_Imm: // Immediate.
994 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000995 // The addressing mode has been selected, just add all of the
996 // operands to the machine instruction.
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +0000997 for (unsigned j = 0; j != NumVals; ++j, ++i)
Craig Topperc0196b12014-04-14 00:51:57 +0000998 AddOperand(MIB, Node->getOperand(i), 0, nullptr, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000999 /*IsDebug=*/false, IsClone, IsCloned);
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001000
1001 // Manually set isTied bits.
1002 if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) {
1003 unsigned DefGroup = 0;
1004 if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) {
1005 unsigned DefIdx = GroupIdx[DefGroup] + 1;
1006 unsigned UseIdx = GroupIdx.back() + 1;
Jakob Stoklund Olesen5c8eda02012-08-31 20:50:53 +00001007 for (unsigned j = 0; j != NumVals; ++j)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001008 MIB->tieOperands(DefIdx + j, UseIdx + j);
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001009 }
1010 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001011 break;
1012 }
1013 }
Andrew Trick53df4b62011-09-20 03:06:13 +00001014
Hal Finkel1e5733b2015-04-20 00:01:30 +00001015 // GCC inline assembly allows input operands to also be early-clobber
1016 // output operands (so long as the operand is written only after it's
1017 // used), but this does not match the semantics of our early-clobber flag.
1018 // If an early-clobber operand register is also an input operand register,
1019 // then remove the early-clobber flag.
1020 for (unsigned Reg : ECRegs) {
1021 if (MIB->readsRegister(Reg, TRI)) {
1022 MachineOperand *MO = MIB->findRegisterDefOperand(Reg, false, TRI);
1023 assert(MO && "No def operand for clobbered register?");
1024 MO->setIsEarlyClobber(false);
1025 }
1026 }
1027
Chris Lattner51065562010-04-07 05:38:05 +00001028 // Get the mdnode from the asm if it exists and add it to the instruction.
1029 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
1030 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsona1e34302010-04-26 22:56:56 +00001031 if (MD)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001032 MIB.addMetadata(MD);
Andrew Trick53df4b62011-09-20 03:06:13 +00001033
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001034 MBB->insert(InsertPos, MIB);
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001035 break;
1036 }
1037 }
1038}
1039
Dan Gohmanb8120772009-10-10 01:32:21 +00001040/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
1041/// at the given position in the given block.
1042InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
1043 MachineBasicBlock::iterator insertpos)
Eric Christopher147c2ea2014-10-09 01:35:29 +00001044 : MF(mbb->getParent()), MRI(&MF->getRegInfo()),
1045 TII(MF->getSubtarget().getInstrInfo()),
1046 TRI(MF->getSubtarget().getRegisterInfo()),
1047 TLI(MF->getSubtarget().getTargetLowering()), MBB(mbb),
Eric Christopherd9134482014-08-04 21:25:23 +00001048 InsertPos(insertpos) {}