blob: 65ee3816f84e98f46cfcd3d069619f17a75a7229 [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"
David Blaikie3f833ed2017-11-08 01:01:31 +000024#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000025#include "llvm/CodeGen/TargetLowering.h"
26#include "llvm/CodeGen/TargetSubtargetInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/DataLayout.h"
Reid Kleckner28865802016-04-14 18:29:59 +000028#include "llvm/IR/DebugInfo.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000029#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000030#include "llvm/Support/ErrorHandling.h"
Dan Gohmanb10f1a52008-09-03 16:01:59 +000031#include "llvm/Support/MathExtras.h"
32using namespace llvm;
33
Chandler Carruth1b9dde02014-04-22 02:02:50 +000034#define DEBUG_TYPE "instr-emitter"
35
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +000036/// MinRCSize - Smallest register class we allow when constraining virtual
37/// registers. If satisfying all register class constraints would require
38/// using a smaller register class, emit a COPY to a new virtual register
39/// instead.
40const unsigned MinRCSize = 4;
41
Dan Gohmanb8120772009-10-10 01:32:21 +000042/// CountResults - The results of target nodes have register or immediate
Chris Lattner11a33812010-12-23 17:24:32 +000043/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanb8120772009-10-10 01:32:21 +000044/// not go into the resulting MachineInstr).
45unsigned InstrEmitter::CountResults(SDNode *Node) {
46 unsigned N = Node->getNumValues();
Chris Lattner3e5fbd72010-12-21 02:38:05 +000047 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanb8120772009-10-10 01:32:21 +000048 --N;
49 if (N && Node->getValueType(N - 1) == MVT::Other)
50 --N; // Skip over chain result.
51 return N;
52}
53
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000054/// countOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner11a33812010-12-23 17:24:32 +000055/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanb8120772009-10-10 01:32:21 +000056/// Compute the number of actual operands that will go into the resulting
57/// MachineInstr.
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000058///
59/// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding
60/// the chain and glue. These operands may be implicit on the machine instr.
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +000061static unsigned countOperands(SDNode *Node, unsigned NumExpUses,
62 unsigned &NumImpUses) {
Dan Gohmanb8120772009-10-10 01:32:21 +000063 unsigned N = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +000064 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanb8120772009-10-10 01:32:21 +000065 --N;
66 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
67 --N; // Ignore chain if it exists.
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000068
69 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +000070 NumImpUses = N - NumExpUses;
71 for (unsigned I = N; I > NumExpUses; --I) {
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +000072 if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1)))
73 continue;
74 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1)))
75 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg()))
76 continue;
77 NumImpUses = N - I;
78 break;
79 }
80
Dan Gohmanb8120772009-10-10 01:32:21 +000081 return N;
82}
83
Dan Gohmanb10f1a52008-09-03 16:01:59 +000084/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
85/// implicit physical register output.
Dan Gohmanb8120772009-10-10 01:32:21 +000086void InstrEmitter::
Chris Lattner54b8ebc2009-06-26 05:39:02 +000087EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
88 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +000089 unsigned VRBase = 0;
90 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
91 // Just use the input register directly!
92 SDValue Op(Node, ResNo);
93 if (IsClone)
94 VRBaseMap.erase(Op);
95 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +000096 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +000097 assert(isNew && "Node emitted out of order - early");
98 return;
99 }
100
101 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
102 // the CopyToReg'd destination register instead of creating a new vreg.
103 bool MatchReg = true;
Craig Topperc0196b12014-04-14 00:51:57 +0000104 const TargetRegisterClass *UseRC = nullptr;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000105 MVT VT = Node->getSimpleValueType(ResNo);
Jakob Stoklund Olesenc826df92011-06-16 22:50:38 +0000106
107 // Stick to the preferred register classes for legal types.
108 if (TLI->isTypeLegal(VT))
109 UseRC = TLI->getRegClassFor(VT);
110
Evan Cheng968e2e72009-01-16 20:57:18 +0000111 if (!IsClone && !IsCloned)
Jim Grosbach5d049b92014-04-11 01:13:16 +0000112 for (SDNode *User : Node->uses()) {
Evan Cheng968e2e72009-01-16 20:57:18 +0000113 bool Match = true;
Andrew Trick53df4b62011-09-20 03:06:13 +0000114 if (User->getOpcode() == ISD::CopyToReg &&
Evan Cheng968e2e72009-01-16 20:57:18 +0000115 User->getOperand(2).getNode() == Node &&
116 User->getOperand(2).getResNo() == ResNo) {
117 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
118 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
119 VRBase = DestReg;
120 Match = false;
121 } else if (DestReg != SrcReg)
122 Match = false;
123 } else {
124 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
125 SDValue Op = User->getOperand(i);
126 if (Op.getNode() != Node || Op.getResNo() != ResNo)
127 continue;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000128 MVT VT = Node->getSimpleValueType(Op.getResNo());
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000129 if (VT == MVT::Other || VT == MVT::Glue)
Evan Cheng968e2e72009-01-16 20:57:18 +0000130 continue;
131 Match = false;
132 if (User->isMachineOpcode()) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000133 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Craig Topperc0196b12014-04-14 00:51:57 +0000134 const TargetRegisterClass *RC = nullptr;
Andrew Trick32aea352012-05-03 01:14:37 +0000135 if (i+II.getNumDefs() < II.getNumOperands()) {
136 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000137 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trick32aea352012-05-03 01:14:37 +0000138 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000139 if (!UseRC)
140 UseRC = RC;
Dan Gohman60a446a2009-04-13 15:38:05 +0000141 else if (RC) {
Jakob Stoklund Olesen1352be22011-09-30 22:18:51 +0000142 const TargetRegisterClass *ComRC =
Chih-Hung Hsiehed7d81e2015-12-03 22:02:40 +0000143 TRI->getCommonSubClass(UseRC, RC, VT.SimpleTy);
Jakob Stoklund Olesen7f91fee2009-08-16 17:40:59 +0000144 // If multiple uses expect disjoint register classes, we emit
145 // copies in AddRegisterOperand.
146 if (ComRC)
147 UseRC = ComRC;
Dan Gohman60a446a2009-04-13 15:38:05 +0000148 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000149 }
Evan Chenga904f462008-09-16 23:12:11 +0000150 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000151 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000152 MatchReg &= Match;
153 if (VRBase)
154 break;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000155 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000156
Craig Topperc0196b12014-04-14 00:51:57 +0000157 const TargetRegisterClass *SrcRC = nullptr, *DstRC = nullptr;
Rafael Espindola38a7d7c2010-06-29 14:02:34 +0000158 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc826df92011-06-16 22:50:38 +0000159
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000160 // Figure out the register class to create for the destreg.
161 if (VRBase) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000162 DstRC = MRI->getRegClass(VRBase);
Evan Chenga904f462008-09-16 23:12:11 +0000163 } else if (UseRC) {
Krzysztof Parzyszekc8e8e2a2017-04-24 19:51:12 +0000164 assert(TRI->isTypeLegalForClass(*UseRC, VT) &&
165 "Incompatible phys register def and uses!");
Evan Chenga904f462008-09-16 23:12:11 +0000166 DstRC = UseRC;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000167 } else {
Evan Chenga904f462008-09-16 23:12:11 +0000168 DstRC = TLI->getRegClassFor(VT);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000169 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000170
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000171 // If all uses are reading from the src physical register and copying the
172 // register is either impossible or very expensive, then don't create a copy.
173 if (MatchReg && SrcRC->getCopyCost() < 0) {
174 VRBase = SrcReg;
175 } else {
176 // Create the reg, emit the copy.
Dan Gohmanb8120772009-10-10 01:32:21 +0000177 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000178 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
179 VRBase).addReg(SrcReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000180 }
181
182 SDValue Op(Node, ResNo);
183 if (IsClone)
184 VRBaseMap.erase(Op);
185 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000186 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000187 assert(isNew && "Node emitted out of order - early");
188}
189
190/// getDstOfCopyToRegUse - If the only use of the specified result number of
191/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanb8120772009-10-10 01:32:21 +0000192unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
193 unsigned ResNo) const {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000194 if (!Node->hasOneUse())
195 return 0;
196
197 SDNode *User = *Node->use_begin();
Andrew Trick53df4b62011-09-20 03:06:13 +0000198 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000199 User->getOperand(2).getNode() == Node &&
200 User->getOperand(2).getResNo() == ResNo) {
201 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
202 if (TargetRegisterInfo::isVirtualRegister(Reg))
203 return Reg;
204 }
205 return 0;
206}
207
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000208void InstrEmitter::CreateVirtualRegisters(SDNode *Node,
209 MachineInstrBuilder &MIB,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000210 const MCInstrDesc &II,
Evan Cheng968e2e72009-01-16 20:57:18 +0000211 bool IsClone, bool IsCloned,
Evan Chenged74d8a2009-01-09 22:44:02 +0000212 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattnerb06015a2010-02-09 19:54:29 +0000213 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000214 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
215
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000216 unsigned NumResults = CountResults(Node);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000217 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
218 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohman60a446a2009-04-13 15:38:05 +0000219 // is a vreg in the same register class, use the CopyToReg'd destination
220 // register instead of creating a new vreg.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000221 unsigned VRBase = 0;
Andrew Trick32aea352012-05-03 01:14:37 +0000222 const TargetRegisterClass *RC =
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000223 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Jakob Stoklund Olesenb6b35a42014-01-14 06:18:38 +0000224 // Always let the value type influence the used register class. The
225 // constraints on the instruction may be too lax to represent the value
226 // type correctly. For example, a 64-bit float (X86::FR64) can't live in
227 // the 32-bit float super-class (X86::FR32).
228 if (i < NumResults && TLI->isTypeLegal(Node->getSimpleValueType(i))) {
229 const TargetRegisterClass *VTRC =
230 TLI->getRegClassFor(Node->getSimpleValueType(i));
231 if (RC)
232 VTRC = TRI->getCommonSubClass(RC, VTRC);
233 if (VTRC)
234 RC = VTRC;
235 }
236
Evan Chengede2ce72009-07-11 01:06:50 +0000237 if (II.OpInfo[i].isOptionalDef()) {
238 // Optional def must be a physical register.
Evan Chengede2ce72009-07-11 01:06:50 +0000239 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
240 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000241 MIB.addReg(VRBase, RegState::Define);
Evan Chengede2ce72009-07-11 01:06:50 +0000242 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000243
Evan Chengede2ce72009-07-11 01:06:50 +0000244 if (!VRBase && !IsClone && !IsCloned)
Jim Grosbach5d049b92014-04-11 01:13:16 +0000245 for (SDNode *User : Node->uses()) {
Andrew Trick53df4b62011-09-20 03:06:13 +0000246 if (User->getOpcode() == ISD::CopyToReg &&
Evan Cheng968e2e72009-01-16 20:57:18 +0000247 User->getOperand(2).getNode() == Node &&
248 User->getOperand(2).getResNo() == i) {
249 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
250 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanb8120772009-10-10 01:32:21 +0000251 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000252 if (RegRC == RC) {
253 VRBase = Reg;
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000254 MIB.addReg(VRBase, RegState::Define);
Dan Gohman60a446a2009-04-13 15:38:05 +0000255 break;
256 }
Evan Cheng968e2e72009-01-16 20:57:18 +0000257 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000258 }
259 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000260
261 // Create the result registers for this node and add the result regs to
262 // the machine instruction.
263 if (VRBase == 0) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000264 assert(RC && "Isn't a register operand!");
Dan Gohmanb8120772009-10-10 01:32:21 +0000265 VRBase = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000266 MIB.addReg(VRBase, RegState::Define);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000267 }
268
Chandler Carrutheae2d282014-07-25 09:19:18 +0000269 // If this def corresponds to a result of the SDNode insert the VRBase into
270 // the lookup map.
271 if (i < NumResults) {
272 SDValue Op(Node, i);
273 if (IsClone)
274 VRBaseMap.erase(Op);
275 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
276 (void)isNew; // Silence compiler warning.
277 assert(isNew && "Node emitted out of order - early");
278 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000279 }
280}
281
282/// getVR - Return the virtual register corresponding to the specified result
283/// of the specified node.
Dan Gohmanb8120772009-10-10 01:32:21 +0000284unsigned InstrEmitter::getVR(SDValue Op,
285 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000286 if (Op.isMachineOpcode() &&
Chris Lattnerb06015a2010-02-09 19:54:29 +0000287 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000288 // Add an IMPLICIT_DEF instruction before every use.
289 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Cheng6cc775f2011-06-28 19:10:37 +0000290 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000291 // does not include operand register class info.
292 if (!VReg) {
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000293 const TargetRegisterClass *RC =
294 TLI->getRegClassFor(Op.getSimpleValueType());
Dan Gohmanb8120772009-10-10 01:32:21 +0000295 VReg = MRI->createVirtualRegister(RC);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000296 }
Dan Gohmanfbdba812010-07-10 13:55:45 +0000297 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattnerb06015a2010-02-09 19:54:29 +0000298 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000299 return VReg;
300 }
301
302 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
303 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
304 return I->second;
305}
306
Bill Wendlingf8244892010-08-30 04:36:50 +0000307
Dan Gohman60a446a2009-04-13 15:38:05 +0000308/// AddRegisterOperand - Add the specified register as an operand to the
309/// specified machine instr. Insert register copies if the register is
310/// not in the required register class.
311void
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000312InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB,
313 SDValue Op,
Dan Gohmanb8120772009-10-10 01:32:21 +0000314 unsigned IIOpNum,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000315 const MCInstrDesc *II,
Evan Cheng563fe3c2010-03-25 01:38:16 +0000316 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000317 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson9f944592009-08-11 20:47:22 +0000318 assert(Op.getValueType() != MVT::Other &&
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000319 Op.getValueType() != MVT::Glue &&
Chris Lattner11a33812010-12-23 17:24:32 +0000320 "Chain and glue operands should occur at end of operand list!");
Dan Gohman60a446a2009-04-13 15:38:05 +0000321 // Get/emit the operand.
322 unsigned VReg = getVR(Op, VRBaseMap);
Dan Gohman60a446a2009-04-13 15:38:05 +0000323
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) {
Matt Arsenault6cda10c2016-09-07 06:16:45 +0000333 const TargetRegisterClass *OpRC = nullptr;
Chris Lattner76673322009-07-29 21:36:49 +0000334 if (IIOpNum < II->getNumOperands())
Matt Arsenault6cda10c2016-09-07 06:16:45 +0000335 OpRC = TII->getRegClass(*II, IIOpNum, TRI, *MF);
336
337 if (OpRC) {
338 const TargetRegisterClass *ConstrainedRC
339 = MRI->constrainRegClass(VReg, OpRC, MinRCSize);
340 if (!ConstrainedRC) {
Justin Bognerdb6b6a72016-10-28 22:42:54 +0000341 OpRC = TRI->getAllocatableClass(OpRC);
342 assert(OpRC && "Constraints cannot be fulfilled for allocation");
Matt Arsenault6cda10c2016-09-07 06:16:45 +0000343 unsigned NewVReg = MRI->createVirtualRegister(OpRC);
344 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
345 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
346 VReg = NewVReg;
347 } else {
348 assert(ConstrainedRC->isAllocatable() &&
349 "Constraining an allocatable VReg produced an unallocatable class?");
350 }
Dan Gohman60a446a2009-04-13 15:38:05 +0000351 }
352 }
353
Dan Gohmanac555102010-04-30 00:08:21 +0000354 // If this value has only one use, that use is a kill. This is a
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000355 // conservative approximation. InstrEmitter does trivial coalescing
356 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman2f277c82010-05-14 22:01:14 +0000357 // Avoid kill flags on Schedule cloned nodes, since there will be
358 // multiple uses.
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000359 // Tied operands are never killed, so we need to check that. And that
360 // means we need to determine the index of the operand.
361 bool isKill = Op.hasOneUse() &&
362 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman2f277c82010-05-14 22:01:14 +0000363 !IsDebug &&
364 !(IsClone || IsCloned);
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000365 if (isKill) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000366 unsigned Idx = MIB->getNumOperands();
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000367 while (Idx > 0 &&
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000368 MIB->getOperand(Idx-1).isReg() &&
369 MIB->getOperand(Idx-1).isImplicit())
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000370 --Idx;
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000371 bool isTied = MCID.getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohmanafd2b8b2010-05-11 21:59:14 +0000372 if (isTied)
373 isKill = false;
374 }
Dan Gohmanac555102010-04-30 00:08:21 +0000375
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000376 MIB.addReg(VReg, getDefRegState(isOptDef) | getKillRegState(isKill) |
377 getDebugRegState(IsDebug));
Dan Gohman60a446a2009-04-13 15:38:05 +0000378}
379
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000380/// AddOperand - Add the specified operand to the specified machine instr. II
381/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000382/// operand number (in the II) that we are adding.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000383void InstrEmitter::AddOperand(MachineInstrBuilder &MIB,
384 SDValue Op,
Dan Gohmanb8120772009-10-10 01:32:21 +0000385 unsigned IIOpNum,
Evan Cheng6cc775f2011-06-28 19:10:37 +0000386 const MCInstrDesc *II,
Evan Cheng563fe3c2010-03-25 01:38:16 +0000387 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000388 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000389 if (Op.isMachineOpcode()) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000390 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000391 IsDebug, IsClone, IsCloned);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000392 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000393 MIB.addImm(C->getSExtValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000394 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000395 MIB.addFPImm(F->getConstantFPValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000396 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Stefan Maksimovicdc66ae72018-02-09 13:55:25 +0000397 unsigned VReg = R->getReg();
398 MVT OpVT = Op.getSimpleValueType();
399 const TargetRegisterClass *OpRC =
400 TLI->isTypeLegal(OpVT) ? TLI->getRegClassFor(OpVT) : nullptr;
401 const TargetRegisterClass *IIRC =
402 II ? TRI->getAllocatableClass(TII->getRegClass(*II, IIOpNum, TRI, *MF))
403 : nullptr;
404
405 if (OpRC && IIRC && OpRC != IIRC &&
406 TargetRegisterInfo::isVirtualRegister(VReg)) {
407 unsigned NewVReg = MRI->createVirtualRegister(IIRC);
408 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
409 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
410 VReg = NewVReg;
411 }
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000412 // Turn additional physreg operands into implicit uses on non-variadic
413 // instructions. This is used by call and return instructions passing
414 // arguments in registers.
415 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
Stefan Maksimovicdc66ae72018-02-09 13:55:25 +0000416 MIB.addReg(VReg, getImplRegState(Imp));
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +0000417 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000418 MIB.addRegMask(RM->getRegMask());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000419 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000420 MIB.addGlobalAddress(TGA->getGlobal(), TGA->getOffset(),
421 TGA->getTargetFlags());
Dan Gohman60a446a2009-04-13 15:38:05 +0000422 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000423 MIB.addMBB(BBNode->getBasicBlock());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000424 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000425 MIB.addFrameIndex(FI->getIndex());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000426 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000427 MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000428 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
429 int Offset = CP->getOffset();
430 unsigned Align = CP->getAlignment();
Chris Lattner229907c2011-07-18 04:54:35 +0000431 Type *Type = CP->getType();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000432 // MachineConstantPool wants an explicit alignment.
433 if (Align == 0) {
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000434 Align = MF->getDataLayout().getPrefTypeAlignment(Type);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000435 if (Align == 0) {
436 // Alignment of vector types. FIXME!
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000437 Align = MF->getDataLayout().getTypeAllocSize(Type);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000438 }
439 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000440
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000441 unsigned Idx;
Dan Gohmanb8120772009-10-10 01:32:21 +0000442 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000443 if (CP->isMachineConstantPoolEntry())
Dan Gohmanb8120772009-10-10 01:32:21 +0000444 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000445 else
Dan Gohmanb8120772009-10-10 01:32:21 +0000446 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000447 MIB.addConstantPoolIndex(Idx, Offset, CP->getTargetFlags());
Bill Wendling24c79f22008-09-16 21:48:12 +0000448 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000449 MIB.addExternalSymbol(ES->getSymbol(), ES->getTargetFlags());
Rafael Espindola36b718f2015-06-22 17:46:53 +0000450 } else if (auto *SymNode = dyn_cast<MCSymbolSDNode>(Op)) {
451 MIB.addSym(SymNode->getMCSymbol());
Dan Gohman6c938802009-10-30 01:27:03 +0000452 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000453 MIB.addBlockAddress(BA->getBlockAddress(),
454 BA->getOffset(),
455 BA->getTargetFlags());
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +0000456 } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000457 MIB.addTargetIndex(TI->getIndex(), TI->getOffset(), TI->getTargetFlags());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000458 } else {
Owen Anderson9f944592009-08-11 20:47:22 +0000459 assert(Op.getValueType() != MVT::Other &&
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000460 Op.getValueType() != MVT::Glue &&
Chris Lattner11a33812010-12-23 17:24:32 +0000461 "Chain and glue operands should occur at end of operand list!");
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000462 AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000463 IsDebug, IsClone, IsCloned);
Dan Gohman60a446a2009-04-13 15:38:05 +0000464 }
465}
466
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000467unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000468 MVT VT, const DebugLoc &DL) {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000469 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
470 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
471
472 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
473 // within reason.
474 if (RC && RC != VRC)
475 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
476
477 // VReg has been adjusted. It can be used with SubIdx operands now.
478 if (RC)
479 return VReg;
480
481 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
482 // register instead.
483 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
484 assert(RC && "No legal register class for VT supports that SubIdx");
485 unsigned NewReg = MRI->createVirtualRegister(RC);
486 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
487 .addReg(VReg);
488 return NewReg;
489}
490
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000491/// EmitSubregNode - Generate machine code for subreg nodes.
492///
Andrew Trick53df4b62011-09-20 03:06:13 +0000493void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman2f277c82010-05-14 22:01:14 +0000494 DenseMap<SDValue, unsigned> &VRBaseMap,
495 bool IsClone, bool IsCloned) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000496 unsigned VRBase = 0;
497 unsigned Opc = Node->getMachineOpcode();
Andrew Trick53df4b62011-09-20 03:06:13 +0000498
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000499 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
500 // the CopyToReg'd destination register instead of creating a new vreg.
Jim Grosbach5d049b92014-04-11 01:13:16 +0000501 for (SDNode *User : Node->uses()) {
Andrew Trick53df4b62011-09-20 03:06:13 +0000502 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000503 User->getOperand(2).getNode() == Node) {
504 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
505 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
506 VRBase = DestReg;
507 break;
508 }
509 }
510 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000511
Chris Lattnerb06015a2010-02-09 19:54:29 +0000512 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000513 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
514 // constraints on the %dst register, COPY can target all legal register
515 // classes.
Dan Gohmaneffb8942008-09-12 16:56:44 +0000516 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000517 const TargetRegisterClass *TRC =
518 TLI->getRegClassFor(Node->getSimpleValueType(0));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000519
Geoff Berry76ca8c22017-02-05 18:28:14 +0000520 unsigned Reg;
521 MachineInstr *DefMI;
522 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(0));
523 if (R && TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
524 Reg = R->getReg();
525 DefMI = nullptr;
526 } else {
527 Reg = getVR(Node->getOperand(0), VRBaseMap);
528 DefMI = MRI->getVRegDef(Reg);
529 }
530
Evan Cheng260acf32011-01-05 23:06:49 +0000531 unsigned SrcReg, DstReg, DefSubIdx;
532 if (DefMI &&
533 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Chengb1712282012-07-11 18:55:07 +0000534 SubIdx == DefSubIdx &&
535 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng260acf32011-01-05 23:06:49 +0000536 // Optimize these:
537 // r1025 = s/zext r1024, 4
538 // r1026 = extract_subreg r1025, 4
539 // to a copy
540 // r1026 = copy r1024
Evan Cheng260acf32011-01-05 23:06:49 +0000541 VRBase = MRI->createVirtualRegister(TRC);
542 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
543 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen3e3cdec2012-06-29 21:00:03 +0000544 MRI->clearKillFlags(SrcReg);
Evan Cheng260acf32011-01-05 23:06:49 +0000545 } else {
Geoff Berry76ca8c22017-02-05 18:28:14 +0000546 // Reg may not support a SubIdx sub-register, and we may need to
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000547 // constrain its register class or issue a COPY to a compatible register
548 // class.
Geoff Berry76ca8c22017-02-05 18:28:14 +0000549 if (TargetRegisterInfo::isVirtualRegister(Reg))
550 Reg = ConstrainForSubReg(Reg, SubIdx,
551 Node->getOperand(0).getSimpleValueType(),
552 Node->getDebugLoc());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000553
Jakob Stoklund Olesenf7957a92011-10-05 20:26:40 +0000554 // Create the destreg if it is missing.
555 if (VRBase == 0)
556 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng260acf32011-01-05 23:06:49 +0000557
558 // Create the extract_subreg machine instruction.
Geoff Berry76ca8c22017-02-05 18:28:14 +0000559 MachineInstrBuilder CopyMI =
560 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
561 TII->get(TargetOpcode::COPY), VRBase);
562 if (TargetRegisterInfo::isVirtualRegister(Reg))
563 CopyMI.addReg(Reg, 0, SubIdx);
564 else
565 CopyMI.addReg(TRI->getSubReg(Reg, SubIdx));
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000566 }
Chris Lattnerb06015a2010-02-09 19:54:29 +0000567 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
568 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000569 SDValue N0 = Node->getOperand(0);
570 SDValue N1 = Node->getOperand(1);
571 SDValue N2 = Node->getOperand(2);
Dan Gohmaneffb8942008-09-12 16:56:44 +0000572 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmane5cd1fc2009-04-14 22:17:14 +0000573
Jakob Stoklund Olesen8ff52c42011-10-05 18:31:00 +0000574 // Figure out the register class to create for the destreg. It should be
575 // the largest legal register class supporting SubIdx sub-registers.
576 // RegisterCoalescer will constrain it further if it decides to eliminate
577 // the INSERT_SUBREG instruction.
578 //
579 // %dst = INSERT_SUBREG %src, %sub, SubIdx
580 //
581 // is lowered by TwoAddressInstructionPass to:
582 //
583 // %dst = COPY %src
584 // %dst:SubIdx = COPY %sub
585 //
586 // There is no constraint on the %src register class.
587 //
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000588 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0));
Jakob Stoklund Olesen8ff52c42011-10-05 18:31:00 +0000589 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
590 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
591
592 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanb8120772009-10-10 01:32:21 +0000593 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohmane5cd1fc2009-04-14 22:17:14 +0000594
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000595 // Create the insert_subreg or subreg_to_reg machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000596 MachineInstrBuilder MIB =
597 BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase);
Andrew Trick53df4b62011-09-20 03:06:13 +0000598
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000599 // If creating a subreg_to_reg, then the first input operand
600 // is an implicit value immediate, otherwise it's a register
Chris Lattnerb06015a2010-02-09 19:54:29 +0000601 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000602 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000603 MIB.addImm(SD->getZExtValue());
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000604 } else
Craig Topperc0196b12014-04-14 00:51:57 +0000605 AddOperand(MIB, N0, 0, nullptr, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000606 IsClone, IsCloned);
Hiroshi Inouea86c9202017-07-10 12:44:25 +0000607 // Add the subregister being inserted
Craig Topperc0196b12014-04-14 00:51:57 +0000608 AddOperand(MIB, N1, 0, nullptr, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000609 IsClone, IsCloned);
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000610 MIB.addImm(SubIdx);
611 MBB->insert(InsertPos, MIB);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000612 } else
Torok Edwinfbcc6632009-07-14 16:55:14 +0000613 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick53df4b62011-09-20 03:06:13 +0000614
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000615 SDValue Op(Node, 0);
616 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000617 (void)isNew; // Silence compiler warning.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000618 assert(isNew && "Node emitted out of order - early");
619}
620
Dan Gohman6c142632009-04-13 21:06:25 +0000621/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
622/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohman60a446a2009-04-13 15:38:05 +0000623/// register is constrained to be in a particular register class.
624///
625void
Dan Gohmanb8120772009-10-10 01:32:21 +0000626InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
627 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman60a446a2009-04-13 15:38:05 +0000628 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohman60a446a2009-04-13 15:38:05 +0000629
Dan Gohman60a446a2009-04-13 15:38:05 +0000630 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000631 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trick32aea352012-05-03 01:14:37 +0000632 const TargetRegisterClass *DstRC =
633 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanb8120772009-10-10 01:32:21 +0000634 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000635 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
636 NewVReg).addReg(VReg);
Dan Gohman60a446a2009-04-13 15:38:05 +0000637
638 SDValue Op(Node, 0);
639 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000640 (void)isNew; // Silence compiler warning.
Dan Gohman60a446a2009-04-13 15:38:05 +0000641 assert(isNew && "Node emitted out of order - early");
642}
643
Evan Chengf869d9a2010-05-04 00:22:40 +0000644/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
645///
646void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman2f277c82010-05-14 22:01:14 +0000647 DenseMap<SDValue, unsigned> &VRBaseMap,
648 bool IsClone, bool IsCloned) {
Owen Anderson5fc8b772011-06-16 18:17:13 +0000649 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
650 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trick32aea352012-05-03 01:14:37 +0000651 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000652 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
653 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II, NewVReg);
Evan Chengf869d9a2010-05-04 00:22:40 +0000654 unsigned NumOps = Node->getNumOperands();
Owen Anderson5fc8b772011-06-16 18:17:13 +0000655 assert((NumOps & 1) == 1 &&
656 "REG_SEQUENCE must have an odd number of operands!");
Owen Anderson5fc8b772011-06-16 18:17:13 +0000657 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengf869d9a2010-05-04 00:22:40 +0000658 SDValue Op = Node->getOperand(i);
Owen Anderson5fc8b772011-06-16 18:17:13 +0000659 if ((i & 1) == 0) {
Pete Cooperc52eeed2012-01-18 04:16:16 +0000660 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
661 // Skip physical registers as they don't have a vreg to get and we'll
662 // insert copies for them in TwoAddressInstructionPass anyway.
663 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
664 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
665 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
666 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
667 const TargetRegisterClass *SRC =
Evan Chenge7fc64a2010-05-18 20:03:28 +0000668 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Cooperc52eeed2012-01-18 04:16:16 +0000669 if (SRC && SRC != RC) {
670 MRI->setRegClass(NewVReg, SRC);
671 RC = SRC;
672 }
Evan Cheng45b3f702010-05-18 20:07:47 +0000673 }
Evan Chengf869d9a2010-05-04 00:22:40 +0000674 }
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000675 AddOperand(MIB, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
Dan Gohman2f277c82010-05-14 22:01:14 +0000676 IsClone, IsCloned);
Evan Chengf869d9a2010-05-04 00:22:40 +0000677 }
678
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000679 MBB->insert(InsertPos, MIB);
Evan Chengf869d9a2010-05-04 00:22:40 +0000680 SDValue Op(Node, 0);
681 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000682 (void)isNew; // Silence compiler warning.
Evan Chengf869d9a2010-05-04 00:22:40 +0000683 assert(isNew && "Node emitted out of order - early");
684}
685
Evan Cheng563fe3c2010-03-25 01:38:16 +0000686/// EmitDbgValue - Generate machine instruction for a dbg_value node.
687///
Dan Gohman8acc8f72010-04-30 19:35:33 +0000688MachineInstr *
689InstrEmitter::EmitDbgValue(SDDbgValue *SD,
690 DenseMap<SDValue, unsigned> &VRBaseMap) {
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000691 MDNode *Var = SD->getVariable();
692 MDNode *Expr = SD->getExpression();
Evan Cheng563fe3c2010-03-25 01:38:16 +0000693 DebugLoc DL = SD->getDebugLoc();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000694 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
Duncan P. N. Exon Smith3bef6a32015-04-03 19:20:26 +0000695 "Expected inlined-at fields to agree");
Evan Cheng563fe3c2010-03-25 01:38:16 +0000696
Dale Johannesen582565e2010-04-25 21:33:54 +0000697 if (SD->getKind() == SDDbgValue::FRAMEIX) {
698 // Stack address; this needs to be lowered in target-dependent fashion.
699 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
David Blaikie0252265b2013-06-16 20:34:15 +0000700 return BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE))
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000701 .addFrameIndex(SD->getFrameIx())
Adrian Prantla6175762017-07-28 21:27:35 +0000702 .addImm(0)
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000703 .addMetadata(Var)
704 .addMetadata(Expr);
Dale Johannesen582565e2010-04-25 21:33:54 +0000705 }
706 // Otherwise, we're going to create an instruction here.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000707 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000708 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
709 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesend1976e32010-04-06 21:59:56 +0000710 SDNode *Node = SD->getSDNode();
711 SDValue Op = SDValue(Node, SD->getResNo());
712 // It's possible we replaced this SDNode with other(s) and therefore
713 // didn't generate code for it. It's better to catch these cases where
714 // they happen and transfer the debug info, but trying to guarantee that
715 // in all cases would be very fragile; this is a safeguard for any
716 // that were missed.
717 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
718 if (I==VRBaseMap.end())
719 MIB.addReg(0U); // undef
720 else
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000721 AddOperand(MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +0000722 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Bjorn Petterssonabafca62018-04-30 14:37:39 +0000723 } else if (SD->getKind() == SDDbgValue::VREG) {
724 MIB.addReg(SD->getVReg(), RegState::Debug);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000725 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000726 const Value *V = SD->getConst();
727 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patelf071d722011-06-24 20:46:11 +0000728 if (CI->getBitWidth() > 64)
729 MIB.addCImm(CI);
Dan Gohman7de01ec2010-05-07 22:19:08 +0000730 else
731 MIB.addImm(CI->getSExtValue());
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000732 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Cheng563fe3c2010-03-25 01:38:16 +0000733 MIB.addFPImm(CF);
Dale Johannesen49de0602010-03-10 22:13:47 +0000734 } else {
735 // Could be an Undef. In any case insert an Undef so we can see what we
736 // dropped.
Evan Cheng563fe3c2010-03-25 01:38:16 +0000737 MIB.addReg(0U);
Dale Johannesen49de0602010-03-10 22:13:47 +0000738 }
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000739 } else {
740 // Insert an Undef so we can see what we dropped.
Evan Cheng563fe3c2010-03-25 01:38:16 +0000741 MIB.addReg(0U);
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000742 }
Evan Cheng563fe3c2010-03-25 01:38:16 +0000743
Adrian Prantl32da8892014-04-25 20:49:25 +0000744 // Indirect addressing is indicated by an Imm as the second parameter.
745 if (SD->isIndirect())
Adrian Prantla6175762017-07-28 21:27:35 +0000746 MIB.addImm(0U);
747 else
Adrian Prantl418d1d12013-07-09 20:28:37 +0000748 MIB.addReg(0U, RegState::Debug);
749
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000750 MIB.addMetadata(Var);
751 MIB.addMetadata(Expr);
Adrian Prantl418d1d12013-07-09 20:28:37 +0000752
Evan Cheng563fe3c2010-03-25 01:38:16 +0000753 return &*MIB;
Dale Johannesen10a77ad2010-03-06 00:03:23 +0000754}
755
Shiva Chencd070cd2018-05-09 02:41:08 +0000756MachineInstr *
757InstrEmitter::EmitDbgLabel(SDDbgLabel *SD) {
758 MDNode *Label = SD->getLabel();
759 DebugLoc DL = SD->getDebugLoc();
760 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) &&
761 "Expected inlined-at fields to agree");
762
763 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_LABEL);
764 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
765 MIB.addMetadata(Label);
766
767 return &*MIB;
768}
769
Chris Lattnere2a504e2010-03-25 04:41:16 +0000770/// EmitMachineNode - Generate machine code for a target-specific node and
771/// needed dependencies.
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000772///
Chris Lattnere2a504e2010-03-25 04:41:16 +0000773void InstrEmitter::
774EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohman25c16532010-05-01 00:01:06 +0000775 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattnere2a504e2010-03-25 04:41:16 +0000776 unsigned Opc = Node->getMachineOpcode();
Andrew Trick53df4b62011-09-20 03:06:13 +0000777
Chris Lattnere2a504e2010-03-25 04:41:16 +0000778 // Handle subreg insert/extract specially
Andrew Trick53df4b62011-09-20 03:06:13 +0000779 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattnere2a504e2010-03-25 04:41:16 +0000780 Opc == TargetOpcode::INSERT_SUBREG ||
781 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman2f277c82010-05-14 22:01:14 +0000782 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerddca7b02010-03-24 23:41:19 +0000783 return;
784 }
785
Chris Lattnere2a504e2010-03-25 04:41:16 +0000786 // Handle COPY_TO_REGCLASS specially.
787 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
788 EmitCopyToRegClassNode(Node, VRBaseMap);
789 return;
790 }
791
Evan Chengf869d9a2010-05-04 00:22:40 +0000792 // Handle REG_SEQUENCE specially.
793 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman2f277c82010-05-14 22:01:14 +0000794 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengf869d9a2010-05-04 00:22:40 +0000795 return;
796 }
797
Chris Lattnere2a504e2010-03-25 04:41:16 +0000798 if (Opc == TargetOpcode::IMPLICIT_DEF)
799 // We want a unique VR for each IMPLICIT_DEF use.
800 return;
Andrew Trick53df4b62011-09-20 03:06:13 +0000801
Evan Cheng6cc775f2011-06-28 19:10:37 +0000802 const MCInstrDesc &II = TII->get(Opc);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000803 unsigned NumResults = CountResults(Node);
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000804 unsigned NumDefs = II.getNumDefs();
Craig Topperc0196b12014-04-14 00:51:57 +0000805 const MCPhysReg *ScratchRegs = nullptr;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000806
Andrew Trickfbb278c2014-03-05 07:08:16 +0000807 // Handle STACKMAP and PATCHPOINT specially and then use the generic code.
808 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
809 // Stackmaps do not have arguments and do not preserve their calling
810 // convention. However, to simplify runtime support, they clobber the same
811 // scratch registers as AnyRegCC.
812 unsigned CC = CallingConv::AnyReg;
813 if (Opc == TargetOpcode::PATCHPOINT) {
814 CC = Node->getConstantOperandVal(PatchPointOpers::CCPos);
815 NumDefs = NumResults;
816 }
Juergen Ributzka87ed9062013-11-09 01:51:33 +0000817 ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC);
818 }
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000819
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000820 unsigned NumImpUses = 0;
Jakob Stoklund Olesen10cdd092012-08-24 20:52:42 +0000821 unsigned NodeOperands =
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000822 countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses);
Craig Topperc0196b12014-04-14 00:51:57 +0000823 bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=nullptr;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000824#ifndef NDEBUG
825 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner4690af82010-03-25 05:40:48 +0000826 if (II.isVariadic())
827 assert(NumMIOperands >= II.getNumOperands() &&
828 "Too few operands for a variadic node!");
829 else
830 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesenc300ef02012-07-04 23:53:23 +0000831 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
832 NumImpUses &&
Chris Lattner4690af82010-03-25 05:40:48 +0000833 "#operands for dag node doesn't match .td file!");
Chris Lattnere2a504e2010-03-25 04:41:16 +0000834#endif
835
836 // Create the new machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000837 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohman86936502010-06-18 23:28:01 +0000838
Chris Lattnere2a504e2010-03-25 04:41:16 +0000839 // Add result register values for things that are defined by this
840 // instruction.
Michael Berg2dcf12f2018-05-04 23:41:15 +0000841 if (NumResults) {
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000842 CreateVirtualRegisters(Node, MIB, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick53df4b62011-09-20 03:06:13 +0000843
Michael Berg2dcf12f2018-05-04 23:41:15 +0000844 // Transfer any IR flags from the SDNode to the MachineInstr
845 MachineInstr *MI = MIB.getInstr();
846 const SDNodeFlags Flags = Node->getFlags();
847 if (Flags.hasNoSignedZeros())
848 MI->setFlag(MachineInstr::MIFlag::FmNsz);
849
850 if (Flags.hasAllowReciprocal())
851 MI->setFlag(MachineInstr::MIFlag::FmArcp);
852
853 if (Flags.hasNoNaNs())
854 MI->setFlag(MachineInstr::MIFlag::FmNoNans);
855
856 if (Flags.hasNoInfs())
857 MI->setFlag(MachineInstr::MIFlag::FmNoInfs);
858
859 if (Flags.hasAllowContract())
860 MI->setFlag(MachineInstr::MIFlag::FmContract);
861
862 if (Flags.hasApproximateFuncs())
863 MI->setFlag(MachineInstr::MIFlag::FmAfn);
864
865 if (Flags.hasAllowReassociation())
866 MI->setFlag(MachineInstr::MIFlag::FmReassoc);
867 }
868
Chris Lattnere2a504e2010-03-25 04:41:16 +0000869 // Emit all of the actual operands of this instruction, adding them to the
870 // instruction as appropriate.
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000871 bool HasOptPRefs = NumDefs > NumResults;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000872 assert((!HasOptPRefs || !HasPhysRegOuts) &&
873 "Unable to cope with optional defs and phys regs defs!");
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000874 unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0;
Chris Lattnere2a504e2010-03-25 04:41:16 +0000875 for (unsigned i = NumSkip; i != NodeOperands; ++i)
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000876 AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II,
Dan Gohman2f277c82010-05-14 22:01:14 +0000877 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000878
Juergen Ributzka87ed9062013-11-09 01:51:33 +0000879 // Add scratch registers as implicit def and early clobber
880 if (ScratchRegs)
881 for (unsigned i = 0; ScratchRegs[i]; ++i)
882 MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine |
883 RegState::EarlyClobber);
884
Chris Lattnere2a504e2010-03-25 04:41:16 +0000885 // Transfer all of the memory reference descriptions of this instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000886 MIB.setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
Chris Lattnere2a504e2010-03-25 04:41:16 +0000887 cast<MachineSDNode>(Node)->memoperands_end());
888
Dan Gohman34396292010-07-06 20:24:04 +0000889 // Insert the instruction into position in the block. This needs to
890 // happen before any custom inserter hook is called so that the
891 // hook knows where in the block to insert the replacement code.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000892 MBB->insert(InsertPos, MIB);
Dan Gohman34396292010-07-06 20:24:04 +0000893
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000894 // The MachineInstr may also define physregs instead of virtregs. These
895 // physreg values can reach other instructions in different ways:
896 //
897 // 1. When there is a use of a Node value beyond the explicitly defined
898 // virtual registers, we emit a CopyFromReg for one of the implicitly
899 // defined physregs. This only happens when HasPhysRegOuts is true.
900 //
901 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
902 //
903 // 3. A glued instruction may implicitly use a physreg.
904 //
905 // 4. A glued instruction may use a RegisterSDNode operand.
906 //
907 // Collect all the used physreg defs, and make sure that any unused physreg
908 // defs are marked as dead.
909 SmallVector<unsigned, 8> UsedRegs;
910
Eric Christopher1b93e7b2010-12-08 22:21:42 +0000911 // Additional results must be physical register defs.
Chris Lattnere2a504e2010-03-25 04:41:16 +0000912 if (HasPhysRegOuts) {
Juergen Ributzka9969d3e2013-11-08 23:28:16 +0000913 for (unsigned i = NumDefs; i < NumResults; ++i) {
914 unsigned Reg = II.getImplicitDefs()[i - NumDefs];
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000915 if (!Node->hasAnyUseOfValue(i))
916 continue;
917 // This implicitly defined physreg has a use.
918 UsedRegs.push_back(Reg);
919 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000920 }
921 }
Andrew Trick53df4b62011-09-20 03:06:13 +0000922
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000923 // Scan the glue chain for any used physregs.
924 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
925 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
926 if (F->getOpcode() == ISD::CopyFromReg) {
927 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
928 continue;
Hal Finkelb9a3d612012-02-24 17:53:59 +0000929 } else if (F->getOpcode() == ISD::CopyToReg) {
930 // Skip CopyToReg nodes that are internal to the glue chain.
931 continue;
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000932 }
933 // Collect declared implicit uses.
934 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
935 UsedRegs.append(MCID.getImplicitUses(),
936 MCID.getImplicitUses() + MCID.getNumImplicitUses());
937 // In addition to declared implicit uses, we must also check for
938 // direct RegisterSDNode operands.
939 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
940 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
941 unsigned Reg = R->getReg();
942 if (TargetRegisterInfo::isPhysicalRegister(Reg))
943 UsedRegs.push_back(Reg);
944 }
Chris Lattner4690af82010-03-25 05:40:48 +0000945 }
Jakob Stoklund Olesenf6507322012-02-03 20:43:35 +0000946 }
947
948 // Finally mark unused registers as dead.
949 if (!UsedRegs.empty() || II.getImplicitDefs())
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +0000950 MIB->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Chenge6fba772011-08-30 19:09:48 +0000951
952 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick52363bd2011-09-20 18:22:31 +0000953 if (II.hasPostISelHook())
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +0000954 TLI->AdjustInstrPostInstrSelection(*MIB, Node);
Chris Lattnere2a504e2010-03-25 04:41:16 +0000955}
956
957/// EmitSpecialNode - Generate machine code for a target-independent node and
958/// needed dependencies.
959void InstrEmitter::
960EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
961 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000962 switch (Node->getOpcode()) {
963 default:
964#ifndef NDEBUG
Dan Gohmanb8120772009-10-10 01:32:21 +0000965 Node->dump();
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000966#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +0000967 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000968 case ISD::EntryToken:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000969 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Chenge62288f2009-07-30 08:33:02 +0000970 case ISD::MERGE_VALUES:
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000971 case ISD::TokenFactor: // fall thru
972 break;
973 case ISD::CopyToReg: {
974 unsigned SrcReg;
975 SDValue SrcVal = Node->getOperand(2);
976 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
977 SrcReg = R->getReg();
978 else
979 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick53df4b62011-09-20 03:06:13 +0000980
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000981 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
982 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
983 break;
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000984
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000985 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
986 DestReg).addReg(SrcReg);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000987 break;
988 }
989 case ISD::CopyFromReg: {
990 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Cheng968e2e72009-01-16 20:57:18 +0000991 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohmanb10f1a52008-09-03 16:01:59 +0000992 break;
993 }
Reid Klecknere33c94f2017-09-05 20:14:58 +0000994 case ISD::EH_LABEL:
995 case ISD::ANNOTATION_LABEL: {
996 unsigned Opc = (Node->getOpcode() == ISD::EH_LABEL)
997 ? TargetOpcode::EH_LABEL
998 : TargetOpcode::ANNOTATION_LABEL;
999 MCSymbol *S = cast<LabelSDNode>(Node)->getLabel();
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001000 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
Reid Klecknere33c94f2017-09-05 20:14:58 +00001001 TII->get(Opc)).addSym(S);
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001002 break;
1003 }
Andrew Trick53df4b62011-09-20 03:06:13 +00001004
Nadav Rotem7c277da2012-09-06 09:17:37 +00001005 case ISD::LIFETIME_START:
1006 case ISD::LIFETIME_END: {
1007 unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ?
1008 TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END;
1009
1010 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1));
1011 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp))
1012 .addFrameIndex(FI->getIndex());
1013 break;
1014 }
1015
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001016 case ISD::INLINEASM: {
1017 unsigned NumOps = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +00001018 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner11a33812010-12-23 17:24:32 +00001019 --NumOps; // Ignore the glue operand.
Andrew Trick53df4b62011-09-20 03:06:13 +00001020
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001021 // Create the inline asm machine instruction.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001022 MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(),
1023 TII->get(TargetOpcode::INLINEASM));
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001024
1025 // Add the asm string as an external symbol operand.
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001026 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
1027 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001028 MIB.addExternalSymbol(AsmStr);
Andrew Trick53df4b62011-09-20 03:06:13 +00001029
Chad Rosier909f6a02012-10-30 20:39:19 +00001030 // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
1031 // bits.
Evan Cheng6eb516d2011-01-07 23:50:32 +00001032 int64_t ExtraInfo =
1033 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesen4d887f7c2010-07-02 20:16:09 +00001034 getZExtValue();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001035 MIB.addImm(ExtraInfo);
Dale Johannesen4d887f7c2010-07-02 20:16:09 +00001036
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001037 // Remember to operand index of the group flags.
1038 SmallVector<unsigned, 8> GroupIdx;
1039
Hal Finkel1e5733b2015-04-20 00:01:30 +00001040 // Remember registers that are part of early-clobber defs.
1041 SmallVector<unsigned, 8> ECRegs;
1042
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001043 // Add all of the operand registers to the instruction.
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001044 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001045 unsigned Flags =
1046 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001047 const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick53df4b62011-09-20 03:06:13 +00001048
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001049 GroupIdx.push_back(MIB->getNumOperands());
1050 MIB.addImm(Flags);
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001051 ++i; // Skip the ID value.
Andrew Trick53df4b62011-09-20 03:06:13 +00001052
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001053 switch (InlineAsm::getKind(Flags)) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001054 default: llvm_unreachable("Bad flags!");
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001055 case InlineAsm::Kind_RegDef:
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001056 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001057 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen8bc5eca2010-06-09 20:05:00 +00001058 // FIXME: Add dead flags for physical and virtual registers defined.
1059 // For now, mark physical register defs as implicit to help fast
1060 // regalloc. This makes inline asm look a lot like calls.
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001061 MIB.addReg(Reg, RegState::Define |
1062 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001063 }
1064 break;
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001065 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesen537a3022011-06-27 04:08:33 +00001066 case InlineAsm::Kind_Clobber:
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001067 for (unsigned j = 0; j != NumVals; ++j, ++i) {
Dale Johannesen1f3ab862008-09-12 17:49:03 +00001068 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001069 MIB.addReg(Reg, RegState::Define | RegState::EarlyClobber |
1070 getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg)));
Hal Finkel1e5733b2015-04-20 00:01:30 +00001071 ECRegs.push_back(Reg);
Dale Johannesen1f3ab862008-09-12 17:49:03 +00001072 }
1073 break;
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001074 case InlineAsm::Kind_RegUse: // Use of register.
1075 case InlineAsm::Kind_Imm: // Immediate.
1076 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001077 // The addressing mode has been selected, just add all of the
1078 // operands to the machine instruction.
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001079 for (unsigned j = 0; j != NumVals; ++j, ++i)
Craig Topperc0196b12014-04-14 00:51:57 +00001080 AddOperand(MIB, Node->getOperand(i), 0, nullptr, VRBaseMap,
Dan Gohman2f277c82010-05-14 22:01:14 +00001081 /*IsDebug=*/false, IsClone, IsCloned);
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001082
1083 // Manually set isTied bits.
1084 if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) {
1085 unsigned DefGroup = 0;
1086 if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) {
1087 unsigned DefIdx = GroupIdx[DefGroup] + 1;
1088 unsigned UseIdx = GroupIdx.back() + 1;
Jakob Stoklund Olesen5c8eda02012-08-31 20:50:53 +00001089 for (unsigned j = 0; j != NumVals; ++j)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001090 MIB->tieOperands(DefIdx + j, UseIdx + j);
Jakob Stoklund Olesenb2bef482012-08-29 22:02:00 +00001091 }
1092 }
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001093 break;
1094 }
1095 }
Andrew Trick53df4b62011-09-20 03:06:13 +00001096
Hal Finkel1e5733b2015-04-20 00:01:30 +00001097 // GCC inline assembly allows input operands to also be early-clobber
1098 // output operands (so long as the operand is written only after it's
1099 // used), but this does not match the semantics of our early-clobber flag.
1100 // If an early-clobber operand register is also an input operand register,
1101 // then remove the early-clobber flag.
1102 for (unsigned Reg : ECRegs) {
1103 if (MIB->readsRegister(Reg, TRI)) {
1104 MachineOperand *MO = MIB->findRegisterDefOperand(Reg, false, TRI);
1105 assert(MO && "No def operand for clobbered register?");
1106 MO->setIsEarlyClobber(false);
1107 }
1108 }
1109
Chris Lattner51065562010-04-07 05:38:05 +00001110 // Get the mdnode from the asm if it exists and add it to the instruction.
1111 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
1112 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsona1e34302010-04-26 22:56:56 +00001113 if (MD)
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001114 MIB.addMetadata(MD);
Andrew Trick53df4b62011-09-20 03:06:13 +00001115
Jakob Stoklund Olesenb109a7b2012-12-20 18:08:09 +00001116 MBB->insert(InsertPos, MIB);
Dan Gohmanb10f1a52008-09-03 16:01:59 +00001117 break;
1118 }
1119 }
1120}
1121
Dan Gohmanb8120772009-10-10 01:32:21 +00001122/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
1123/// at the given position in the given block.
1124InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
1125 MachineBasicBlock::iterator insertpos)
Eric Christopher147c2ea2014-10-09 01:35:29 +00001126 : MF(mbb->getParent()), MRI(&MF->getRegInfo()),
1127 TII(MF->getSubtarget().getInstrInfo()),
1128 TRI(MF->getSubtarget().getRegisterInfo()),
1129 TLI(MF->getSubtarget().getTargetLowering()), MBB(mbb),
Eric Christopherd9134482014-08-04 21:25:23 +00001130 InsertPos(insertpos) {}