blob: b0239e13b2edc76db71325df188afee5296605e8 [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
Dan Gohmanbcea8592009-10-10 01:32:21 +000033/// CountResults - The results of target nodes have register or immediate
Chris Lattner29d8f0c2010-12-23 17:24:32 +000034/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanbcea8592009-10-10 01:32:21 +000035/// not go into the resulting MachineInstr).
36unsigned InstrEmitter::CountResults(SDNode *Node) {
37 unsigned N = Node->getNumValues();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000038 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000039 --N;
40 if (N && Node->getValueType(N - 1) == MVT::Other)
41 --N; // Skip over chain result.
42 return N;
43}
44
45/// CountOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner29d8f0c2010-12-23 17:24:32 +000046/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanbcea8592009-10-10 01:32:21 +000047/// Compute the number of actual operands that will go into the resulting
48/// MachineInstr.
49unsigned InstrEmitter::CountOperands(SDNode *Node) {
50 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000051 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000052 --N;
53 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
54 --N; // Ignore chain if it exists.
55 return N;
56}
57
Dan Gohman94b8d7e2008-09-03 16:01:59 +000058/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
59/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000060void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000061EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
62 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000063 unsigned VRBase = 0;
64 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
65 // Just use the input register directly!
66 SDValue Op(Node, ResNo);
67 if (IsClone)
68 VRBaseMap.erase(Op);
69 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000070 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000071 assert(isNew && "Node emitted out of order - early");
72 return;
73 }
74
75 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
76 // the CopyToReg'd destination register instead of creating a new vreg.
77 bool MatchReg = true;
Evan Cheng1cd33272008-09-16 23:12:11 +000078 const TargetRegisterClass *UseRC = NULL;
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +000079 EVT VT = Node->getValueType(ResNo);
80
81 // Stick to the preferred register classes for legal types.
82 if (TLI->isTypeLegal(VT))
83 UseRC = TLI->getRegClassFor(VT);
84
Evan Chenge57187c2009-01-16 20:57:18 +000085 if (!IsClone && !IsCloned)
86 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
87 UI != E; ++UI) {
88 SDNode *User = *UI;
89 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +000090 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +000091 User->getOperand(2).getNode() == Node &&
92 User->getOperand(2).getResNo() == ResNo) {
93 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
94 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
95 VRBase = DestReg;
96 Match = false;
97 } else if (DestReg != SrcReg)
98 Match = false;
99 } else {
100 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
101 SDValue Op = User->getOperand(i);
102 if (Op.getNode() != Node || Op.getResNo() != ResNo)
103 continue;
Owen Andersone50ed302009-08-10 22:56:29 +0000104 EVT VT = Node->getValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000105 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000106 continue;
107 Match = false;
108 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000109 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000110 const TargetRegisterClass *RC = 0;
111 if (i+II.getNumDefs() < II.getNumOperands())
Evan Cheng15993f82011-06-27 21:26:13 +0000112 RC = TII->getRegClass(II, i+II.getNumDefs(), TRI);
Evan Chenge57187c2009-01-16 20:57:18 +0000113 if (!UseRC)
114 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000115 else if (RC) {
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000116 const TargetRegisterClass *ComRC = getCommonSubClass(UseRC, RC);
117 // If multiple uses expect disjoint register classes, we emit
118 // copies in AddRegisterOperand.
119 if (ComRC)
120 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000121 }
Evan Chenge57187c2009-01-16 20:57:18 +0000122 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000123 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000124 }
Evan Chenge57187c2009-01-16 20:57:18 +0000125 MatchReg &= Match;
126 if (VRBase)
127 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000128 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000129
130 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000131 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000132
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000133 // Figure out the register class to create for the destreg.
134 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000135 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000136 } else if (UseRC) {
137 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
138 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000139 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000140 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000141 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000142
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000143 // If all uses are reading from the src physical register and copying the
144 // register is either impossible or very expensive, then don't create a copy.
145 if (MatchReg && SrcRC->getCopyCost() < 0) {
146 VRBase = SrcReg;
147 } else {
148 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000149 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000150 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
151 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000152 }
153
154 SDValue Op(Node, ResNo);
155 if (IsClone)
156 VRBaseMap.erase(Op);
157 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000158 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000159 assert(isNew && "Node emitted out of order - early");
160}
161
162/// getDstOfCopyToRegUse - If the only use of the specified result number of
163/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000164unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
165 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000166 if (!Node->hasOneUse())
167 return 0;
168
169 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000170 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000171 User->getOperand(2).getNode() == Node &&
172 User->getOperand(2).getResNo() == ResNo) {
173 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
174 if (TargetRegisterInfo::isVirtualRegister(Reg))
175 return Reg;
176 }
177 return 0;
178}
179
Dan Gohmanbcea8592009-10-10 01:32:21 +0000180void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge837dea2011-06-28 19:10:37 +0000181 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000182 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000183 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000184 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000185 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
186
187 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
188 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000189 // is a vreg in the same register class, use the CopyToReg'd destination
190 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000191 unsigned VRBase = 0;
Evan Cheng15993f82011-06-27 21:26:13 +0000192 const TargetRegisterClass *RC = TII->getRegClass(II, i, TRI);
Evan Cheng8955e932009-07-11 01:06:50 +0000193 if (II.OpInfo[i].isOptionalDef()) {
194 // Optional def must be a physical register.
195 unsigned NumResults = CountResults(Node);
196 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
197 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
198 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
199 }
Evan Chenge57187c2009-01-16 20:57:18 +0000200
Evan Cheng8955e932009-07-11 01:06:50 +0000201 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000202 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
203 UI != E; ++UI) {
204 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000205 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000206 User->getOperand(2).getNode() == Node &&
207 User->getOperand(2).getResNo() == i) {
208 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
209 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000210 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000211 if (RegRC == RC) {
212 VRBase = Reg;
213 MI->addOperand(MachineOperand::CreateReg(Reg, true));
214 break;
215 }
Evan Chenge57187c2009-01-16 20:57:18 +0000216 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000217 }
218 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000219
220 // Create the result registers for this node and add the result regs to
221 // the machine instruction.
222 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000223 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000224 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000225 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
226 }
227
228 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000229 if (IsClone)
230 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000231 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000232 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000233 assert(isNew && "Node emitted out of order - early");
234 }
235}
236
237/// getVR - Return the virtual register corresponding to the specified result
238/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000239unsigned InstrEmitter::getVR(SDValue Op,
240 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000241 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000242 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000243 // Add an IMPLICIT_DEF instruction before every use.
244 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000245 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000246 // does not include operand register class info.
247 if (!VReg) {
248 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000249 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000250 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000251 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000252 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000253 return VReg;
254 }
255
256 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
257 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
258 return I->second;
259}
260
Bill Wendlingc0407192010-08-30 04:36:50 +0000261
Dan Gohmanf8c73942009-04-13 15:38:05 +0000262/// AddRegisterOperand - Add the specified register as an operand to the
263/// specified machine instr. Insert register copies if the register is
264/// not in the required register class.
265void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000266InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
267 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000268 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000269 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000270 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000272 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000273 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000274 // Get/emit the operand.
275 unsigned VReg = getVR(Op, VRBaseMap);
276 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
277
Evan Chenge837dea2011-06-28 19:10:37 +0000278 const MCInstrDesc &MCID = MI->getDesc();
279 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
280 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000281
282 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000283 // a new virtual register and copy the value into it, but first attempt to
284 // shrink VReg's register class within reason. For example, if VReg == GR32
285 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
286 const unsigned MinRCSize = 4;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000287 if (II) {
Chris Lattner2a386882009-07-29 21:36:49 +0000288 const TargetRegisterClass *DstRC = 0;
289 if (IIOpNum < II->getNumOperands())
Evan Cheng15993f82011-06-27 21:26:13 +0000290 DstRC = TII->getRegClass(*II, IIOpNum, TRI);
Evan Chenge837dea2011-06-28 19:10:37 +0000291 assert((DstRC || (MCID.isVariadic() && IIOpNum >= MCID.getNumOperands())) &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000292 "Don't have operand info for this instruction!");
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000293 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000294 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000295 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
296 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000297 VReg = NewVReg;
298 }
299 }
300
Dan Gohman47bd03b2010-04-30 00:08:21 +0000301 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000302 // conservative approximation. InstrEmitter does trivial coalescing
303 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000304 // Avoid kill flags on Schedule cloned nodes, since there will be
305 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000306 // Tied operands are never killed, so we need to check that. And that
307 // means we need to determine the index of the operand.
308 bool isKill = Op.hasOneUse() &&
309 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000310 !IsDebug &&
311 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000312 if (isKill) {
313 unsigned Idx = MI->getNumOperands();
314 while (Idx > 0 &&
315 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
316 --Idx;
Evan Chenge837dea2011-06-28 19:10:37 +0000317 bool isTied = MI->getDesc().getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000318 if (isTied)
319 isKill = false;
320 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000321
Evan Chengbfcb3052010-03-25 01:38:16 +0000322 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000323 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000324 false/*isDead*/, false/*isUndef*/,
325 false/*isEarlyClobber*/,
326 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000327}
328
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000329/// AddOperand - Add the specified operand to the specified machine instr. II
330/// specifies the instruction information for the node, and IIOpNum is the
Andrew Trick3af7a672011-09-20 03:06:13 +0000331/// operand number (in the II) that we are adding. IIOpNum and II are used for
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000332/// assertions only.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000333void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
334 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000335 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000336 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000337 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000338 if (Op.isMachineOpcode()) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000339 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
340 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000341 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000342 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000343 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000344 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000345 MI->addOperand(MachineOperand::CreateFPImm(CFP));
346 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Bill Wendlingc0407192010-08-30 04:36:50 +0000347 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000348 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000349 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
350 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000351 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
352 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000353 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
354 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
355 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000356 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
357 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000358 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
359 int Offset = CP->getOffset();
360 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000361 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000362 // MachineConstantPool wants an explicit alignment.
363 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000364 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000365 if (Align == 0) {
366 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000367 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000368 }
369 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000370
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000371 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000372 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000373 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000374 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000375 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000376 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000377 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
378 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000379 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000380 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000381 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000382 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000383 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
384 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000385 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000387 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000388 "Chain and glue operands should occur at end of operand list!");
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000389 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
390 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000391 }
392}
393
Dan Gohmanf8c73942009-04-13 15:38:05 +0000394/// getSuperRegisterRegClass - Returns the register class of a superreg A whose
395/// "SubIdx"'th sub-register class is the specified register class and whose
396/// type matches the specified type.
397static const TargetRegisterClass*
398getSuperRegisterRegClass(const TargetRegisterClass *TRC,
Owen Andersone50ed302009-08-10 22:56:29 +0000399 unsigned SubIdx, EVT VT) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000400 // Pick the register class of the superegister for this type
401 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
402 E = TRC->superregclasses_end(); I != E; ++I)
Jakob Stoklund Olesenfa4677b2009-04-28 16:34:09 +0000403 if ((*I)->hasType(VT) && (*I)->getSubRegisterRegClass(SubIdx) == TRC)
Dan Gohmanf8c73942009-04-13 15:38:05 +0000404 return *I;
405 assert(false && "Couldn't find the register class");
406 return 0;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000407}
408
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000409/// EmitSubregNode - Generate machine code for subreg nodes.
410///
Andrew Trick3af7a672011-09-20 03:06:13 +0000411void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000412 DenseMap<SDValue, unsigned> &VRBaseMap,
413 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000414 unsigned VRBase = 0;
415 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000416
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000417 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
418 // the CopyToReg'd destination register instead of creating a new vreg.
419 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
420 UI != E; ++UI) {
421 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000422 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000423 User->getOperand(2).getNode() == Node) {
424 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
425 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
426 VRBase = DestReg;
427 break;
428 }
429 }
430 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000431
Chris Lattner518bb532010-02-09 19:54:29 +0000432 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000433 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000434 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000435
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000436 // Figure out the register class to create for the destreg.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000437 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000438 MachineInstr *DefMI = MRI->getVRegDef(VReg);
439 unsigned SrcReg, DstReg, DefSubIdx;
440 if (DefMI &&
441 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
442 SubIdx == DefSubIdx) {
443 // Optimize these:
444 // r1025 = s/zext r1024, 4
445 // r1026 = extract_subreg r1025, 4
446 // to a copy
447 // r1026 = copy r1024
448 const TargetRegisterClass *TRC = MRI->getRegClass(SrcReg);
449 VRBase = MRI->createVirtualRegister(TRC);
450 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
451 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
452 } else {
453 const TargetRegisterClass *TRC = MRI->getRegClass(VReg);
454 const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx);
455 assert(SRC && "Invalid subregister index in EXTRACT_SUBREG");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000456
Evan Cheng0b71d392011-01-05 23:06:49 +0000457 // Figure out the register class to create for the destreg.
458 // Note that if we're going to directly use an existing register,
459 // it must be precisely the required class, and not a subclass
460 // thereof.
461 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
462 // Create the reg
463 assert(SRC && "Couldn't find source register class");
464 VRBase = MRI->createVirtualRegister(SRC);
465 }
466
467 // Create the extract_subreg machine instruction.
468 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
469 TII->get(TargetOpcode::COPY), VRBase);
470
471 // Add source, and subreg index
472 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap, /*IsDebug=*/false,
473 IsClone, IsCloned);
474 assert(TargetRegisterInfo::isVirtualRegister(MI->getOperand(1).getReg())&&
475 "Cannot yet extract from physregs");
476 MI->getOperand(1).setSubReg(SubIdx);
477 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000478 }
Chris Lattner518bb532010-02-09 19:54:29 +0000479 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
480 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000481 SDValue N0 = Node->getOperand(0);
482 SDValue N1 = Node->getOperand(1);
483 SDValue N2 = Node->getOperand(2);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000484 unsigned SubReg = getVR(N1, VRBaseMap);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000485 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmanbcea8592009-10-10 01:32:21 +0000486 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000487 const TargetRegisterClass *SRC =
Evan Chengba609c82010-05-04 00:22:40 +0000488 getSuperRegisterRegClass(TRC, SubIdx, Node->getValueType(0));
Dan Gohman5ec3b422009-04-14 22:17:14 +0000489
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000490 // Figure out the register class to create for the destreg.
Dan Gohman5ec3b422009-04-14 22:17:14 +0000491 // Note that if we're going to directly use an existing register,
492 // it must be precisely the required class, and not a subclass
493 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000494 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman5ec3b422009-04-14 22:17:14 +0000495 // Create the reg
496 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000497 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000498 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000499
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000500 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000501 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000502 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Andrew Trick3af7a672011-09-20 03:06:13 +0000503
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000504 // If creating a subreg_to_reg, then the first input operand
505 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000506 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000507 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000508 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000509 } else
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000510 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
511 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000512 // Add the subregster being inserted
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000513 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
514 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000515 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000516 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000517 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000518 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000519
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000520 SDValue Op(Node, 0);
521 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000522 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000523 assert(isNew && "Node emitted out of order - early");
524}
525
Dan Gohman88c7af02009-04-13 21:06:25 +0000526/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
527/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000528/// register is constrained to be in a particular register class.
529///
530void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000531InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
532 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000533 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000534
Dan Gohmanf8c73942009-04-13 15:38:05 +0000535 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000536 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
537 const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000538 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000539 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
540 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000541
542 SDValue Op(Node, 0);
543 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000544 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000545 assert(isNew && "Node emitted out of order - early");
546}
547
Evan Chengba609c82010-05-04 00:22:40 +0000548/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
549///
550void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000551 DenseMap<SDValue, unsigned> &VRBaseMap,
552 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000553 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
554 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Evan Chengba609c82010-05-04 00:22:40 +0000555 unsigned NewVReg = MRI->createVirtualRegister(RC);
556 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
557 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
558 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000559 assert((NumOps & 1) == 1 &&
560 "REG_SEQUENCE must have an odd number of operands!");
Evan Chenge837dea2011-06-28 19:10:37 +0000561 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
Owen Anderson1300f302011-06-16 18:17:13 +0000562 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000563 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000564 if ((i & 1) == 0) {
Evan Chengba609c82010-05-04 00:22:40 +0000565 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
566 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
Evan Cheng60ffa942010-05-10 23:08:19 +0000567 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
568 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000569 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Bob Wilson495de3b2010-12-17 01:21:12 +0000570 if (SRC && SRC != RC) {
Evan Cheng27e48402010-05-18 20:03:28 +0000571 MRI->setRegClass(NewVReg, SRC);
Evan Cheng5012f9b2010-05-18 20:07:47 +0000572 RC = SRC;
573 }
Evan Chengba609c82010-05-04 00:22:40 +0000574 }
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000575 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
576 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000577 }
578
579 MBB->insert(InsertPos, MI);
580 SDValue Op(Node, 0);
581 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000582 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000583 assert(isNew && "Node emitted out of order - early");
584}
585
Evan Chengbfcb3052010-03-25 01:38:16 +0000586/// EmitDbgValue - Generate machine instruction for a dbg_value node.
587///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000588MachineInstr *
589InstrEmitter::EmitDbgValue(SDDbgValue *SD,
590 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000591 uint64_t Offset = SD->getOffset();
592 MDNode* MDPtr = SD->getMDPtr();
593 DebugLoc DL = SD->getDebugLoc();
594
Dale Johannesenf822e732010-04-25 21:33:54 +0000595 if (SD->getKind() == SDDbgValue::FRAMEIX) {
596 // Stack address; this needs to be lowered in target-dependent fashion.
597 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
598 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000599 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000600 }
601 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000602 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000603 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
604 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000605 SDNode *Node = SD->getSDNode();
606 SDValue Op = SDValue(Node, SD->getResNo());
607 // It's possible we replaced this SDNode with other(s) and therefore
608 // didn't generate code for it. It's better to catch these cases where
609 // they happen and transfer the debug info, but trying to guarantee that
610 // in all cases would be very fragile; this is a safeguard for any
611 // that were missed.
612 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
613 if (I==VRBaseMap.end())
614 MIB.addReg(0U); // undef
615 else
616 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000617 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000618 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000619 const Value *V = SD->getConst();
620 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000621 if (CI->getBitWidth() > 64)
622 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000623 else
624 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000625 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000626 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000627 } else {
628 // Could be an Undef. In any case insert an Undef so we can see what we
629 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000630 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000631 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000632 } else {
633 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000634 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000635 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000636
637 MIB.addImm(Offset).addMetadata(MDPtr);
638 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000639}
640
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000641/// EmitMachineNode - Generate machine code for a target-specific node and
642/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000643///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000644void InstrEmitter::
645EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000646 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000647 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000648
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000649 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000650 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000651 Opc == TargetOpcode::INSERT_SUBREG ||
652 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000653 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000654 return;
655 }
656
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000657 // Handle COPY_TO_REGCLASS specially.
658 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
659 EmitCopyToRegClassNode(Node, VRBaseMap);
660 return;
661 }
662
Evan Chengba609c82010-05-04 00:22:40 +0000663 // Handle REG_SEQUENCE specially.
664 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000665 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000666 return;
667 }
668
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000669 if (Opc == TargetOpcode::IMPLICIT_DEF)
670 // We want a unique VR for each IMPLICIT_DEF use.
671 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000672
Evan Chenge837dea2011-06-28 19:10:37 +0000673 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000674 unsigned NumResults = CountResults(Node);
675 unsigned NodeOperands = CountOperands(Node);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000676 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000677#ifndef NDEBUG
678 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000679 if (II.isVariadic())
680 assert(NumMIOperands >= II.getNumOperands() &&
681 "Too few operands for a variadic node!");
682 else
683 assert(NumMIOperands >= II.getNumOperands() &&
684 NumMIOperands <= II.getNumOperands()+II.getNumImplicitDefs() &&
685 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000686#endif
687
688 // Create the new machine instruction.
689 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000690
691 // The MachineInstr constructor adds implicit-def operands. Scan through
692 // these to determine which are dead.
693 if (MI->getNumOperands() != 0 &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000694 Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
Dan Gohmandb497122010-06-18 23:28:01 +0000695 // First, collect all used registers.
696 SmallVector<unsigned, 8> UsedRegs;
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000697 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser())
Dan Gohmandb497122010-06-18 23:28:01 +0000698 if (F->getOpcode() == ISD::CopyFromReg)
699 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
700 else {
701 // Collect declared implicit uses.
Evan Chenge837dea2011-06-28 19:10:37 +0000702 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
703 UsedRegs.append(MCID.getImplicitUses(),
704 MCID.getImplicitUses() + MCID.getNumImplicitUses());
Dan Gohmandb497122010-06-18 23:28:01 +0000705 // In addition to declared implicit uses, we must also check for
706 // direct RegisterSDNode operands.
707 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
708 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
709 unsigned Reg = R->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000710 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Dan Gohmandb497122010-06-18 23:28:01 +0000711 UsedRegs.push_back(Reg);
712 }
713 }
714 // Then mark unused registers as dead.
715 MI->setPhysRegsDeadExcept(UsedRegs, *TRI);
716 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000717
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000718 // Add result register values for things that are defined by this
719 // instruction.
720 if (NumResults)
721 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000722
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000723 // Emit all of the actual operands of this instruction, adding them to the
724 // instruction as appropriate.
725 bool HasOptPRefs = II.getNumDefs() > NumResults;
726 assert((!HasOptPRefs || !HasPhysRegOuts) &&
727 "Unable to cope with optional defs and phys regs defs!");
728 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
729 for (unsigned i = NumSkip; i != NodeOperands; ++i)
730 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000731 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000732
733 // Transfer all of the memory reference descriptions of this instruction.
734 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
735 cast<MachineSDNode>(Node)->memoperands_end());
736
Dan Gohman14152b42010-07-06 20:24:04 +0000737 // Insert the instruction into position in the block. This needs to
738 // happen before any custom inserter hook is called so that the
739 // hook knows where in the block to insert the replacement code.
740 MBB->insert(InsertPos, MI);
741
Eric Christopherbece0482010-12-08 22:21:42 +0000742 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000743 if (HasPhysRegOuts) {
744 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
745 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
746 if (Node->hasAnyUseOfValue(i))
747 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
748 // If there are no uses, mark the register as dead now, so that
749 // MachineLICM/Sink can see that it's dead. Don't do this if the
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000750 // node has a Glue value, for the benefit of targets still using
751 // Glue for values in physregs.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000752 else if (Node->getValueType(Node->getNumValues()-1) != MVT::Glue)
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000753 MI->addRegisterDead(Reg, TRI);
754 }
755 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000756
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000757 // If the instruction has implicit defs and the node doesn't, mark the
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000758 // implicit def as dead. If the node has any glue outputs, we don't do this
759 // because we don't know what implicit defs are being used by glued nodes.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000760 if (Node->getValueType(Node->getNumValues()-1) != MVT::Glue)
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000761 if (const unsigned *IDList = II.getImplicitDefs()) {
762 for (unsigned i = NumResults, e = II.getNumDefs()+II.getNumImplicitDefs();
763 i != e; ++i)
764 MI->addRegisterDead(IDList[i-II.getNumDefs()], TRI);
765 }
Evan Cheng37fefc22011-08-30 19:09:48 +0000766
767 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000768#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000769 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000770#endif
Andrew Trick83a80312011-09-20 18:22:31 +0000771 TLI->AdjustInstrPostInstrSelection(MI, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000772}
773
774/// EmitSpecialNode - Generate machine code for a target-independent node and
775/// needed dependencies.
776void InstrEmitter::
777EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
778 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000779 switch (Node->getOpcode()) {
780 default:
781#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000782 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000783#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000784 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000785 break;
786 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000787 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000788 break;
Evan Cheng37b73872009-07-30 08:33:02 +0000789 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000790 case ISD::TokenFactor: // fall thru
791 break;
792 case ISD::CopyToReg: {
793 unsigned SrcReg;
794 SDValue SrcVal = Node->getOperand(2);
795 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
796 SrcReg = R->getReg();
797 else
798 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000799
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000800 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
801 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
802 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000803
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000804 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
805 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000806 break;
807 }
808 case ISD::CopyFromReg: {
809 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000810 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000811 break;
812 }
Chris Lattner7561d482010-03-14 02:33:54 +0000813 case ISD::EH_LABEL: {
814 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
815 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
816 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
817 break;
818 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000819
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000820 case ISD::INLINEASM: {
821 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000822 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000823 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000824
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000825 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000826 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000827 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000828
829 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000830 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
831 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000832 MI->addOperand(MachineOperand::CreateES(AsmStr));
Andrew Trick3af7a672011-09-20 03:06:13 +0000833
Evan Chengc36b7062011-01-07 23:50:32 +0000834 // Add the HasSideEffect and isAlignStack bits.
835 int64_t ExtraInfo =
836 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000837 getZExtValue();
Evan Chengc36b7062011-01-07 23:50:32 +0000838 MI->addOperand(MachineOperand::CreateImm(ExtraInfo));
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000839
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000840 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000841 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000842 unsigned Flags =
843 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000844 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000845
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000846 MI->addOperand(MachineOperand::CreateImm(Flags));
847 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000848
Chris Lattnerdecc2672010-04-07 05:20:54 +0000849 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000850 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000851 case InlineAsm::Kind_RegDef:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000852 for (; NumVals; --NumVals, ++i) {
853 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000854 // FIXME: Add dead flags for physical and virtual registers defined.
855 // For now, mark physical register defs as implicit to help fast
856 // regalloc. This makes inline asm look a lot like calls.
857 MI->addOperand(MachineOperand::CreateReg(Reg, true,
858 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000859 }
860 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000861 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000862 case InlineAsm::Kind_Clobber:
Dale Johannesen913d3df2008-09-12 17:49:03 +0000863 for (; NumVals; --NumVals, ++i) {
864 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000865 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true,
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000866 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg),
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000867 /*isKill=*/ false,
868 /*isDead=*/ false,
869 /*isUndef=*/false,
870 /*isEarlyClobber=*/ true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000871 }
872 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000873 case InlineAsm::Kind_RegUse: // Use of register.
874 case InlineAsm::Kind_Imm: // Immediate.
875 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000876 // The addressing mode has been selected, just add all of the
877 // operands to the machine instruction.
878 for (; NumVals; --NumVals, ++i)
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000879 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap,
880 /*IsDebug=*/false, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000881 break;
882 }
883 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000884
Chris Lattnercf9a4152010-04-07 05:38:05 +0000885 // Get the mdnode from the asm if it exists and add it to the instruction.
886 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
887 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000888 if (MD)
889 MI->addOperand(MachineOperand::CreateMetadata(MD));
Andrew Trick3af7a672011-09-20 03:06:13 +0000890
Dan Gohmanbcea8592009-10-10 01:32:21 +0000891 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000892 break;
893 }
894 }
895}
896
Dan Gohmanbcea8592009-10-10 01:32:21 +0000897/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
898/// at the given position in the given block.
899InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
900 MachineBasicBlock::iterator insertpos)
901 : MF(mbb->getParent()),
902 MRI(&MF->getRegInfo()),
903 TM(&MF->getTarget()),
904 TII(TM->getInstrInfo()),
905 TRI(TM->getRegisterInfo()),
906 TLI(TM->getTargetLowering()),
907 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000908}