blob: 3402b9fd07243a71059d5c5c854a5cf90e68625a [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
34/// operands first, then an optional chain, and optional flag operands (which do
35/// 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,
46/// followed by an optional chain operand, then an optional flag operand.
47/// 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;
Evan Chenge57187c2009-01-16 20:57:18 +000079 if (!IsClone && !IsCloned)
80 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
81 UI != E; ++UI) {
82 SDNode *User = *UI;
83 bool Match = true;
84 if (User->getOpcode() == ISD::CopyToReg &&
85 User->getOperand(2).getNode() == Node &&
86 User->getOperand(2).getResNo() == ResNo) {
87 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
88 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
89 VRBase = DestReg;
90 Match = false;
91 } else if (DestReg != SrcReg)
92 Match = false;
93 } else {
94 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
95 SDValue Op = User->getOperand(i);
96 if (Op.getNode() != Node || Op.getResNo() != ResNo)
97 continue;
Owen Andersone50ed302009-08-10 22:56:29 +000098 EVT VT = Node->getValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000099 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000100 continue;
101 Match = false;
102 if (User->isMachineOpcode()) {
103 const TargetInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000104 const TargetRegisterClass *RC = 0;
105 if (i+II.getNumDefs() < II.getNumOperands())
106 RC = II.OpInfo[i+II.getNumDefs()].getRegClass(TRI);
Evan Chenge57187c2009-01-16 20:57:18 +0000107 if (!UseRC)
108 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000109 else if (RC) {
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000110 const TargetRegisterClass *ComRC = getCommonSubClass(UseRC, RC);
111 // If multiple uses expect disjoint register classes, we emit
112 // copies in AddRegisterOperand.
113 if (ComRC)
114 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000115 }
Evan Chenge57187c2009-01-16 20:57:18 +0000116 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000117 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000118 }
Evan Chenge57187c2009-01-16 20:57:18 +0000119 MatchReg &= Match;
120 if (VRBase)
121 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000122 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000123
Owen Andersone50ed302009-08-10 22:56:29 +0000124 EVT VT = Node->getValueType(ResNo);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000125 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000126 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000127
128 // Figure out the register class to create for the destreg.
129 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000130 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000131 } else if (UseRC) {
132 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
133 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000134 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000135 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000136 }
137
138 // If all uses are reading from the src physical register and copying the
139 // register is either impossible or very expensive, then don't create a copy.
140 if (MatchReg && SrcRC->getCopyCost() < 0) {
141 VRBase = SrcReg;
142 } else {
143 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000144 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000145 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
146 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000147 }
148
149 SDValue Op(Node, ResNo);
150 if (IsClone)
151 VRBaseMap.erase(Op);
152 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000153 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000154 assert(isNew && "Node emitted out of order - early");
155}
156
157/// getDstOfCopyToRegUse - If the only use of the specified result number of
158/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000159unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
160 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000161 if (!Node->hasOneUse())
162 return 0;
163
164 SDNode *User = *Node->use_begin();
165 if (User->getOpcode() == ISD::CopyToReg &&
166 User->getOperand(2).getNode() == Node &&
167 User->getOperand(2).getResNo() == ResNo) {
168 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
169 if (TargetRegisterInfo::isVirtualRegister(Reg))
170 return Reg;
171 }
172 return 0;
173}
174
Dan Gohmanbcea8592009-10-10 01:32:21 +0000175void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge57187c2009-01-16 20:57:18 +0000176 const TargetInstrDesc &II,
177 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000178 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000179 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000180 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
181
182 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
183 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000184 // is a vreg in the same register class, use the CopyToReg'd destination
185 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000186 unsigned VRBase = 0;
Chris Lattner2a386882009-07-29 21:36:49 +0000187 const TargetRegisterClass *RC = II.OpInfo[i].getRegClass(TRI);
Evan Cheng8955e932009-07-11 01:06:50 +0000188 if (II.OpInfo[i].isOptionalDef()) {
189 // Optional def must be a physical register.
190 unsigned NumResults = CountResults(Node);
191 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
192 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
193 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
194 }
Evan Chenge57187c2009-01-16 20:57:18 +0000195
Evan Cheng8955e932009-07-11 01:06:50 +0000196 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000197 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
198 UI != E; ++UI) {
199 SDNode *User = *UI;
200 if (User->getOpcode() == ISD::CopyToReg &&
201 User->getOperand(2).getNode() == Node &&
202 User->getOperand(2).getResNo() == i) {
203 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
204 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000205 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000206 if (RegRC == RC) {
207 VRBase = Reg;
208 MI->addOperand(MachineOperand::CreateReg(Reg, true));
209 break;
210 }
Evan Chenge57187c2009-01-16 20:57:18 +0000211 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000212 }
213 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000214
215 // Create the result registers for this node and add the result regs to
216 // the machine instruction.
217 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000218 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000219 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000220 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
221 }
222
223 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000224 if (IsClone)
225 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000226 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000227 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000228 assert(isNew && "Node emitted out of order - early");
229 }
230}
231
232/// getVR - Return the virtual register corresponding to the specified result
233/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000234unsigned InstrEmitter::getVR(SDValue Op,
235 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000236 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000237 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000238 // Add an IMPLICIT_DEF instruction before every use.
239 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
240 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
241 // does not include operand register class info.
242 if (!VReg) {
243 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000244 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000245 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000246 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000247 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000248 return VReg;
249 }
250
251 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
252 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
253 return I->second;
254}
255
Bill Wendlingc0407192010-08-30 04:36:50 +0000256
Dan Gohmanf8c73942009-04-13 15:38:05 +0000257/// AddRegisterOperand - Add the specified register as an operand to the
258/// specified machine instr. Insert register copies if the register is
259/// not in the required register class.
260void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000261InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
262 unsigned IIOpNum,
263 const TargetInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000264 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000265 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000267 Op.getValueType() != MVT::Glue &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000268 "Chain and flag operands should occur at end of operand list!");
269 // Get/emit the operand.
270 unsigned VReg = getVR(Op, VRBaseMap);
271 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
272
273 const TargetInstrDesc &TID = MI->getDesc();
274 bool isOptDef = IIOpNum < TID.getNumOperands() &&
275 TID.OpInfo[IIOpNum].isOptionalDef();
276
277 // If the instruction requires a register in a different class, create
278 // a new virtual register and copy the value into it.
279 if (II) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000280 const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg);
Chris Lattner2a386882009-07-29 21:36:49 +0000281 const TargetRegisterClass *DstRC = 0;
282 if (IIOpNum < II->getNumOperands())
283 DstRC = II->OpInfo[IIOpNum].getRegClass(TRI);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000284 assert((DstRC || (TID.isVariadic() && IIOpNum >= TID.getNumOperands())) &&
285 "Don't have operand info for this instruction!");
286 if (DstRC && SrcRC != DstRC && !SrcRC->hasSuperClass(DstRC)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000287 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000288 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
289 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000290 VReg = NewVReg;
291 }
292 }
293
Dan Gohman47bd03b2010-04-30 00:08:21 +0000294 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000295 // conservative approximation. InstrEmitter does trivial coalescing
296 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000297 // Avoid kill flags on Schedule cloned nodes, since there will be
298 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000299 // Tied operands are never killed, so we need to check that. And that
300 // means we need to determine the index of the operand.
301 bool isKill = Op.hasOneUse() &&
302 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000303 !IsDebug &&
304 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000305 if (isKill) {
306 unsigned Idx = MI->getNumOperands();
307 while (Idx > 0 &&
308 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
309 --Idx;
310 bool isTied = MI->getDesc().getOperandConstraint(Idx, TOI::TIED_TO) != -1;
311 if (isTied)
312 isKill = false;
313 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000314
Evan Chengbfcb3052010-03-25 01:38:16 +0000315 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000316 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000317 false/*isDead*/, false/*isUndef*/,
318 false/*isEarlyClobber*/,
319 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000320}
321
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000322/// AddOperand - Add the specified operand to the specified machine instr. II
323/// specifies the instruction information for the node, and IIOpNum is the
324/// operand number (in the II) that we are adding. IIOpNum and II are used for
325/// assertions only.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000326void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
327 unsigned IIOpNum,
328 const TargetInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000329 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000330 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000331 if (Op.isMachineOpcode()) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000332 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
333 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000334 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000335 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000336 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000337 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000338 MI->addOperand(MachineOperand::CreateFPImm(CFP));
339 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Bill Wendlingc0407192010-08-30 04:36:50 +0000340 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000341 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000342 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
343 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000344 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
345 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000346 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
347 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
348 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000349 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
350 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000351 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
352 int Offset = CP->getOffset();
353 unsigned Align = CP->getAlignment();
354 const Type *Type = CP->getType();
355 // MachineConstantPool wants an explicit alignment.
356 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000357 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000358 if (Align == 0) {
359 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000360 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000361 }
362 }
363
364 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000365 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000366 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000367 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000368 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000369 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000370 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
371 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000372 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000373 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000374 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000375 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000376 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
377 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000378 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000379 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000380 Op.getValueType() != MVT::Glue &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000381 "Chain and flag operands should occur at end of operand list!");
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000382 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
383 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000384 }
385}
386
Dan Gohmanf8c73942009-04-13 15:38:05 +0000387/// getSuperRegisterRegClass - Returns the register class of a superreg A whose
388/// "SubIdx"'th sub-register class is the specified register class and whose
389/// type matches the specified type.
390static const TargetRegisterClass*
391getSuperRegisterRegClass(const TargetRegisterClass *TRC,
Owen Andersone50ed302009-08-10 22:56:29 +0000392 unsigned SubIdx, EVT VT) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000393 // Pick the register class of the superegister for this type
394 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
395 E = TRC->superregclasses_end(); I != E; ++I)
Jakob Stoklund Olesenfa4677b2009-04-28 16:34:09 +0000396 if ((*I)->hasType(VT) && (*I)->getSubRegisterRegClass(SubIdx) == TRC)
Dan Gohmanf8c73942009-04-13 15:38:05 +0000397 return *I;
398 assert(false && "Couldn't find the register class");
399 return 0;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000400}
401
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000402/// EmitSubregNode - Generate machine code for subreg nodes.
403///
Dan Gohmanbcea8592009-10-10 01:32:21 +0000404void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000405 DenseMap<SDValue, unsigned> &VRBaseMap,
406 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000407 unsigned VRBase = 0;
408 unsigned Opc = Node->getMachineOpcode();
409
410 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
411 // the CopyToReg'd destination register instead of creating a new vreg.
412 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
413 UI != E; ++UI) {
414 SDNode *User = *UI;
415 if (User->getOpcode() == ISD::CopyToReg &&
416 User->getOperand(2).getNode() == Node) {
417 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
418 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
419 VRBase = DestReg;
420 break;
421 }
422 }
423 }
424
Chris Lattner518bb532010-02-09 19:54:29 +0000425 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000426 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000427 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000428
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000429 // Figure out the register class to create for the destreg.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000430 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000431 const TargetRegisterClass *TRC = MRI->getRegClass(VReg);
Jakob Stoklund Olesenfa4677b2009-04-28 16:34:09 +0000432 const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx);
433 assert(SRC && "Invalid subregister index in EXTRACT_SUBREG");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000434
Dan Gohman5ec3b422009-04-14 22:17:14 +0000435 // Figure out the register class to create for the destreg.
436 // Note that if we're going to directly use an existing register,
437 // it must be precisely the required class, and not a subclass
438 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000439 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000440 // Create the reg
441 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000442 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000443 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000444
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000445 // Create the extract_subreg machine instruction.
446 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
447 TII->get(TargetOpcode::COPY), VRBase);
448
449 // Add source, and subreg index
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000450 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap, /*IsDebug=*/false,
451 IsClone, IsCloned);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000452 assert(TargetRegisterInfo::isVirtualRegister(MI->getOperand(1).getReg()) &&
453 "Cannot yet extract from physregs");
454 MI->getOperand(1).setSubReg(SubIdx);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000455 MBB->insert(InsertPos, MI);
Chris Lattner518bb532010-02-09 19:54:29 +0000456 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
457 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000458 SDValue N0 = Node->getOperand(0);
459 SDValue N1 = Node->getOperand(1);
460 SDValue N2 = Node->getOperand(2);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000461 unsigned SubReg = getVR(N1, VRBaseMap);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000462 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmanbcea8592009-10-10 01:32:21 +0000463 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000464 const TargetRegisterClass *SRC =
Evan Chengba609c82010-05-04 00:22:40 +0000465 getSuperRegisterRegClass(TRC, SubIdx, Node->getValueType(0));
Dan Gohman5ec3b422009-04-14 22:17:14 +0000466
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000467 // Figure out the register class to create for the destreg.
Dan Gohman5ec3b422009-04-14 22:17:14 +0000468 // Note that if we're going to directly use an existing register,
469 // it must be precisely the required class, and not a subclass
470 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000471 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman5ec3b422009-04-14 22:17:14 +0000472 // Create the reg
473 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000474 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000475 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000476
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000477 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000478 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000479 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
480
481 // If creating a subreg_to_reg, then the first input operand
482 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000483 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000484 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000485 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000486 } else
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000487 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
488 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000489 // Add the subregster being inserted
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000490 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
491 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000492 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000493 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000494 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000495 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000496
497 SDValue Op(Node, 0);
498 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000499 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000500 assert(isNew && "Node emitted out of order - early");
501}
502
Dan Gohman88c7af02009-04-13 21:06:25 +0000503/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
504/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000505/// register is constrained to be in a particular register class.
506///
507void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000508InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
509 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000510 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000511
Dan Gohmanf8c73942009-04-13 15:38:05 +0000512 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000513 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
514 const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000515 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000516 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
517 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000518
519 SDValue Op(Node, 0);
520 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000521 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000522 assert(isNew && "Node emitted out of order - early");
523}
524
Evan Chengba609c82010-05-04 00:22:40 +0000525/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
526///
527void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000528 DenseMap<SDValue, unsigned> &VRBaseMap,
529 bool IsClone, bool IsCloned) {
Evan Chengba609c82010-05-04 00:22:40 +0000530 const TargetRegisterClass *RC = TLI->getRegClassFor(Node->getValueType(0));
531 unsigned NewVReg = MRI->createVirtualRegister(RC);
532 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
533 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
534 unsigned NumOps = Node->getNumOperands();
535 assert((NumOps & 1) == 0 &&
536 "REG_SEQUENCE must have an even number of operands!");
537 const TargetInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
538 for (unsigned i = 0; i != NumOps; ++i) {
539 SDValue Op = Node->getOperand(i);
Evan Chengba609c82010-05-04 00:22:40 +0000540 if (i & 1) {
541 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
542 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
Evan Cheng60ffa942010-05-10 23:08:19 +0000543 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
544 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000545 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Bob Wilson495de3b2010-12-17 01:21:12 +0000546 if (SRC && SRC != RC) {
Evan Cheng27e48402010-05-18 20:03:28 +0000547 MRI->setRegClass(NewVReg, SRC);
Evan Cheng5012f9b2010-05-18 20:07:47 +0000548 RC = SRC;
549 }
Evan Chengba609c82010-05-04 00:22:40 +0000550 }
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000551 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
552 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000553 }
554
555 MBB->insert(InsertPos, MI);
556 SDValue Op(Node, 0);
557 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000558 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000559 assert(isNew && "Node emitted out of order - early");
560}
561
Evan Chengbfcb3052010-03-25 01:38:16 +0000562/// EmitDbgValue - Generate machine instruction for a dbg_value node.
563///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000564MachineInstr *
565InstrEmitter::EmitDbgValue(SDDbgValue *SD,
566 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000567 uint64_t Offset = SD->getOffset();
568 MDNode* MDPtr = SD->getMDPtr();
569 DebugLoc DL = SD->getDebugLoc();
570
Dale Johannesenf822e732010-04-25 21:33:54 +0000571 if (SD->getKind() == SDDbgValue::FRAMEIX) {
572 // Stack address; this needs to be lowered in target-dependent fashion.
573 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
574 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000575 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000576 }
577 // Otherwise, we're going to create an instruction here.
Dale Johannesen06a26632010-03-06 00:03:23 +0000578 const TargetInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000579 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
580 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000581 SDNode *Node = SD->getSDNode();
582 SDValue Op = SDValue(Node, SD->getResNo());
583 // It's possible we replaced this SDNode with other(s) and therefore
584 // didn't generate code for it. It's better to catch these cases where
585 // they happen and transfer the debug info, but trying to guarantee that
586 // in all cases would be very fragile; this is a safeguard for any
587 // that were missed.
588 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
589 if (I==VRBaseMap.end())
590 MIB.addReg(0U); // undef
591 else
592 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000593 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000594 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000595 const Value *V = SD->getConst();
596 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patelcc87bfb2010-07-07 18:18:18 +0000597 // FIXME: SDDbgValue constants aren't updated with legalization, so it's
598 // possible to have i128 constants in them at this point. Dwarf writer
599 // does not handle i128 constants at the moment so, as a crude workaround,
600 // just drop the debug info if this happens.
Dan Gohman4ce86f42010-05-07 22:19:08 +0000601 if (!CI->getValue().isSignedIntN(64))
602 MIB.addReg(0U);
603 else
604 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000605 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000606 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000607 } else {
608 // Could be an Undef. In any case insert an Undef so we can see what we
609 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000610 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000611 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000612 } else {
613 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000614 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000615 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000616
617 MIB.addImm(Offset).addMetadata(MDPtr);
618 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000619}
620
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000621/// EmitMachineNode - Generate machine code for a target-specific node and
622/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000623///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000624void InstrEmitter::
625EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000626 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000627 unsigned Opc = Node->getMachineOpcode();
628
629 // Handle subreg insert/extract specially
630 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
631 Opc == TargetOpcode::INSERT_SUBREG ||
632 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000633 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000634 return;
635 }
636
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000637 // Handle COPY_TO_REGCLASS specially.
638 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
639 EmitCopyToRegClassNode(Node, VRBaseMap);
640 return;
641 }
642
Evan Chengba609c82010-05-04 00:22:40 +0000643 // Handle REG_SEQUENCE specially.
644 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000645 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000646 return;
647 }
648
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000649 if (Opc == TargetOpcode::IMPLICIT_DEF)
650 // We want a unique VR for each IMPLICIT_DEF use.
651 return;
652
653 const TargetInstrDesc &II = TII->get(Opc);
654 unsigned NumResults = CountResults(Node);
655 unsigned NodeOperands = CountOperands(Node);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000656 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000657#ifndef NDEBUG
658 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000659 if (II.isVariadic())
660 assert(NumMIOperands >= II.getNumOperands() &&
661 "Too few operands for a variadic node!");
662 else
663 assert(NumMIOperands >= II.getNumOperands() &&
664 NumMIOperands <= II.getNumOperands()+II.getNumImplicitDefs() &&
665 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000666#endif
667
668 // Create the new machine instruction.
669 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000670
671 // The MachineInstr constructor adds implicit-def operands. Scan through
672 // these to determine which are dead.
673 if (MI->getNumOperands() != 0 &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000674 Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
Dan Gohmandb497122010-06-18 23:28:01 +0000675 // First, collect all used registers.
676 SmallVector<unsigned, 8> UsedRegs;
677 for (SDNode *F = Node->getFlaggedUser(); F; F = F->getFlaggedUser())
678 if (F->getOpcode() == ISD::CopyFromReg)
679 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
680 else {
681 // Collect declared implicit uses.
682 const TargetInstrDesc &TID = TII->get(F->getMachineOpcode());
683 UsedRegs.append(TID.getImplicitUses(),
684 TID.getImplicitUses() + TID.getNumImplicitUses());
685 // In addition to declared implicit uses, we must also check for
686 // direct RegisterSDNode operands.
687 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
688 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
689 unsigned Reg = R->getReg();
690 if (Reg != 0 && TargetRegisterInfo::isPhysicalRegister(Reg))
691 UsedRegs.push_back(Reg);
692 }
693 }
694 // Then mark unused registers as dead.
695 MI->setPhysRegsDeadExcept(UsedRegs, *TRI);
696 }
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000697
698 // Add result register values for things that are defined by this
699 // instruction.
700 if (NumResults)
701 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
702
703 // Emit all of the actual operands of this instruction, adding them to the
704 // instruction as appropriate.
705 bool HasOptPRefs = II.getNumDefs() > NumResults;
706 assert((!HasOptPRefs || !HasPhysRegOuts) &&
707 "Unable to cope with optional defs and phys regs defs!");
708 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
709 for (unsigned i = NumSkip; i != NodeOperands; ++i)
710 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000711 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000712
713 // Transfer all of the memory reference descriptions of this instruction.
714 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
715 cast<MachineSDNode>(Node)->memoperands_end());
716
Dan Gohman14152b42010-07-06 20:24:04 +0000717 // Insert the instruction into position in the block. This needs to
718 // happen before any custom inserter hook is called so that the
719 // hook knows where in the block to insert the replacement code.
720 MBB->insert(InsertPos, MI);
721
Eric Christopherbece0482010-12-08 22:21:42 +0000722 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000723 if (HasPhysRegOuts) {
724 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
725 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
726 if (Node->hasAnyUseOfValue(i))
727 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
728 // If there are no uses, mark the register as dead now, so that
729 // MachineLICM/Sink can see that it's dead. Don't do this if the
730 // node has a Flag value, for the benefit of targets still using
731 // Flag for values in physregs.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000732 else if (Node->getValueType(Node->getNumValues()-1) != MVT::Glue)
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000733 MI->addRegisterDead(Reg, TRI);
734 }
735 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000736
737 // If the instruction has implicit defs and the node doesn't, mark the
738 // implicit def as dead. If the node has any flag outputs, we don't do this
739 // because we don't know what implicit defs are being used by flagged nodes.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000740 if (Node->getValueType(Node->getNumValues()-1) != MVT::Glue)
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000741 if (const unsigned *IDList = II.getImplicitDefs()) {
742 for (unsigned i = NumResults, e = II.getNumDefs()+II.getNumImplicitDefs();
743 i != e; ++i)
744 MI->addRegisterDead(IDList[i-II.getNumDefs()], TRI);
745 }
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000746}
747
748/// EmitSpecialNode - Generate machine code for a target-independent node and
749/// needed dependencies.
750void InstrEmitter::
751EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
752 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000753 switch (Node->getOpcode()) {
754 default:
755#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000756 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000757#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000758 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000759 break;
760 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000761 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000762 break;
Evan Cheng37b73872009-07-30 08:33:02 +0000763 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000764 case ISD::TokenFactor: // fall thru
765 break;
766 case ISD::CopyToReg: {
767 unsigned SrcReg;
768 SDValue SrcVal = Node->getOperand(2);
769 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
770 SrcReg = R->getReg();
771 else
772 SrcReg = getVR(SrcVal, VRBaseMap);
773
774 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
775 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
776 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000777
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000778 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
779 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000780 break;
781 }
782 case ISD::CopyFromReg: {
783 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000784 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000785 break;
786 }
Chris Lattner7561d482010-03-14 02:33:54 +0000787 case ISD::EH_LABEL: {
788 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
789 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
790 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
791 break;
792 }
793
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000794 case ISD::INLINEASM: {
795 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000796 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000797 --NumOps; // Ignore the flag operand.
798
799 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000800 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000801 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000802
803 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000804 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
805 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000806 MI->addOperand(MachineOperand::CreateES(AsmStr));
807
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000808 // Add the isAlignStack bit.
809 int64_t isAlignStack =
810 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_IsAlignStack))->
811 getZExtValue();
812 MI->addOperand(MachineOperand::CreateImm(isAlignStack));
813
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000814 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000815 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000816 unsigned Flags =
817 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000818 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000819
820 MI->addOperand(MachineOperand::CreateImm(Flags));
821 ++i; // Skip the ID value.
822
Chris Lattnerdecc2672010-04-07 05:20:54 +0000823 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000824 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000825 case InlineAsm::Kind_RegDef:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000826 for (; NumVals; --NumVals, ++i) {
827 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000828 // FIXME: Add dead flags for physical and virtual registers defined.
829 // For now, mark physical register defs as implicit to help fast
830 // regalloc. This makes inline asm look a lot like calls.
831 MI->addOperand(MachineOperand::CreateReg(Reg, true,
832 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000833 }
834 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000835 case InlineAsm::Kind_RegDefEarlyClobber:
Dale Johannesen913d3df2008-09-12 17:49:03 +0000836 for (; NumVals; --NumVals, ++i) {
837 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000838 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true,
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000839 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg),
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000840 /*isKill=*/ false,
841 /*isDead=*/ false,
842 /*isUndef=*/false,
843 /*isEarlyClobber=*/ true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000844 }
845 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000846 case InlineAsm::Kind_RegUse: // Use of register.
847 case InlineAsm::Kind_Imm: // Immediate.
848 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000849 // The addressing mode has been selected, just add all of the
850 // operands to the machine instruction.
851 for (; NumVals; --NumVals, ++i)
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000852 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap,
853 /*IsDebug=*/false, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000854 break;
855 }
856 }
Chris Lattnercf9a4152010-04-07 05:38:05 +0000857
858 // Get the mdnode from the asm if it exists and add it to the instruction.
859 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
860 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000861 if (MD)
862 MI->addOperand(MachineOperand::CreateMetadata(MD));
Chris Lattnercf9a4152010-04-07 05:38:05 +0000863
Dan Gohmanbcea8592009-10-10 01:32:21 +0000864 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000865 break;
866 }
867 }
868}
869
Dan Gohmanbcea8592009-10-10 01:32:21 +0000870/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
871/// at the given position in the given block.
872InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
873 MachineBasicBlock::iterator insertpos)
874 : MF(mbb->getParent()),
875 MRI(&MF->getRegInfo()),
876 TM(&MF->getTarget()),
877 TII(TM->getInstrInfo()),
878 TRI(TM->getRegisterInfo()),
879 TLI(TM->getTargetLowering()),
880 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000881}