blob: 2ff66f8f871520e344f474051ac25b4376da3764 [file] [log] [blame]
Dan Gohmanbcea8592009-10-10 01:32:21 +00001//==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==//
Dan Gohman94b8d7e2008-09-03 16:01:59 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dan Gohmanbcea8592009-10-10 01:32:21 +000010// This implements the Emit routines for the SelectionDAG class, which creates
11// MachineInstrs based on the decisions of the SelectionDAG instruction
12// selection.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000013//
14//===----------------------------------------------------------------------===//
15
Dan Gohmanbcea8592009-10-10 01:32:21 +000016#define DEBUG_TYPE "instr-emitter"
17#include "InstrEmitter.h"
Evan Chenga8efe282010-03-14 19:56:39 +000018#include "SDNodeDbgValue.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000019#include "llvm/CodeGen/MachineConstantPool.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineRegisterInfo.h"
23#include "llvm/Target/TargetData.h"
24#include "llvm/Target/TargetMachine.h"
25#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Target/TargetLowering.h"
27#include "llvm/ADT/Statistic.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000028#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000030#include "llvm/Support/MathExtras.h"
31using namespace llvm;
32
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +000033/// MinRCSize - Smallest register class we allow when constraining virtual
34/// registers. If satisfying all register class constraints would require
35/// using a smaller register class, emit a COPY to a new virtual register
36/// instead.
37const unsigned MinRCSize = 4;
38
Dan Gohmanbcea8592009-10-10 01:32:21 +000039/// CountResults - The results of target nodes have register or immediate
Chris Lattner29d8f0c2010-12-23 17:24:32 +000040/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanbcea8592009-10-10 01:32:21 +000041/// not go into the resulting MachineInstr).
42unsigned InstrEmitter::CountResults(SDNode *Node) {
43 unsigned N = Node->getNumValues();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000044 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000045 --N;
46 if (N && Node->getValueType(N - 1) == MVT::Other)
47 --N; // Skip over chain result.
48 return N;
49}
50
51/// CountOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner29d8f0c2010-12-23 17:24:32 +000052/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanbcea8592009-10-10 01:32:21 +000053/// Compute the number of actual operands that will go into the resulting
54/// MachineInstr.
55unsigned InstrEmitter::CountOperands(SDNode *Node) {
56 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000057 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000058 --N;
59 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
60 --N; // Ignore chain if it exists.
61 return N;
62}
63
Dan Gohman94b8d7e2008-09-03 16:01:59 +000064/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
65/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000066void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000067EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
68 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000069 unsigned VRBase = 0;
70 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
71 // Just use the input register directly!
72 SDValue Op(Node, ResNo);
73 if (IsClone)
74 VRBaseMap.erase(Op);
75 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000076 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000077 assert(isNew && "Node emitted out of order - early");
78 return;
79 }
80
81 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
82 // the CopyToReg'd destination register instead of creating a new vreg.
83 bool MatchReg = true;
Evan Cheng1cd33272008-09-16 23:12:11 +000084 const TargetRegisterClass *UseRC = NULL;
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +000085 EVT VT = Node->getValueType(ResNo);
86
87 // Stick to the preferred register classes for legal types.
88 if (TLI->isTypeLegal(VT))
89 UseRC = TLI->getRegClassFor(VT);
90
Evan Chenge57187c2009-01-16 20:57:18 +000091 if (!IsClone && !IsCloned)
92 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
93 UI != E; ++UI) {
94 SDNode *User = *UI;
95 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +000096 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +000097 User->getOperand(2).getNode() == Node &&
98 User->getOperand(2).getResNo() == ResNo) {
99 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
100 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
101 VRBase = DestReg;
102 Match = false;
103 } else if (DestReg != SrcReg)
104 Match = false;
105 } else {
106 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
107 SDValue Op = User->getOperand(i);
108 if (Op.getNode() != Node || Op.getResNo() != ResNo)
109 continue;
Owen Andersone50ed302009-08-10 22:56:29 +0000110 EVT VT = Node->getValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000111 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000112 continue;
113 Match = false;
114 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000115 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000116 const TargetRegisterClass *RC = 0;
117 if (i+II.getNumDefs() < II.getNumOperands())
Evan Cheng15993f82011-06-27 21:26:13 +0000118 RC = TII->getRegClass(II, i+II.getNumDefs(), TRI);
Evan Chenge57187c2009-01-16 20:57:18 +0000119 if (!UseRC)
120 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000121 else if (RC) {
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +0000122 const TargetRegisterClass *ComRC =
123 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000124 // If multiple uses expect disjoint register classes, we emit
125 // copies in AddRegisterOperand.
126 if (ComRC)
127 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000128 }
Evan Chenge57187c2009-01-16 20:57:18 +0000129 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000130 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000131 }
Evan Chenge57187c2009-01-16 20:57:18 +0000132 MatchReg &= Match;
133 if (VRBase)
134 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000135 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000136
137 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000138 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000139
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000140 // Figure out the register class to create for the destreg.
141 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000142 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000143 } else if (UseRC) {
144 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
145 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000146 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000147 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000148 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000149
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000150 // If all uses are reading from the src physical register and copying the
151 // register is either impossible or very expensive, then don't create a copy.
152 if (MatchReg && SrcRC->getCopyCost() < 0) {
153 VRBase = SrcReg;
154 } else {
155 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000156 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000157 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
158 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000159 }
160
161 SDValue Op(Node, ResNo);
162 if (IsClone)
163 VRBaseMap.erase(Op);
164 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000165 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000166 assert(isNew && "Node emitted out of order - early");
167}
168
169/// getDstOfCopyToRegUse - If the only use of the specified result number of
170/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000171unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
172 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000173 if (!Node->hasOneUse())
174 return 0;
175
176 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000177 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000178 User->getOperand(2).getNode() == Node &&
179 User->getOperand(2).getResNo() == ResNo) {
180 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
181 if (TargetRegisterInfo::isVirtualRegister(Reg))
182 return Reg;
183 }
184 return 0;
185}
186
Dan Gohmanbcea8592009-10-10 01:32:21 +0000187void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge837dea2011-06-28 19:10:37 +0000188 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000189 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000190 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000191 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000192 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
193
194 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
195 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000196 // is a vreg in the same register class, use the CopyToReg'd destination
197 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000198 unsigned VRBase = 0;
Evan Cheng15993f82011-06-27 21:26:13 +0000199 const TargetRegisterClass *RC = TII->getRegClass(II, i, TRI);
Evan Cheng8955e932009-07-11 01:06:50 +0000200 if (II.OpInfo[i].isOptionalDef()) {
201 // Optional def must be a physical register.
202 unsigned NumResults = CountResults(Node);
203 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
204 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
205 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
206 }
Evan Chenge57187c2009-01-16 20:57:18 +0000207
Evan Cheng8955e932009-07-11 01:06:50 +0000208 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000209 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
210 UI != E; ++UI) {
211 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000212 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000213 User->getOperand(2).getNode() == Node &&
214 User->getOperand(2).getResNo() == i) {
215 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
216 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000217 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000218 if (RegRC == RC) {
219 VRBase = Reg;
220 MI->addOperand(MachineOperand::CreateReg(Reg, true));
221 break;
222 }
Evan Chenge57187c2009-01-16 20:57:18 +0000223 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000224 }
225 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000226
227 // Create the result registers for this node and add the result regs to
228 // the machine instruction.
229 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000230 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000231 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000232 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
233 }
234
235 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000236 if (IsClone)
237 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000238 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000239 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000240 assert(isNew && "Node emitted out of order - early");
241 }
242}
243
244/// getVR - Return the virtual register corresponding to the specified result
245/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000246unsigned InstrEmitter::getVR(SDValue Op,
247 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000248 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000249 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000250 // Add an IMPLICIT_DEF instruction before every use.
251 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000252 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000253 // does not include operand register class info.
254 if (!VReg) {
255 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000256 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000257 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000258 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000259 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000260 return VReg;
261 }
262
263 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
264 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
265 return I->second;
266}
267
Bill Wendlingc0407192010-08-30 04:36:50 +0000268
Dan Gohmanf8c73942009-04-13 15:38:05 +0000269/// AddRegisterOperand - Add the specified register as an operand to the
270/// specified machine instr. Insert register copies if the register is
271/// not in the required register class.
272void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000273InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
274 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000275 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000276 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000277 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000279 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000280 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000281 // Get/emit the operand.
282 unsigned VReg = getVR(Op, VRBaseMap);
283 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
284
Evan Chenge837dea2011-06-28 19:10:37 +0000285 const MCInstrDesc &MCID = MI->getDesc();
286 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
287 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000288
289 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000290 // a new virtual register and copy the value into it, but first attempt to
291 // shrink VReg's register class within reason. For example, if VReg == GR32
292 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000293 if (II) {
Chris Lattner2a386882009-07-29 21:36:49 +0000294 const TargetRegisterClass *DstRC = 0;
295 if (IIOpNum < II->getNumOperands())
Evan Cheng15993f82011-06-27 21:26:13 +0000296 DstRC = TII->getRegClass(*II, IIOpNum, TRI);
Evan Chenge837dea2011-06-28 19:10:37 +0000297 assert((DstRC || (MCID.isVariadic() && IIOpNum >= MCID.getNumOperands())) &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000298 "Don't have operand info for this instruction!");
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000299 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000300 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000301 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
302 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000303 VReg = NewVReg;
304 }
305 }
306
Dan Gohman47bd03b2010-04-30 00:08:21 +0000307 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000308 // conservative approximation. InstrEmitter does trivial coalescing
309 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000310 // Avoid kill flags on Schedule cloned nodes, since there will be
311 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000312 // Tied operands are never killed, so we need to check that. And that
313 // means we need to determine the index of the operand.
314 bool isKill = Op.hasOneUse() &&
315 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000316 !IsDebug &&
317 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000318 if (isKill) {
319 unsigned Idx = MI->getNumOperands();
320 while (Idx > 0 &&
321 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
322 --Idx;
Evan Chenge837dea2011-06-28 19:10:37 +0000323 bool isTied = MI->getDesc().getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000324 if (isTied)
325 isKill = false;
326 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000327
Evan Chengbfcb3052010-03-25 01:38:16 +0000328 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000329 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000330 false/*isDead*/, false/*isUndef*/,
331 false/*isEarlyClobber*/,
332 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000333}
334
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000335/// AddOperand - Add the specified operand to the specified machine instr. II
336/// specifies the instruction information for the node, and IIOpNum is the
Andrew Trick3af7a672011-09-20 03:06:13 +0000337/// operand number (in the II) that we are adding. IIOpNum and II are used for
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000338/// assertions only.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000339void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
340 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000341 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000342 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000343 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000344 if (Op.isMachineOpcode()) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000345 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
346 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000347 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000348 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000349 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000350 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000351 MI->addOperand(MachineOperand::CreateFPImm(CFP));
352 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Bill Wendlingc0407192010-08-30 04:36:50 +0000353 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000354 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000355 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
356 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000357 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
358 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000359 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
360 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
361 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000362 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
363 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000364 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
365 int Offset = CP->getOffset();
366 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000367 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000368 // MachineConstantPool wants an explicit alignment.
369 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000370 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000371 if (Align == 0) {
372 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000373 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000374 }
375 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000376
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000377 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000378 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000379 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000380 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000381 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000382 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000383 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
384 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000385 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000386 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000387 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000388 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000389 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
390 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000391 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000392 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000393 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000394 "Chain and glue operands should occur at end of operand list!");
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000395 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
396 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000397 }
398}
399
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000400unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
401 EVT VT, DebugLoc DL) {
402 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
403 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
404
405 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
406 // within reason.
407 if (RC && RC != VRC)
408 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
409
410 // VReg has been adjusted. It can be used with SubIdx operands now.
411 if (RC)
412 return VReg;
413
414 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
415 // register instead.
416 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
417 assert(RC && "No legal register class for VT supports that SubIdx");
418 unsigned NewReg = MRI->createVirtualRegister(RC);
419 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
420 .addReg(VReg);
421 return NewReg;
422}
423
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000424/// EmitSubregNode - Generate machine code for subreg nodes.
425///
Andrew Trick3af7a672011-09-20 03:06:13 +0000426void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000427 DenseMap<SDValue, unsigned> &VRBaseMap,
428 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000429 unsigned VRBase = 0;
430 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000431
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000432 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
433 // the CopyToReg'd destination register instead of creating a new vreg.
434 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
435 UI != E; ++UI) {
436 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000437 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000438 User->getOperand(2).getNode() == Node) {
439 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
440 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
441 VRBase = DestReg;
442 break;
443 }
444 }
445 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000446
Chris Lattner518bb532010-02-09 19:54:29 +0000447 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000448 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
449 // constraints on the %dst register, COPY can target all legal register
450 // classes.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000451 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000452 const TargetRegisterClass *TRC = TLI->getRegClassFor(Node->getValueType(0));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000453
Dan Gohmanf8c73942009-04-13 15:38:05 +0000454 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000455 MachineInstr *DefMI = MRI->getVRegDef(VReg);
456 unsigned SrcReg, DstReg, DefSubIdx;
457 if (DefMI &&
458 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
459 SubIdx == DefSubIdx) {
460 // Optimize these:
461 // r1025 = s/zext r1024, 4
462 // r1026 = extract_subreg r1025, 4
463 // to a copy
464 // r1026 = copy r1024
Evan Cheng0b71d392011-01-05 23:06:49 +0000465 VRBase = MRI->createVirtualRegister(TRC);
466 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
467 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
468 } else {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000469 // VReg may not support a SubIdx sub-register, and we may need to
470 // constrain its register class or issue a COPY to a compatible register
471 // class.
472 VReg = ConstrainForSubReg(VReg, SubIdx,
473 Node->getOperand(0).getValueType(),
474 Node->getDebugLoc());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000475
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000476 // Create the destreg if it is missing.
477 if (VRBase == 0)
478 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng0b71d392011-01-05 23:06:49 +0000479
480 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000481 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
482 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000483 }
Chris Lattner518bb532010-02-09 19:54:29 +0000484 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
485 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000486 SDValue N0 = Node->getOperand(0);
487 SDValue N1 = Node->getOperand(1);
488 SDValue N2 = Node->getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000489 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohman5ec3b422009-04-14 22:17:14 +0000490
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000491 // Figure out the register class to create for the destreg. It should be
492 // the largest legal register class supporting SubIdx sub-registers.
493 // RegisterCoalescer will constrain it further if it decides to eliminate
494 // the INSERT_SUBREG instruction.
495 //
496 // %dst = INSERT_SUBREG %src, %sub, SubIdx
497 //
498 // is lowered by TwoAddressInstructionPass to:
499 //
500 // %dst = COPY %src
501 // %dst:SubIdx = COPY %sub
502 //
503 // There is no constraint on the %src register class.
504 //
505 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getValueType(0));
506 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
507 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
508
509 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000510 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000511
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000512 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000513 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000514 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Andrew Trick3af7a672011-09-20 03:06:13 +0000515
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000516 // If creating a subreg_to_reg, then the first input operand
517 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000518 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000519 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000520 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000521 } else
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000522 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
523 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000524 // Add the subregster being inserted
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000525 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
526 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000527 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000528 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000529 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000530 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000531
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000532 SDValue Op(Node, 0);
533 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000534 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000535 assert(isNew && "Node emitted out of order - early");
536}
537
Dan Gohman88c7af02009-04-13 21:06:25 +0000538/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
539/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000540/// register is constrained to be in a particular register class.
541///
542void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000543InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
544 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000545 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000546
Dan Gohmanf8c73942009-04-13 15:38:05 +0000547 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000548 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
549 const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000550 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000551 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
552 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000553
554 SDValue Op(Node, 0);
555 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000556 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000557 assert(isNew && "Node emitted out of order - early");
558}
559
Evan Chengba609c82010-05-04 00:22:40 +0000560/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
561///
562void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000563 DenseMap<SDValue, unsigned> &VRBaseMap,
564 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000565 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
566 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Evan Chengba609c82010-05-04 00:22:40 +0000567 unsigned NewVReg = MRI->createVirtualRegister(RC);
568 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
569 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
570 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000571 assert((NumOps & 1) == 1 &&
572 "REG_SEQUENCE must have an odd number of operands!");
Evan Chenge837dea2011-06-28 19:10:37 +0000573 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
Owen Anderson1300f302011-06-16 18:17:13 +0000574 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000575 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000576 if ((i & 1) == 0) {
Evan Chengba609c82010-05-04 00:22:40 +0000577 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
578 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
Evan Cheng60ffa942010-05-10 23:08:19 +0000579 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
580 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000581 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Bob Wilson495de3b2010-12-17 01:21:12 +0000582 if (SRC && SRC != RC) {
Evan Cheng27e48402010-05-18 20:03:28 +0000583 MRI->setRegClass(NewVReg, SRC);
Evan Cheng5012f9b2010-05-18 20:07:47 +0000584 RC = SRC;
585 }
Evan Chengba609c82010-05-04 00:22:40 +0000586 }
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000587 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
588 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000589 }
590
591 MBB->insert(InsertPos, MI);
592 SDValue Op(Node, 0);
593 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000594 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000595 assert(isNew && "Node emitted out of order - early");
596}
597
Evan Chengbfcb3052010-03-25 01:38:16 +0000598/// EmitDbgValue - Generate machine instruction for a dbg_value node.
599///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000600MachineInstr *
601InstrEmitter::EmitDbgValue(SDDbgValue *SD,
602 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000603 uint64_t Offset = SD->getOffset();
604 MDNode* MDPtr = SD->getMDPtr();
605 DebugLoc DL = SD->getDebugLoc();
606
Dale Johannesenf822e732010-04-25 21:33:54 +0000607 if (SD->getKind() == SDDbgValue::FRAMEIX) {
608 // Stack address; this needs to be lowered in target-dependent fashion.
609 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
610 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000611 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000612 }
613 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000614 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000615 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
616 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000617 SDNode *Node = SD->getSDNode();
618 SDValue Op = SDValue(Node, SD->getResNo());
619 // It's possible we replaced this SDNode with other(s) and therefore
620 // didn't generate code for it. It's better to catch these cases where
621 // they happen and transfer the debug info, but trying to guarantee that
622 // in all cases would be very fragile; this is a safeguard for any
623 // that were missed.
624 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
625 if (I==VRBaseMap.end())
626 MIB.addReg(0U); // undef
627 else
628 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000629 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000630 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000631 const Value *V = SD->getConst();
632 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000633 if (CI->getBitWidth() > 64)
634 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000635 else
636 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000637 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000638 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000639 } else {
640 // Could be an Undef. In any case insert an Undef so we can see what we
641 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000642 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000643 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000644 } else {
645 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000646 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000647 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000648
649 MIB.addImm(Offset).addMetadata(MDPtr);
650 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000651}
652
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000653/// EmitMachineNode - Generate machine code for a target-specific node and
654/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000655///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000656void InstrEmitter::
657EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000658 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000659 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000660
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000661 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000662 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000663 Opc == TargetOpcode::INSERT_SUBREG ||
664 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000665 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000666 return;
667 }
668
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000669 // Handle COPY_TO_REGCLASS specially.
670 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
671 EmitCopyToRegClassNode(Node, VRBaseMap);
672 return;
673 }
674
Evan Chengba609c82010-05-04 00:22:40 +0000675 // Handle REG_SEQUENCE specially.
676 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000677 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000678 return;
679 }
680
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000681 if (Opc == TargetOpcode::IMPLICIT_DEF)
682 // We want a unique VR for each IMPLICIT_DEF use.
683 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000684
Evan Chenge837dea2011-06-28 19:10:37 +0000685 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000686 unsigned NumResults = CountResults(Node);
687 unsigned NodeOperands = CountOperands(Node);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000688 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000689#ifndef NDEBUG
690 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000691 if (II.isVariadic())
692 assert(NumMIOperands >= II.getNumOperands() &&
693 "Too few operands for a variadic node!");
694 else
695 assert(NumMIOperands >= II.getNumOperands() &&
696 NumMIOperands <= II.getNumOperands()+II.getNumImplicitDefs() &&
697 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000698#endif
699
700 // Create the new machine instruction.
701 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000702
703 // The MachineInstr constructor adds implicit-def operands. Scan through
704 // these to determine which are dead.
705 if (MI->getNumOperands() != 0 &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000706 Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
Dan Gohmandb497122010-06-18 23:28:01 +0000707 // First, collect all used registers.
708 SmallVector<unsigned, 8> UsedRegs;
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000709 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser())
Dan Gohmandb497122010-06-18 23:28:01 +0000710 if (F->getOpcode() == ISD::CopyFromReg)
711 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
712 else {
713 // Collect declared implicit uses.
Evan Chenge837dea2011-06-28 19:10:37 +0000714 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
715 UsedRegs.append(MCID.getImplicitUses(),
716 MCID.getImplicitUses() + MCID.getNumImplicitUses());
Dan Gohmandb497122010-06-18 23:28:01 +0000717 // In addition to declared implicit uses, we must also check for
718 // direct RegisterSDNode operands.
719 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
720 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
721 unsigned Reg = R->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000722 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Dan Gohmandb497122010-06-18 23:28:01 +0000723 UsedRegs.push_back(Reg);
724 }
725 }
726 // Then mark unused registers as dead.
727 MI->setPhysRegsDeadExcept(UsedRegs, *TRI);
728 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000729
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000730 // Add result register values for things that are defined by this
731 // instruction.
732 if (NumResults)
733 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000734
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000735 // Emit all of the actual operands of this instruction, adding them to the
736 // instruction as appropriate.
737 bool HasOptPRefs = II.getNumDefs() > NumResults;
738 assert((!HasOptPRefs || !HasPhysRegOuts) &&
739 "Unable to cope with optional defs and phys regs defs!");
740 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
741 for (unsigned i = NumSkip; i != NodeOperands; ++i)
742 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000743 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000744
745 // Transfer all of the memory reference descriptions of this instruction.
746 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
747 cast<MachineSDNode>(Node)->memoperands_end());
748
Dan Gohman14152b42010-07-06 20:24:04 +0000749 // Insert the instruction into position in the block. This needs to
750 // happen before any custom inserter hook is called so that the
751 // hook knows where in the block to insert the replacement code.
752 MBB->insert(InsertPos, MI);
753
Eric Christopherbece0482010-12-08 22:21:42 +0000754 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000755 if (HasPhysRegOuts) {
756 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
757 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
758 if (Node->hasAnyUseOfValue(i))
759 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
760 // If there are no uses, mark the register as dead now, so that
761 // MachineLICM/Sink can see that it's dead. Don't do this if the
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000762 // node has a Glue value, for the benefit of targets still using
763 // Glue for values in physregs.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000764 else if (Node->getValueType(Node->getNumValues()-1) != MVT::Glue)
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000765 MI->addRegisterDead(Reg, TRI);
766 }
767 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000768
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000769 // If the instruction has implicit defs and the node doesn't, mark the
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000770 // implicit def as dead. If the node has any glue outputs, we don't do this
771 // because we don't know what implicit defs are being used by glued nodes.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000772 if (Node->getValueType(Node->getNumValues()-1) != MVT::Glue)
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000773 if (const unsigned *IDList = II.getImplicitDefs()) {
774 for (unsigned i = NumResults, e = II.getNumDefs()+II.getNumImplicitDefs();
775 i != e; ++i)
776 MI->addRegisterDead(IDList[i-II.getNumDefs()], TRI);
777 }
Evan Cheng37fefc22011-08-30 19:09:48 +0000778
779 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000780#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000781 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000782#endif
Andrew Trick83a80312011-09-20 18:22:31 +0000783 TLI->AdjustInstrPostInstrSelection(MI, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000784}
785
786/// EmitSpecialNode - Generate machine code for a target-independent node and
787/// needed dependencies.
788void InstrEmitter::
789EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
790 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000791 switch (Node->getOpcode()) {
792 default:
793#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000794 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000795#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000796 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000797 break;
798 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000799 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000800 break;
Evan Cheng37b73872009-07-30 08:33:02 +0000801 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000802 case ISD::TokenFactor: // fall thru
803 break;
804 case ISD::CopyToReg: {
805 unsigned SrcReg;
806 SDValue SrcVal = Node->getOperand(2);
807 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
808 SrcReg = R->getReg();
809 else
810 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000811
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000812 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
813 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
814 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000815
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000816 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
817 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000818 break;
819 }
820 case ISD::CopyFromReg: {
821 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000822 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000823 break;
824 }
Chris Lattner7561d482010-03-14 02:33:54 +0000825 case ISD::EH_LABEL: {
826 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
827 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
828 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
829 break;
830 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000831
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000832 case ISD::INLINEASM: {
833 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000834 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000835 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000836
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000837 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000838 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000839 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000840
841 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000842 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
843 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000844 MI->addOperand(MachineOperand::CreateES(AsmStr));
Andrew Trick3af7a672011-09-20 03:06:13 +0000845
Evan Chengc36b7062011-01-07 23:50:32 +0000846 // Add the HasSideEffect and isAlignStack bits.
847 int64_t ExtraInfo =
848 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000849 getZExtValue();
Evan Chengc36b7062011-01-07 23:50:32 +0000850 MI->addOperand(MachineOperand::CreateImm(ExtraInfo));
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000851
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000852 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000853 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000854 unsigned Flags =
855 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000856 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000857
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000858 MI->addOperand(MachineOperand::CreateImm(Flags));
859 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000860
Chris Lattnerdecc2672010-04-07 05:20:54 +0000861 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000862 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000863 case InlineAsm::Kind_RegDef:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000864 for (; NumVals; --NumVals, ++i) {
865 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000866 // FIXME: Add dead flags for physical and virtual registers defined.
867 // For now, mark physical register defs as implicit to help fast
868 // regalloc. This makes inline asm look a lot like calls.
869 MI->addOperand(MachineOperand::CreateReg(Reg, true,
870 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000871 }
872 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000873 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000874 case InlineAsm::Kind_Clobber:
Dale Johannesen913d3df2008-09-12 17:49:03 +0000875 for (; NumVals; --NumVals, ++i) {
876 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000877 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true,
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000878 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg),
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000879 /*isKill=*/ false,
880 /*isDead=*/ false,
881 /*isUndef=*/false,
882 /*isEarlyClobber=*/ true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000883 }
884 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000885 case InlineAsm::Kind_RegUse: // Use of register.
886 case InlineAsm::Kind_Imm: // Immediate.
887 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000888 // The addressing mode has been selected, just add all of the
889 // operands to the machine instruction.
890 for (; NumVals; --NumVals, ++i)
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000891 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap,
892 /*IsDebug=*/false, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000893 break;
894 }
895 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000896
Chris Lattnercf9a4152010-04-07 05:38:05 +0000897 // Get the mdnode from the asm if it exists and add it to the instruction.
898 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
899 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000900 if (MD)
901 MI->addOperand(MachineOperand::CreateMetadata(MD));
Andrew Trick3af7a672011-09-20 03:06:13 +0000902
Dan Gohmanbcea8592009-10-10 01:32:21 +0000903 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000904 break;
905 }
906 }
907}
908
Dan Gohmanbcea8592009-10-10 01:32:21 +0000909/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
910/// at the given position in the given block.
911InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
912 MachineBasicBlock::iterator insertpos)
913 : MF(mbb->getParent()),
914 MRI(&MF->getRegInfo()),
915 TM(&MF->getTarget()),
916 TII(TM->getInstrInfo()),
917 TRI(TM->getRegisterInfo()),
918 TLI(TM->getTargetLowering()),
919 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000920}