blob: 929287a7b2b9058e89bcaa57525773b874e46f47 [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();
38 while (N && Node->getValueType(N - 1) == MVT::Flag)
39 --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();
51 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
52 --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;
70 isNew = isNew; // Silence compiler warning.
71 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());
Owen Anderson825b72b2009-08-11 20:47:22 +000099 if (VT == MVT::Other || VT == MVT::Flag)
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;
Evan Cheng1cd33272008-09-16 23:12:11 +0000126 SrcRC = TRI->getPhysicalRegisterRegClass(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);
145 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, VRBase, SrcReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000146 DstRC, SrcRC, Node->getDebugLoc());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000147
148 assert(Emitted && "Unable to issue a copy instruction!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000149 (void) Emitted;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000150 }
151
152 SDValue Op(Node, ResNo);
153 if (IsClone)
154 VRBaseMap.erase(Op);
155 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
156 isNew = isNew; // Silence compiler warning.
157 assert(isNew && "Node emitted out of order - early");
158}
159
160/// getDstOfCopyToRegUse - If the only use of the specified result number of
161/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000162unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
163 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000164 if (!Node->hasOneUse())
165 return 0;
166
167 SDNode *User = *Node->use_begin();
168 if (User->getOpcode() == ISD::CopyToReg &&
169 User->getOperand(2).getNode() == Node &&
170 User->getOperand(2).getResNo() == ResNo) {
171 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
172 if (TargetRegisterInfo::isVirtualRegister(Reg))
173 return Reg;
174 }
175 return 0;
176}
177
Dan Gohmanbcea8592009-10-10 01:32:21 +0000178void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge57187c2009-01-16 20:57:18 +0000179 const TargetInstrDesc &II,
180 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000181 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000182 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000183 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
184
185 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
186 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000187 // is a vreg in the same register class, use the CopyToReg'd destination
188 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000189 unsigned VRBase = 0;
Chris Lattner2a386882009-07-29 21:36:49 +0000190 const TargetRegisterClass *RC = II.OpInfo[i].getRegClass(TRI);
Evan Cheng8955e932009-07-11 01:06:50 +0000191 if (II.OpInfo[i].isOptionalDef()) {
192 // Optional def must be a physical register.
193 unsigned NumResults = CountResults(Node);
194 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
195 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
196 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
197 }
Evan Chenge57187c2009-01-16 20:57:18 +0000198
Evan Cheng8955e932009-07-11 01:06:50 +0000199 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000200 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
201 UI != E; ++UI) {
202 SDNode *User = *UI;
203 if (User->getOpcode() == ISD::CopyToReg &&
204 User->getOperand(2).getNode() == Node &&
205 User->getOperand(2).getResNo() == i) {
206 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
207 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000208 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000209 if (RegRC == RC) {
210 VRBase = Reg;
211 MI->addOperand(MachineOperand::CreateReg(Reg, true));
212 break;
213 }
Evan Chenge57187c2009-01-16 20:57:18 +0000214 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000215 }
216 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000217
218 // Create the result registers for this node and add the result regs to
219 // the machine instruction.
220 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000221 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000222 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000223 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
224 }
225
226 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000227 if (IsClone)
228 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000229 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
230 isNew = isNew; // Silence compiler warning.
231 assert(isNew && "Node emitted out of order - early");
232 }
233}
234
235/// getVR - Return the virtual register corresponding to the specified result
236/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000237unsigned InstrEmitter::getVR(SDValue Op,
238 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000239 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000240 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000241 // Add an IMPLICIT_DEF instruction before every use.
242 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
243 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
244 // does not include operand register class info.
245 if (!VReg) {
246 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000247 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000248 }
Dan Gohmanbcea8592009-10-10 01:32:21 +0000249 BuildMI(MBB, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000250 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000251 return VReg;
252 }
253
254 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
255 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
256 return I->second;
257}
258
259
Dan Gohmanf8c73942009-04-13 15:38:05 +0000260/// AddRegisterOperand - Add the specified register as an operand to the
261/// specified machine instr. Insert register copies if the register is
262/// not in the required register class.
263void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000264InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
265 unsigned IIOpNum,
266 const TargetInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000267 DenseMap<SDValue, unsigned> &VRBaseMap,
268 bool IsDebug) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000269 assert(Op.getValueType() != MVT::Other &&
270 Op.getValueType() != MVT::Flag &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000271 "Chain and flag operands should occur at end of operand list!");
272 // Get/emit the operand.
273 unsigned VReg = getVR(Op, VRBaseMap);
274 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
275
276 const TargetInstrDesc &TID = MI->getDesc();
277 bool isOptDef = IIOpNum < TID.getNumOperands() &&
278 TID.OpInfo[IIOpNum].isOptionalDef();
279
280 // If the instruction requires a register in a different class, create
281 // a new virtual register and copy the value into it.
282 if (II) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000283 const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg);
Chris Lattner2a386882009-07-29 21:36:49 +0000284 const TargetRegisterClass *DstRC = 0;
285 if (IIOpNum < II->getNumOperands())
286 DstRC = II->OpInfo[IIOpNum].getRegClass(TRI);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000287 assert((DstRC || (TID.isVariadic() && IIOpNum >= TID.getNumOperands())) &&
288 "Don't have operand info for this instruction!");
289 if (DstRC && SrcRC != DstRC && !SrcRC->hasSuperClass(DstRC)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000290 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
291 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000292 DstRC, SrcRC, Op.getNode()->getDebugLoc());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000293 assert(Emitted && "Unable to issue a copy instruction!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000294 (void) Emitted;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000295 VReg = NewVReg;
296 }
297 }
298
Dan Gohman47bd03b2010-04-30 00:08:21 +0000299 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000300 // conservative approximation. InstrEmitter does trivial coalescing
301 // with CopyFromReg nodes, so don't emit kill flags for them.
302 // Tied operands are never killed, so we need to check that. And that
303 // means we need to determine the index of the operand.
304 bool isKill = Op.hasOneUse() &&
305 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
306 !IsDebug;
307 if (isKill) {
308 unsigned Idx = MI->getNumOperands();
309 while (Idx > 0 &&
310 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
311 --Idx;
312 bool isTied = MI->getDesc().getOperandConstraint(Idx, TOI::TIED_TO) != -1;
313 if (isTied)
314 isKill = false;
315 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000316
Evan Chengbfcb3052010-03-25 01:38:16 +0000317 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000318 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000319 false/*isDead*/, false/*isUndef*/,
320 false/*isEarlyClobber*/,
321 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000322}
323
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000324/// AddOperand - Add the specified operand to the specified machine instr. II
325/// specifies the instruction information for the node, and IIOpNum is the
326/// operand number (in the II) that we are adding. IIOpNum and II are used for
327/// assertions only.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000328void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
329 unsigned IIOpNum,
330 const TargetInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000331 DenseMap<SDValue, unsigned> &VRBaseMap,
332 bool IsDebug) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000333 if (Op.isMachineOpcode()) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000334 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, IsDebug);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000335 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000336 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000337 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000338 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000339 MI->addOperand(MachineOperand::CreateFPImm(CFP));
340 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Dale Johannesen86b49f82008-09-24 01:07:17 +0000341 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000342 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000343 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
344 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000345 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
346 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000347 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
348 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
349 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000350 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
351 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000352 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
353 int Offset = CP->getOffset();
354 unsigned Align = CP->getAlignment();
355 const Type *Type = CP->getType();
356 // MachineConstantPool wants an explicit alignment.
357 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000358 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000359 if (Align == 0) {
360 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000361 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000362 }
363 }
364
365 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000366 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000367 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000368 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000369 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000370 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000371 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
372 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000373 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000374 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000375 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000376 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000377 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
378 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000379 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000380 assert(Op.getValueType() != MVT::Other &&
381 Op.getValueType() != MVT::Flag &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000382 "Chain and flag operands should occur at end of operand list!");
Evan Chengbfcb3052010-03-25 01:38:16 +0000383 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, IsDebug);
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,
405 DenseMap<SDValue, unsigned> &VRBaseMap){
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000406 unsigned VRBase = 0;
407 unsigned Opc = Node->getMachineOpcode();
408
409 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
410 // the CopyToReg'd destination register instead of creating a new vreg.
411 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
412 UI != E; ++UI) {
413 SDNode *User = *UI;
414 if (User->getOpcode() == ISD::CopyToReg &&
415 User->getOperand(2).getNode() == Node) {
416 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
417 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
418 VRBase = DestReg;
419 break;
420 }
421 }
422 }
423
Chris Lattner518bb532010-02-09 19:54:29 +0000424 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000425 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000426
427 // Create the extract_subreg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000428 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000429 TII->get(TargetOpcode::EXTRACT_SUBREG));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000430
431 // Figure out the register class to create for the destreg.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000432 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000433 const TargetRegisterClass *TRC = MRI->getRegClass(VReg);
Jakob Stoklund Olesenfa4677b2009-04-28 16:34:09 +0000434 const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx);
435 assert(SRC && "Invalid subregister index in EXTRACT_SUBREG");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000436
Dan Gohman5ec3b422009-04-14 22:17:14 +0000437 // Figure out the register class to create for the destreg.
438 // Note that if we're going to directly use an existing register,
439 // it must be precisely the required class, and not a subclass
440 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000441 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000442 // Create the reg
443 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000444 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000445 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000446
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000447 // Add def, source, and subreg index
448 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
449 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
450 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000451 MBB->insert(InsertPos, MI);
Chris Lattner518bb532010-02-09 19:54:29 +0000452 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
453 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000454 SDValue N0 = Node->getOperand(0);
455 SDValue N1 = Node->getOperand(1);
456 SDValue N2 = Node->getOperand(2);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000457 unsigned SubReg = getVR(N1, VRBaseMap);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000458 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmanbcea8592009-10-10 01:32:21 +0000459 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000460 const TargetRegisterClass *SRC =
Evan Chengba609c82010-05-04 00:22:40 +0000461 getSuperRegisterRegClass(TRC, SubIdx, Node->getValueType(0));
Dan Gohman5ec3b422009-04-14 22:17:14 +0000462
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000463 // Figure out the register class to create for the destreg.
Dan Gohman5ec3b422009-04-14 22:17:14 +0000464 // Note that if we're going to directly use an existing register,
465 // it must be precisely the required class, and not a subclass
466 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000467 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman5ec3b422009-04-14 22:17:14 +0000468 // Create the reg
469 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000470 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000471 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000472
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000473 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000474 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000475 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
476
477 // If creating a subreg_to_reg, then the first input operand
478 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000479 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000480 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000481 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000482 } else
483 AddOperand(MI, N0, 0, 0, VRBaseMap);
484 // Add the subregster being inserted
485 AddOperand(MI, N1, 0, 0, VRBaseMap);
486 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000487 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000488 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000489 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000490
491 SDValue Op(Node, 0);
492 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
493 isNew = isNew; // Silence compiler warning.
494 assert(isNew && "Node emitted out of order - early");
495}
496
Dan Gohman88c7af02009-04-13 21:06:25 +0000497/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
498/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000499/// register is constrained to be in a particular register class.
500///
501void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000502InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
503 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000504 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000505 const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000506
507 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
508 const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx);
509
Dan Gohmanf8c73942009-04-13 15:38:05 +0000510 // Create the new VReg in the destination class and emit a copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000511 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
512 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000513 DstRC, SrcRC, Node->getDebugLoc());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000514 assert(Emitted &&
Dan Gohman88c7af02009-04-13 21:06:25 +0000515 "Unable to issue a copy instruction for a COPY_TO_REGCLASS node!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000516 (void) Emitted;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000517
518 SDValue Op(Node, 0);
519 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
520 isNew = isNew; // Silence compiler warning.
521 assert(isNew && "Node emitted out of order - early");
522}
523
Evan Chengba609c82010-05-04 00:22:40 +0000524/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
525///
526void InstrEmitter::EmitRegSequence(SDNode *Node,
527 DenseMap<SDValue, unsigned> &VRBaseMap) {
528 const TargetRegisterClass *RC = TLI->getRegClassFor(Node->getValueType(0));
529 unsigned NewVReg = MRI->createVirtualRegister(RC);
530 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
531 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
532 unsigned NumOps = Node->getNumOperands();
533 assert((NumOps & 1) == 0 &&
534 "REG_SEQUENCE must have an even number of operands!");
535 const TargetInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
536 for (unsigned i = 0; i != NumOps; ++i) {
537 SDValue Op = Node->getOperand(i);
538#ifndef NDEBUG
539 if (i & 1) {
540 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
541 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
Evan Cheng60ffa942010-05-10 23:08:19 +0000542 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
543 const TargetRegisterClass *SRC =
544 getSuperRegisterRegClass(TRC, SubIdx, Node->getValueType(0));
545 assert(SRC == RC && "Invalid subregister index in REG_SEQUENCE");
Evan Chengba609c82010-05-04 00:22:40 +0000546 }
547#endif
548 AddOperand(MI, Op, i+1, &II, VRBaseMap);
549 }
550
551 MBB->insert(InsertPos, MI);
552 SDValue Op(Node, 0);
553 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
554 isNew = isNew; // Silence compiler warning.
555 assert(isNew && "Node emitted out of order - early");
556}
557
Evan Chengbfcb3052010-03-25 01:38:16 +0000558/// EmitDbgValue - Generate machine instruction for a dbg_value node.
559///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000560MachineInstr *
561InstrEmitter::EmitDbgValue(SDDbgValue *SD,
562 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000563 uint64_t Offset = SD->getOffset();
564 MDNode* MDPtr = SD->getMDPtr();
565 DebugLoc DL = SD->getDebugLoc();
566
Dale Johannesenf822e732010-04-25 21:33:54 +0000567 if (SD->getKind() == SDDbgValue::FRAMEIX) {
568 // Stack address; this needs to be lowered in target-dependent fashion.
569 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
570 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000571 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000572 }
573 // Otherwise, we're going to create an instruction here.
Dale Johannesen06a26632010-03-06 00:03:23 +0000574 const TargetInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000575 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
576 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000577 SDNode *Node = SD->getSDNode();
578 SDValue Op = SDValue(Node, SD->getResNo());
579 // It's possible we replaced this SDNode with other(s) and therefore
580 // didn't generate code for it. It's better to catch these cases where
581 // they happen and transfer the debug info, but trying to guarantee that
582 // in all cases would be very fragile; this is a safeguard for any
583 // that were missed.
584 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
585 if (I==VRBaseMap.end())
586 MIB.addReg(0U); // undef
587 else
588 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
589 true /*IsDebug*/);
Evan Chengbfcb3052010-03-25 01:38:16 +0000590 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000591 const Value *V = SD->getConst();
592 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Dan Gohman4ce86f42010-05-07 22:19:08 +0000593 // FIXME: SDDbgValues aren't updated with legalization, so it's possible
594 // to have i128 values in them at this point. As a crude workaround, just
595 // drop the debug info if this happens.
596 if (!CI->getValue().isSignedIntN(64))
597 MIB.addReg(0U);
598 else
599 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000600 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000601 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000602 } else {
603 // Could be an Undef. In any case insert an Undef so we can see what we
604 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000605 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000606 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000607 } else {
608 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000609 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000610 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000611
612 MIB.addImm(Offset).addMetadata(MDPtr);
613 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000614}
615
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000616/// EmitMachineNode - Generate machine code for a target-specific node and
617/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000618///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000619void InstrEmitter::
620EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000621 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000622 unsigned Opc = Node->getMachineOpcode();
623
624 // Handle subreg insert/extract specially
625 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
626 Opc == TargetOpcode::INSERT_SUBREG ||
627 Opc == TargetOpcode::SUBREG_TO_REG) {
628 EmitSubregNode(Node, VRBaseMap);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000629 return;
630 }
631
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000632 // Handle COPY_TO_REGCLASS specially.
633 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
634 EmitCopyToRegClassNode(Node, VRBaseMap);
635 return;
636 }
637
Evan Chengba609c82010-05-04 00:22:40 +0000638 // Handle REG_SEQUENCE specially.
639 if (Opc == TargetOpcode::REG_SEQUENCE) {
640 EmitRegSequence(Node, VRBaseMap);
641 return;
642 }
643
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000644 if (Opc == TargetOpcode::IMPLICIT_DEF)
645 // We want a unique VR for each IMPLICIT_DEF use.
646 return;
647
648 const TargetInstrDesc &II = TII->get(Opc);
649 unsigned NumResults = CountResults(Node);
650 unsigned NodeOperands = CountOperands(Node);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000651 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000652#ifndef NDEBUG
653 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000654 if (II.isVariadic())
655 assert(NumMIOperands >= II.getNumOperands() &&
656 "Too few operands for a variadic node!");
657 else
658 assert(NumMIOperands >= II.getNumOperands() &&
659 NumMIOperands <= II.getNumOperands()+II.getNumImplicitDefs() &&
660 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000661#endif
662
663 // Create the new machine instruction.
664 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
665
666 // Add result register values for things that are defined by this
667 // instruction.
668 if (NumResults)
669 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
670
671 // Emit all of the actual operands of this instruction, adding them to the
672 // instruction as appropriate.
673 bool HasOptPRefs = II.getNumDefs() > NumResults;
674 assert((!HasOptPRefs || !HasPhysRegOuts) &&
675 "Unable to cope with optional defs and phys regs defs!");
676 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
677 for (unsigned i = NumSkip; i != NodeOperands; ++i)
678 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
679 VRBaseMap);
680
681 // Transfer all of the memory reference descriptions of this instruction.
682 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
683 cast<MachineSDNode>(Node)->memoperands_end());
684
685 if (II.usesCustomInsertionHook()) {
686 // Insert this instruction into the basic block using a target
687 // specific inserter which may returns a new basic block.
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000688 MBB = TLI->EmitInstrWithCustomInserter(MI, MBB);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000689 InsertPos = MBB->end();
Chris Lattner7bf198f2010-03-25 18:49:10 +0000690 return;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000691 }
Chris Lattner7bf198f2010-03-25 18:49:10 +0000692
693 MBB->insert(InsertPos, MI);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000694
695 // Additional results must be an physical register def.
696 if (HasPhysRegOuts) {
697 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
698 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
699 if (Node->hasAnyUseOfValue(i))
700 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
701 // If there are no uses, mark the register as dead now, so that
702 // MachineLICM/Sink can see that it's dead. Don't do this if the
703 // node has a Flag value, for the benefit of targets still using
704 // Flag for values in physregs.
705 else if (Node->getValueType(Node->getNumValues()-1) != MVT::Flag)
706 MI->addRegisterDead(Reg, TRI);
707 }
708 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000709
710 // If the instruction has implicit defs and the node doesn't, mark the
711 // implicit def as dead. If the node has any flag outputs, we don't do this
712 // because we don't know what implicit defs are being used by flagged nodes.
Evan Chengd05e8052010-03-26 02:12:24 +0000713 if (Node->getValueType(Node->getNumValues()-1) != MVT::Flag)
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000714 if (const unsigned *IDList = II.getImplicitDefs()) {
715 for (unsigned i = NumResults, e = II.getNumDefs()+II.getNumImplicitDefs();
716 i != e; ++i)
717 MI->addRegisterDead(IDList[i-II.getNumDefs()], TRI);
718 }
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000719}
720
721/// EmitSpecialNode - Generate machine code for a target-independent node and
722/// needed dependencies.
723void InstrEmitter::
724EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
725 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000726 switch (Node->getOpcode()) {
727 default:
728#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000729 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000730#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000731 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000732 break;
733 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000734 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000735 break;
Evan Cheng37b73872009-07-30 08:33:02 +0000736 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000737 case ISD::TokenFactor: // fall thru
738 break;
739 case ISD::CopyToReg: {
740 unsigned SrcReg;
741 SDValue SrcVal = Node->getOperand(2);
742 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
743 SrcReg = R->getReg();
744 else
745 SrcReg = getVR(SrcVal, VRBaseMap);
746
747 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
748 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
749 break;
750
751 const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
752 // Get the register classes of the src/dst.
753 if (TargetRegisterInfo::isVirtualRegister(SrcReg))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000754 SrcTRC = MRI->getRegClass(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000755 else
756 SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
757
758 if (TargetRegisterInfo::isVirtualRegister(DestReg))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000759 DstTRC = MRI->getRegClass(DestReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000760 else
761 DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
762 Node->getOperand(1).getValueType());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000763
Dan Gohmanbcea8592009-10-10 01:32:21 +0000764 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, DestReg, SrcReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000765 DstTRC, SrcTRC, Node->getDebugLoc());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000766 assert(Emitted && "Unable to issue a copy instruction!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000767 (void) Emitted;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000768 break;
769 }
770 case ISD::CopyFromReg: {
771 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000772 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000773 break;
774 }
Chris Lattner7561d482010-03-14 02:33:54 +0000775 case ISD::EH_LABEL: {
776 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
777 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
778 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
779 break;
780 }
781
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000782 case ISD::INLINEASM: {
783 unsigned NumOps = Node->getNumOperands();
Owen Anderson825b72b2009-08-11 20:47:22 +0000784 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000785 --NumOps; // Ignore the flag operand.
786
787 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000788 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000789 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000790
791 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000792 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
793 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000794 MI->addOperand(MachineOperand::CreateES(AsmStr));
795
796 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000797 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000798 unsigned Flags =
799 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000800 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000801
802 MI->addOperand(MachineOperand::CreateImm(Flags));
803 ++i; // Skip the ID value.
804
Chris Lattnerdecc2672010-04-07 05:20:54 +0000805 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000806 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000807 case InlineAsm::Kind_RegDef:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000808 for (; NumVals; --NumVals, ++i) {
809 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
810 MI->addOperand(MachineOperand::CreateReg(Reg, true));
811 }
812 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000813 case InlineAsm::Kind_RegDefEarlyClobber:
Dale Johannesen913d3df2008-09-12 17:49:03 +0000814 for (; NumVals; --NumVals, ++i) {
815 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
816 MI->addOperand(MachineOperand::CreateReg(Reg, true, false, false,
Evan Cheng4784f1f2009-06-30 08:49:04 +0000817 false, false, true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000818 }
819 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000820 case InlineAsm::Kind_RegUse: // Use of register.
821 case InlineAsm::Kind_Imm: // Immediate.
822 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000823 // The addressing mode has been selected, just add all of the
824 // operands to the machine instruction.
825 for (; NumVals; --NumVals, ++i)
Dale Johannesen86b49f82008-09-24 01:07:17 +0000826 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000827 break;
828 }
829 }
Chris Lattnercf9a4152010-04-07 05:38:05 +0000830
831 // Get the mdnode from the asm if it exists and add it to the instruction.
832 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
833 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000834 if (MD)
835 MI->addOperand(MachineOperand::CreateMetadata(MD));
Chris Lattnercf9a4152010-04-07 05:38:05 +0000836
Dan Gohmanbcea8592009-10-10 01:32:21 +0000837 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000838 break;
839 }
840 }
841}
842
Dan Gohmanbcea8592009-10-10 01:32:21 +0000843/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
844/// at the given position in the given block.
845InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
846 MachineBasicBlock::iterator insertpos)
847 : MF(mbb->getParent()),
848 MRI(&MF->getRegInfo()),
849 TM(&MF->getTarget()),
850 TII(TM->getInstrInfo()),
851 TRI(TM->getRegisterInfo()),
852 TLI(TM->getTargetLowering()),
853 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000854}