blob: 936c1269a8c72b09ec03060fb39a920de4c84900 [file] [log] [blame]
Dan Gohmanbcea8592009-10-10 01:32:21 +00001//==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==//
Dan Gohman94b8d7e2008-09-03 16:01:59 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dan Gohmanbcea8592009-10-10 01:32:21 +000010// This implements the Emit routines for the SelectionDAG class, which creates
11// MachineInstrs based on the decisions of the SelectionDAG instruction
12// selection.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000013//
14//===----------------------------------------------------------------------===//
15
Dan Gohmanbcea8592009-10-10 01:32:21 +000016#define DEBUG_TYPE "instr-emitter"
17#include "InstrEmitter.h"
Evan Chenga8efe282010-03-14 19:56:39 +000018#include "SDNodeDbgValue.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000019#include "llvm/CodeGen/MachineConstantPool.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineRegisterInfo.h"
23#include "llvm/Target/TargetData.h"
24#include "llvm/Target/TargetMachine.h"
25#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Target/TargetLowering.h"
27#include "llvm/ADT/Statistic.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000028#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000030#include "llvm/Support/MathExtras.h"
31using namespace llvm;
32
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +000033/// MinRCSize - Smallest register class we allow when constraining virtual
34/// registers. If satisfying all register class constraints would require
35/// using a smaller register class, emit a COPY to a new virtual register
36/// instead.
37const unsigned MinRCSize = 4;
38
Dan Gohmanbcea8592009-10-10 01:32:21 +000039/// CountResults - The results of target nodes have register or immediate
Chris Lattner29d8f0c2010-12-23 17:24:32 +000040/// operands first, then an optional chain, and optional glue operands (which do
Dan Gohmanbcea8592009-10-10 01:32:21 +000041/// not go into the resulting MachineInstr).
42unsigned InstrEmitter::CountResults(SDNode *Node) {
43 unsigned N = Node->getNumValues();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000044 while (N && Node->getValueType(N - 1) == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000045 --N;
46 if (N && Node->getValueType(N - 1) == MVT::Other)
47 --N; // Skip over chain result.
48 return N;
49}
50
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000051/// countOperands - The inputs to target nodes have any actual inputs first,
Chris Lattner29d8f0c2010-12-23 17:24:32 +000052/// followed by an optional chain operand, then an optional glue operand.
Dan Gohmanbcea8592009-10-10 01:32:21 +000053/// Compute the number of actual operands that will go into the resulting
54/// MachineInstr.
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000055///
56/// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding
57/// the chain and glue. These operands may be implicit on the machine instr.
58static unsigned countOperands(SDNode *Node, unsigned &NumImpUses) {
Dan Gohmanbcea8592009-10-10 01:32:21 +000059 unsigned N = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000060 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
Dan Gohmanbcea8592009-10-10 01:32:21 +000061 --N;
62 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
63 --N; // Ignore chain if it exists.
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +000064
65 // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses.
66 for (unsigned I = N; I; --I) {
67 if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1)))
68 continue;
69 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1)))
70 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg()))
71 continue;
72 NumImpUses = N - I;
73 break;
74 }
75
Dan Gohmanbcea8592009-10-10 01:32:21 +000076 return N;
77}
78
Dan Gohman94b8d7e2008-09-03 16:01:59 +000079/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
80/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000081void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000082EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
83 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000084 unsigned VRBase = 0;
85 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
86 // Just use the input register directly!
87 SDValue Op(Node, ResNo);
88 if (IsClone)
89 VRBaseMap.erase(Op);
90 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000091 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +000092 assert(isNew && "Node emitted out of order - early");
93 return;
94 }
95
96 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
97 // the CopyToReg'd destination register instead of creating a new vreg.
98 bool MatchReg = true;
Evan Cheng1cd33272008-09-16 23:12:11 +000099 const TargetRegisterClass *UseRC = NULL;
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000100 EVT VT = Node->getValueType(ResNo);
101
102 // Stick to the preferred register classes for legal types.
103 if (TLI->isTypeLegal(VT))
104 UseRC = TLI->getRegClassFor(VT);
105
Evan Chenge57187c2009-01-16 20:57:18 +0000106 if (!IsClone && !IsCloned)
107 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
108 UI != E; ++UI) {
109 SDNode *User = *UI;
110 bool Match = true;
Andrew Trick3af7a672011-09-20 03:06:13 +0000111 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000112 User->getOperand(2).getNode() == Node &&
113 User->getOperand(2).getResNo() == ResNo) {
114 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
115 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
116 VRBase = DestReg;
117 Match = false;
118 } else if (DestReg != SrcReg)
119 Match = false;
120 } else {
121 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
122 SDValue Op = User->getOperand(i);
123 if (Op.getNode() != Node || Op.getResNo() != ResNo)
124 continue;
Owen Andersone50ed302009-08-10 22:56:29 +0000125 EVT VT = Node->getValueType(Op.getResNo());
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000126 if (VT == MVT::Other || VT == MVT::Glue)
Evan Chenge57187c2009-01-16 20:57:18 +0000127 continue;
128 Match = false;
129 if (User->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000130 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000131 const TargetRegisterClass *RC = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000132 if (i+II.getNumDefs() < II.getNumOperands()) {
133 RC = TRI->getAllocatableClass(
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000134 TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF));
Andrew Trickf12f6df2012-05-03 01:14:37 +0000135 }
Evan Chenge57187c2009-01-16 20:57:18 +0000136 if (!UseRC)
137 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000138 else if (RC) {
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +0000139 const TargetRegisterClass *ComRC =
140 TRI->getCommonSubClass(UseRC, RC);
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000141 // If multiple uses expect disjoint register classes, we emit
142 // copies in AddRegisterOperand.
143 if (ComRC)
144 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000145 }
Evan Chenge57187c2009-01-16 20:57:18 +0000146 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000147 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000148 }
Evan Chenge57187c2009-01-16 20:57:18 +0000149 MatchReg &= Match;
150 if (VRBase)
151 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000152 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000153
154 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Rafael Espindolad31f9722010-06-29 14:02:34 +0000155 SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT);
Jakob Stoklund Olesenc02a6fa2011-06-16 22:50:38 +0000156
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000157 // Figure out the register class to create for the destreg.
158 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000159 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000160 } else if (UseRC) {
161 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
162 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000163 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000164 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000165 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000166
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000167 // If all uses are reading from the src physical register and copying the
168 // register is either impossible or very expensive, then don't create a copy.
169 if (MatchReg && SrcRC->getCopyCost() < 0) {
170 VRBase = SrcReg;
171 } else {
172 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000173 VRBase = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000174 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
175 VRBase).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000176 }
177
178 SDValue Op(Node, ResNo);
179 if (IsClone)
180 VRBaseMap.erase(Op);
181 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000182 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000183 assert(isNew && "Node emitted out of order - early");
184}
185
186/// getDstOfCopyToRegUse - If the only use of the specified result number of
187/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000188unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
189 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000190 if (!Node->hasOneUse())
191 return 0;
192
193 SDNode *User = *Node->use_begin();
Andrew Trick3af7a672011-09-20 03:06:13 +0000194 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000195 User->getOperand(2).getNode() == Node &&
196 User->getOperand(2).getResNo() == ResNo) {
197 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
198 if (TargetRegisterInfo::isVirtualRegister(Reg))
199 return Reg;
200 }
201 return 0;
202}
203
Dan Gohmanbcea8592009-10-10 01:32:21 +0000204void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge837dea2011-06-28 19:10:37 +0000205 const MCInstrDesc &II,
Evan Chenge57187c2009-01-16 20:57:18 +0000206 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000207 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000208 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000209 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
210
211 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
212 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000213 // is a vreg in the same register class, use the CopyToReg'd destination
214 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000215 unsigned VRBase = 0;
Andrew Trickf12f6df2012-05-03 01:14:37 +0000216 const TargetRegisterClass *RC =
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000217 TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF));
Evan Cheng8955e932009-07-11 01:06:50 +0000218 if (II.OpInfo[i].isOptionalDef()) {
219 // Optional def must be a physical register.
220 unsigned NumResults = CountResults(Node);
221 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
222 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
223 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
224 }
Evan Chenge57187c2009-01-16 20:57:18 +0000225
Evan Cheng8955e932009-07-11 01:06:50 +0000226 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000227 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
228 UI != E; ++UI) {
229 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000230 if (User->getOpcode() == ISD::CopyToReg &&
Evan Chenge57187c2009-01-16 20:57:18 +0000231 User->getOperand(2).getNode() == Node &&
232 User->getOperand(2).getResNo() == i) {
233 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
234 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000235 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000236 if (RegRC == RC) {
237 VRBase = Reg;
238 MI->addOperand(MachineOperand::CreateReg(Reg, true));
239 break;
240 }
Evan Chenge57187c2009-01-16 20:57:18 +0000241 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000242 }
243 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000244
245 // Create the result registers for this node and add the result regs to
246 // the machine instruction.
247 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000248 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000249 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000250 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
251 }
252
253 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000254 if (IsClone)
255 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000256 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000257 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000258 assert(isNew && "Node emitted out of order - early");
259 }
260}
261
262/// getVR - Return the virtual register corresponding to the specified result
263/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000264unsigned InstrEmitter::getVR(SDValue Op,
265 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000266 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000267 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000268 // Add an IMPLICIT_DEF instruction before every use.
269 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
Evan Chenge837dea2011-06-28 19:10:37 +0000270 // IMPLICIT_DEF can produce any type of result so its MCInstrDesc
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000271 // does not include operand register class info.
272 if (!VReg) {
273 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000274 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000275 }
Dan Gohman3cd26a22010-07-10 13:55:45 +0000276 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000277 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000278 return VReg;
279 }
280
281 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
282 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
283 return I->second;
284}
285
Bill Wendlingc0407192010-08-30 04:36:50 +0000286
Dan Gohmanf8c73942009-04-13 15:38:05 +0000287/// AddRegisterOperand - Add the specified register as an operand to the
288/// specified machine instr. Insert register copies if the register is
289/// not in the required register class.
290void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000291InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
292 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000293 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000294 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000295 bool IsDebug, bool IsClone, bool IsCloned) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000297 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000298 "Chain and glue operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000299 // Get/emit the operand.
300 unsigned VReg = getVR(Op, VRBaseMap);
301 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
302
Evan Chenge837dea2011-06-28 19:10:37 +0000303 const MCInstrDesc &MCID = MI->getDesc();
304 bool isOptDef = IIOpNum < MCID.getNumOperands() &&
305 MCID.OpInfo[IIOpNum].isOptionalDef();
Dan Gohmanf8c73942009-04-13 15:38:05 +0000306
307 // If the instruction requires a register in a different class, create
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000308 // a new virtual register and copy the value into it, but first attempt to
309 // shrink VReg's register class within reason. For example, if VReg == GR32
310 // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000311 if (II) {
Chris Lattner2a386882009-07-29 21:36:49 +0000312 const TargetRegisterClass *DstRC = 0;
313 if (IIOpNum < II->getNumOperands())
Jakob Stoklund Olesen397fc482012-05-07 22:10:26 +0000314 DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF));
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000315 assert((DstRC || (MI->isVariadic() && IIOpNum >= MCID.getNumOperands())) &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000316 "Don't have operand info for this instruction!");
Jakob Stoklund Olesen08f5cdf2011-09-22 21:39:34 +0000317 if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000318 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000319 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
320 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000321 VReg = NewVReg;
322 }
323 }
324
Dan Gohman47bd03b2010-04-30 00:08:21 +0000325 // If this value has only one use, that use is a kill. This is a
Dan Gohman9d7019f2010-05-11 21:59:14 +0000326 // conservative approximation. InstrEmitter does trivial coalescing
327 // with CopyFromReg nodes, so don't emit kill flags for them.
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000328 // Avoid kill flags on Schedule cloned nodes, since there will be
329 // multiple uses.
Dan Gohman9d7019f2010-05-11 21:59:14 +0000330 // Tied operands are never killed, so we need to check that. And that
331 // means we need to determine the index of the operand.
332 bool isKill = Op.hasOneUse() &&
333 Op.getNode()->getOpcode() != ISD::CopyFromReg &&
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000334 !IsDebug &&
335 !(IsClone || IsCloned);
Dan Gohman9d7019f2010-05-11 21:59:14 +0000336 if (isKill) {
337 unsigned Idx = MI->getNumOperands();
338 while (Idx > 0 &&
339 MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit())
340 --Idx;
Evan Chenge837dea2011-06-28 19:10:37 +0000341 bool isTied = MI->getDesc().getOperandConstraint(Idx, MCOI::TIED_TO) != -1;
Dan Gohman9d7019f2010-05-11 21:59:14 +0000342 if (isTied)
343 isKill = false;
344 }
Dan Gohman47bd03b2010-04-30 00:08:21 +0000345
Evan Chengbfcb3052010-03-25 01:38:16 +0000346 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef,
Dan Gohman47bd03b2010-04-30 00:08:21 +0000347 false/*isImp*/, isKill,
Evan Chengbfcb3052010-03-25 01:38:16 +0000348 false/*isDead*/, false/*isUndef*/,
349 false/*isEarlyClobber*/,
350 0/*SubReg*/, IsDebug));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000351}
352
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000353/// AddOperand - Add the specified operand to the specified machine instr. II
354/// specifies the instruction information for the node, and IIOpNum is the
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000355/// operand number (in the II) that we are adding.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000356void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
357 unsigned IIOpNum,
Evan Chenge837dea2011-06-28 19:10:37 +0000358 const MCInstrDesc *II,
Evan Chengbfcb3052010-03-25 01:38:16 +0000359 DenseMap<SDValue, unsigned> &VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000360 bool IsDebug, bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000361 if (Op.isMachineOpcode()) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000362 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
363 IsDebug, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000364 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000365 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000366 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000367 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000368 MI->addOperand(MachineOperand::CreateFPImm(CFP));
369 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000370 // Turn additional physreg operands into implicit uses on non-variadic
371 // instructions. This is used by call and return instructions passing
372 // arguments in registers.
373 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
374 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false, Imp));
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +0000375 } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) {
376 MI->addOperand(MachineOperand::CreateRegMask(RM->getRegMask()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000377 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000378 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
379 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000380 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
381 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000382 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
383 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
384 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000385 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
386 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000387 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
388 int Offset = CP->getOffset();
389 unsigned Align = CP->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000390 Type *Type = CP->getType();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000391 // MachineConstantPool wants an explicit alignment.
392 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000393 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000394 if (Align == 0) {
395 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000396 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000397 }
398 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000399
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000400 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000401 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000402 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000403 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000404 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000405 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000406 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
407 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000408 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000409 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000410 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000411 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000412 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
413 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000414 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000415 assert(Op.getValueType() != MVT::Other &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000416 Op.getValueType() != MVT::Glue &&
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000417 "Chain and glue operands should occur at end of operand list!");
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000418 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap,
419 IsDebug, IsClone, IsCloned);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000420 }
421}
422
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000423unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx,
424 EVT VT, DebugLoc DL) {
425 const TargetRegisterClass *VRC = MRI->getRegClass(VReg);
426 const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx);
427
428 // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg
429 // within reason.
430 if (RC && RC != VRC)
431 RC = MRI->constrainRegClass(VReg, RC, MinRCSize);
432
433 // VReg has been adjusted. It can be used with SubIdx operands now.
434 if (RC)
435 return VReg;
436
437 // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual
438 // register instead.
439 RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx);
440 assert(RC && "No legal register class for VT supports that SubIdx");
441 unsigned NewReg = MRI->createVirtualRegister(RC);
442 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
443 .addReg(VReg);
444 return NewReg;
445}
446
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000447/// EmitSubregNode - Generate machine code for subreg nodes.
448///
Andrew Trick3af7a672011-09-20 03:06:13 +0000449void InstrEmitter::EmitSubregNode(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000450 DenseMap<SDValue, unsigned> &VRBaseMap,
451 bool IsClone, bool IsCloned) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000452 unsigned VRBase = 0;
453 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000454
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000455 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
456 // the CopyToReg'd destination register instead of creating a new vreg.
457 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
458 UI != E; ++UI) {
459 SDNode *User = *UI;
Andrew Trick3af7a672011-09-20 03:06:13 +0000460 if (User->getOpcode() == ISD::CopyToReg &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000461 User->getOperand(2).getNode() == Node) {
462 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
463 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
464 VRBase = DestReg;
465 break;
466 }
467 }
468 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000469
Chris Lattner518bb532010-02-09 19:54:29 +0000470 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000471 // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no
472 // constraints on the %dst register, COPY can target all legal register
473 // classes.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000474 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000475 const TargetRegisterClass *TRC = TLI->getRegClassFor(Node->getValueType(0));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000476
Dan Gohmanf8c73942009-04-13 15:38:05 +0000477 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng0b71d392011-01-05 23:06:49 +0000478 MachineInstr *DefMI = MRI->getVRegDef(VReg);
479 unsigned SrcReg, DstReg, DefSubIdx;
480 if (DefMI &&
481 TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) &&
Evan Cheng87591342012-07-11 18:55:07 +0000482 SubIdx == DefSubIdx &&
483 TRC == MRI->getRegClass(SrcReg)) {
Evan Cheng0b71d392011-01-05 23:06:49 +0000484 // Optimize these:
485 // r1025 = s/zext r1024, 4
486 // r1026 = extract_subreg r1025, 4
487 // to a copy
488 // r1026 = copy r1024
Evan Cheng0b71d392011-01-05 23:06:49 +0000489 VRBase = MRI->createVirtualRegister(TRC);
490 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
491 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
Jakob Stoklund Olesen8ccaad52012-06-29 21:00:03 +0000492 MRI->clearKillFlags(SrcReg);
Evan Cheng0b71d392011-01-05 23:06:49 +0000493 } else {
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000494 // VReg may not support a SubIdx sub-register, and we may need to
495 // constrain its register class or issue a COPY to a compatible register
496 // class.
497 VReg = ConstrainForSubReg(VReg, SubIdx,
498 Node->getOperand(0).getValueType(),
499 Node->getDebugLoc());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000500
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000501 // Create the destreg if it is missing.
502 if (VRBase == 0)
503 VRBase = MRI->createVirtualRegister(TRC);
Evan Cheng0b71d392011-01-05 23:06:49 +0000504
505 // Create the extract_subreg machine instruction.
Jakob Stoklund Olesend2ed2d72011-10-05 20:26:40 +0000506 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
507 TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000508 }
Chris Lattner518bb532010-02-09 19:54:29 +0000509 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
510 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000511 SDValue N0 = Node->getOperand(0);
512 SDValue N1 = Node->getOperand(1);
513 SDValue N2 = Node->getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000514 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohman5ec3b422009-04-14 22:17:14 +0000515
Jakob Stoklund Olesen2c3bef82011-10-05 18:31:00 +0000516 // Figure out the register class to create for the destreg. It should be
517 // the largest legal register class supporting SubIdx sub-registers.
518 // RegisterCoalescer will constrain it further if it decides to eliminate
519 // the INSERT_SUBREG instruction.
520 //
521 // %dst = INSERT_SUBREG %src, %sub, SubIdx
522 //
523 // is lowered by TwoAddressInstructionPass to:
524 //
525 // %dst = COPY %src
526 // %dst:SubIdx = COPY %sub
527 //
528 // There is no constraint on the %src register class.
529 //
530 const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getValueType(0));
531 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
532 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
533
534 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000535 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000536
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000537 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000538 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000539 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Andrew Trick3af7a672011-09-20 03:06:13 +0000540
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000541 // If creating a subreg_to_reg, then the first input operand
542 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000543 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000544 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000545 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000546 } else
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000547 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
548 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000549 // Add the subregster being inserted
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000550 AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false,
551 IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000552 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000553 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000554 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000555 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Andrew Trick3af7a672011-09-20 03:06:13 +0000556
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000557 SDValue Op(Node, 0);
558 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000559 (void)isNew; // Silence compiler warning.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000560 assert(isNew && "Node emitted out of order - early");
561}
562
Dan Gohman88c7af02009-04-13 21:06:25 +0000563/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
564/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000565/// register is constrained to be in a particular register class.
566///
567void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000568InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
569 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000570 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000571
Dan Gohmanf8c73942009-04-13 15:38:05 +0000572 // Create the new VReg in the destination class and emit a copy.
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000573 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Andrew Trickf12f6df2012-05-03 01:14:37 +0000574 const TargetRegisterClass *DstRC =
575 TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000576 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000577 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
578 NewVReg).addReg(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000579
580 SDValue Op(Node, 0);
581 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000582 (void)isNew; // Silence compiler warning.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000583 assert(isNew && "Node emitted out of order - early");
584}
585
Evan Chengba609c82010-05-04 00:22:40 +0000586/// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes.
587///
588void InstrEmitter::EmitRegSequence(SDNode *Node,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000589 DenseMap<SDValue, unsigned> &VRBaseMap,
590 bool IsClone, bool IsCloned) {
Owen Anderson1300f302011-06-16 18:17:13 +0000591 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
592 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
Andrew Trickf12f6df2012-05-03 01:14:37 +0000593 unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC));
Evan Chengba609c82010-05-04 00:22:40 +0000594 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
595 TII->get(TargetOpcode::REG_SEQUENCE), NewVReg);
596 unsigned NumOps = Node->getNumOperands();
Owen Anderson1300f302011-06-16 18:17:13 +0000597 assert((NumOps & 1) == 1 &&
598 "REG_SEQUENCE must have an odd number of operands!");
Evan Chenge837dea2011-06-28 19:10:37 +0000599 const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE);
Owen Anderson1300f302011-06-16 18:17:13 +0000600 for (unsigned i = 1; i != NumOps; ++i) {
Evan Chengba609c82010-05-04 00:22:40 +0000601 SDValue Op = Node->getOperand(i);
Owen Anderson1300f302011-06-16 18:17:13 +0000602 if ((i & 1) == 0) {
Pete Coopercd7f02b2012-01-18 04:16:16 +0000603 RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1));
604 // Skip physical registers as they don't have a vreg to get and we'll
605 // insert copies for them in TwoAddressInstructionPass anyway.
606 if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
607 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
608 unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap);
609 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
610 const TargetRegisterClass *SRC =
Evan Cheng27e48402010-05-18 20:03:28 +0000611 TRI->getMatchingSuperRegClass(RC, TRC, SubIdx);
Pete Coopercd7f02b2012-01-18 04:16:16 +0000612 if (SRC && SRC != RC) {
613 MRI->setRegClass(NewVReg, SRC);
614 RC = SRC;
615 }
Evan Cheng5012f9b2010-05-18 20:07:47 +0000616 }
Evan Chengba609c82010-05-04 00:22:40 +0000617 }
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000618 AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false,
619 IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000620 }
621
622 MBB->insert(InsertPos, MI);
623 SDValue Op(Node, 0);
624 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +0000625 (void)isNew; // Silence compiler warning.
Evan Chengba609c82010-05-04 00:22:40 +0000626 assert(isNew && "Node emitted out of order - early");
627}
628
Evan Chengbfcb3052010-03-25 01:38:16 +0000629/// EmitDbgValue - Generate machine instruction for a dbg_value node.
630///
Dan Gohman891ff8f2010-04-30 19:35:33 +0000631MachineInstr *
632InstrEmitter::EmitDbgValue(SDDbgValue *SD,
633 DenseMap<SDValue, unsigned> &VRBaseMap) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000634 uint64_t Offset = SD->getOffset();
635 MDNode* MDPtr = SD->getMDPtr();
636 DebugLoc DL = SD->getDebugLoc();
637
Dale Johannesenf822e732010-04-25 21:33:54 +0000638 if (SD->getKind() == SDDbgValue::FRAMEIX) {
639 // Stack address; this needs to be lowered in target-dependent fashion.
640 // EmitTargetCodeForFrameDebugValue is responsible for allocation.
641 unsigned FrameIx = SD->getFrameIx();
Evan Cheng962021b2010-04-26 07:38:55 +0000642 return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL);
Dale Johannesenf822e732010-04-25 21:33:54 +0000643 }
644 // Otherwise, we're going to create an instruction here.
Evan Chenge837dea2011-06-28 19:10:37 +0000645 const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE);
Evan Chengbfcb3052010-03-25 01:38:16 +0000646 MachineInstrBuilder MIB = BuildMI(*MF, DL, II);
647 if (SD->getKind() == SDDbgValue::SDNODE) {
Dale Johannesenc4d7b142010-04-06 21:59:56 +0000648 SDNode *Node = SD->getSDNode();
649 SDValue Op = SDValue(Node, SD->getResNo());
650 // It's possible we replaced this SDNode with other(s) and therefore
651 // didn't generate code for it. It's better to catch these cases where
652 // they happen and transfer the debug info, but trying to guarantee that
653 // in all cases would be very fragile; this is a safeguard for any
654 // that were missed.
655 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
656 if (I==VRBaseMap.end())
657 MIB.addReg(0U); // undef
658 else
659 AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000660 /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false);
Evan Chengbfcb3052010-03-25 01:38:16 +0000661 } else if (SD->getKind() == SDDbgValue::CONST) {
Dan Gohman46510a72010-04-15 01:51:59 +0000662 const Value *V = SD->getConst();
663 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000664 if (CI->getBitWidth() > 64)
665 MIB.addCImm(CI);
Dan Gohman4ce86f42010-05-07 22:19:08 +0000666 else
667 MIB.addImm(CI->getSExtValue());
Dan Gohman46510a72010-04-15 01:51:59 +0000668 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000669 MIB.addFPImm(CF);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000670 } else {
671 // Could be an Undef. In any case insert an Undef so we can see what we
672 // dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000673 MIB.addReg(0U);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000674 }
Dale Johannesen06a26632010-03-06 00:03:23 +0000675 } else {
676 // Insert an Undef so we can see what we dropped.
Evan Chengbfcb3052010-03-25 01:38:16 +0000677 MIB.addReg(0U);
Dale Johannesen06a26632010-03-06 00:03:23 +0000678 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000679
680 MIB.addImm(Offset).addMetadata(MDPtr);
681 return &*MIB;
Dale Johannesen06a26632010-03-06 00:03:23 +0000682}
683
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000684/// EmitMachineNode - Generate machine code for a target-specific node and
685/// needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000686///
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000687void InstrEmitter::
688EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000689 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000690 unsigned Opc = Node->getMachineOpcode();
Andrew Trick3af7a672011-09-20 03:06:13 +0000691
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000692 // Handle subreg insert/extract specially
Andrew Trick3af7a672011-09-20 03:06:13 +0000693 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000694 Opc == TargetOpcode::INSERT_SUBREG ||
695 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000696 EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned);
Chris Lattnerd41952d2010-03-24 23:41:19 +0000697 return;
698 }
699
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000700 // Handle COPY_TO_REGCLASS specially.
701 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
702 EmitCopyToRegClassNode(Node, VRBaseMap);
703 return;
704 }
705
Evan Chengba609c82010-05-04 00:22:40 +0000706 // Handle REG_SEQUENCE specially.
707 if (Opc == TargetOpcode::REG_SEQUENCE) {
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000708 EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned);
Evan Chengba609c82010-05-04 00:22:40 +0000709 return;
710 }
711
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000712 if (Opc == TargetOpcode::IMPLICIT_DEF)
713 // We want a unique VR for each IMPLICIT_DEF use.
714 return;
Andrew Trick3af7a672011-09-20 03:06:13 +0000715
Evan Chenge837dea2011-06-28 19:10:37 +0000716 const MCInstrDesc &II = TII->get(Opc);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000717 unsigned NumResults = CountResults(Node);
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000718 unsigned NumImpUses = 0;
719 unsigned NodeOperands = countOperands(Node, NumImpUses);
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000720 bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0;
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000721#ifndef NDEBUG
722 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000723 if (II.isVariadic())
724 assert(NumMIOperands >= II.getNumOperands() &&
725 "Too few operands for a variadic node!");
726 else
727 assert(NumMIOperands >= II.getNumOperands() &&
Jakob Stoklund Olesen33a537a2012-07-04 23:53:23 +0000728 NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() +
729 NumImpUses &&
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000730 "#operands for dag node doesn't match .td file!");
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000731#endif
732
733 // Create the new machine instruction.
734 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohmandb497122010-06-18 23:28:01 +0000735
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000736 // Add result register values for things that are defined by this
737 // instruction.
738 if (NumResults)
739 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000740
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000741 // Emit all of the actual operands of this instruction, adding them to the
742 // instruction as appropriate.
743 bool HasOptPRefs = II.getNumDefs() > NumResults;
744 assert((!HasOptPRefs || !HasPhysRegOuts) &&
745 "Unable to cope with optional defs and phys regs defs!");
746 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
747 for (unsigned i = NumSkip; i != NodeOperands; ++i)
748 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000749 VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000750
751 // Transfer all of the memory reference descriptions of this instruction.
752 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
753 cast<MachineSDNode>(Node)->memoperands_end());
754
Dan Gohman14152b42010-07-06 20:24:04 +0000755 // Insert the instruction into position in the block. This needs to
756 // happen before any custom inserter hook is called so that the
757 // hook knows where in the block to insert the replacement code.
758 MBB->insert(InsertPos, MI);
759
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000760 // The MachineInstr may also define physregs instead of virtregs. These
761 // physreg values can reach other instructions in different ways:
762 //
763 // 1. When there is a use of a Node value beyond the explicitly defined
764 // virtual registers, we emit a CopyFromReg for one of the implicitly
765 // defined physregs. This only happens when HasPhysRegOuts is true.
766 //
767 // 2. A CopyFromReg reading a physreg may be glued to this instruction.
768 //
769 // 3. A glued instruction may implicitly use a physreg.
770 //
771 // 4. A glued instruction may use a RegisterSDNode operand.
772 //
773 // Collect all the used physreg defs, and make sure that any unused physreg
774 // defs are marked as dead.
775 SmallVector<unsigned, 8> UsedRegs;
776
Eric Christopherbece0482010-12-08 22:21:42 +0000777 // Additional results must be physical register defs.
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000778 if (HasPhysRegOuts) {
779 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
780 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000781 if (!Node->hasAnyUseOfValue(i))
782 continue;
783 // This implicitly defined physreg has a use.
784 UsedRegs.push_back(Reg);
785 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000786 }
787 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000788
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000789 // Scan the glue chain for any used physregs.
790 if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) {
791 for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) {
792 if (F->getOpcode() == ISD::CopyFromReg) {
793 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg());
794 continue;
Hal Finkelf77c03a2012-02-24 17:53:59 +0000795 } else if (F->getOpcode() == ISD::CopyToReg) {
796 // Skip CopyToReg nodes that are internal to the glue chain.
797 continue;
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000798 }
799 // Collect declared implicit uses.
800 const MCInstrDesc &MCID = TII->get(F->getMachineOpcode());
801 UsedRegs.append(MCID.getImplicitUses(),
802 MCID.getImplicitUses() + MCID.getNumImplicitUses());
803 // In addition to declared implicit uses, we must also check for
804 // direct RegisterSDNode operands.
805 for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i)
806 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) {
807 unsigned Reg = R->getReg();
808 if (TargetRegisterInfo::isPhysicalRegister(Reg))
809 UsedRegs.push_back(Reg);
810 }
Chris Lattner47cdf4a2010-03-25 05:40:48 +0000811 }
Jakob Stoklund Olesen59cb77f2012-02-03 20:43:35 +0000812 }
813
814 // Finally mark unused registers as dead.
815 if (!UsedRegs.empty() || II.getImplicitDefs())
816 MI->setPhysRegsDeadExcept(UsedRegs, *TRI);
Evan Cheng37fefc22011-08-30 19:09:48 +0000817
818 // Run post-isel target hook to adjust this instruction if needed.
Andrew Trick3be654f2011-09-21 02:20:46 +0000819#ifdef NDEBUG
Andrew Trick83a80312011-09-20 18:22:31 +0000820 if (II.hasPostISelHook())
Andrew Trick3be654f2011-09-21 02:20:46 +0000821#endif
Andrew Trick83a80312011-09-20 18:22:31 +0000822 TLI->AdjustInstrPostInstrSelection(MI, Node);
Chris Lattner3d7d07e2010-03-25 04:41:16 +0000823}
824
825/// EmitSpecialNode - Generate machine code for a target-independent node and
826/// needed dependencies.
827void InstrEmitter::
828EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
829 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000830 switch (Node->getOpcode()) {
831 default:
832#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000833 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000834#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000835 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000836 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000837 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Evan Cheng37b73872009-07-30 08:33:02 +0000838 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000839 case ISD::TokenFactor: // fall thru
840 break;
841 case ISD::CopyToReg: {
842 unsigned SrcReg;
843 SDValue SrcVal = Node->getOperand(2);
844 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
845 SrcReg = R->getReg();
846 else
847 SrcReg = getVR(SrcVal, VRBaseMap);
Andrew Trick3af7a672011-09-20 03:06:13 +0000848
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000849 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
850 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
851 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000852
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +0000853 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
854 DestReg).addReg(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000855 break;
856 }
857 case ISD::CopyFromReg: {
858 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000859 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000860 break;
861 }
Chris Lattner7561d482010-03-14 02:33:54 +0000862 case ISD::EH_LABEL: {
863 MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel();
864 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
865 TII->get(TargetOpcode::EH_LABEL)).addSym(S);
866 break;
867 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000868
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000869 case ISD::INLINEASM: {
870 unsigned NumOps = Node->getNumOperands();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000871 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000872 --NumOps; // Ignore the glue operand.
Andrew Trick3af7a672011-09-20 03:06:13 +0000873
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000874 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000875 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000876 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000877
878 // Add the asm string as an external symbol operand.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000879 SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString);
880 const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000881 MI->addOperand(MachineOperand::CreateES(AsmStr));
Andrew Trick3af7a672011-09-20 03:06:13 +0000882
Evan Chengc36b7062011-01-07 23:50:32 +0000883 // Add the HasSideEffect and isAlignStack bits.
884 int64_t ExtraInfo =
885 cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000886 getZExtValue();
Evan Chengc36b7062011-01-07 23:50:32 +0000887 MI->addOperand(MachineOperand::CreateImm(ExtraInfo));
Dale Johannesenf1e309e2010-07-02 20:16:09 +0000888
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000889 // Add all of the operand registers to the instruction.
Chris Lattnerdecc2672010-04-07 05:20:54 +0000890 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000891 unsigned Flags =
892 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000893 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Andrew Trick3af7a672011-09-20 03:06:13 +0000894
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000895 MI->addOperand(MachineOperand::CreateImm(Flags));
896 ++i; // Skip the ID value.
Andrew Trick3af7a672011-09-20 03:06:13 +0000897
Chris Lattnerdecc2672010-04-07 05:20:54 +0000898 switch (InlineAsm::getKind(Flags)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000899 default: llvm_unreachable("Bad flags!");
Chris Lattnerdecc2672010-04-07 05:20:54 +0000900 case InlineAsm::Kind_RegDef:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000901 for (; NumVals; --NumVals, ++i) {
902 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000903 // FIXME: Add dead flags for physical and virtual registers defined.
904 // For now, mark physical register defs as implicit to help fast
905 // regalloc. This makes inline asm look a lot like calls.
906 MI->addOperand(MachineOperand::CreateReg(Reg, true,
907 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg)));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000908 }
909 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000910 case InlineAsm::Kind_RegDefEarlyClobber:
Jakob Stoklund Olesenf792fa92011-06-27 04:08:33 +0000911 case InlineAsm::Kind_Clobber:
Dale Johannesen913d3df2008-09-12 17:49:03 +0000912 for (; NumVals; --NumVals, ++i) {
913 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000914 MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true,
Jakob Stoklund Olesen3013a202010-06-09 20:05:00 +0000915 /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg),
Jakob Stoklund Olesenc3c25172010-06-09 00:40:31 +0000916 /*isKill=*/ false,
917 /*isDead=*/ false,
918 /*isUndef=*/false,
919 /*isEarlyClobber=*/ true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000920 }
921 break;
Chris Lattnerdecc2672010-04-07 05:20:54 +0000922 case InlineAsm::Kind_RegUse: // Use of register.
923 case InlineAsm::Kind_Imm: // Immediate.
924 case InlineAsm::Kind_Mem: // Addressing mode.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000925 // The addressing mode has been selected, just add all of the
926 // operands to the machine instruction.
927 for (; NumVals; --NumVals, ++i)
Dan Gohman8b3a8f52010-05-14 22:01:14 +0000928 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap,
929 /*IsDebug=*/false, IsClone, IsCloned);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000930 break;
931 }
932 }
Andrew Trick3af7a672011-09-20 03:06:13 +0000933
Chris Lattnercf9a4152010-04-07 05:38:05 +0000934 // Get the mdnode from the asm if it exists and add it to the instruction.
935 SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode);
936 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
Bob Wilsoncc7354e2010-04-26 22:56:56 +0000937 if (MD)
938 MI->addOperand(MachineOperand::CreateMetadata(MD));
Andrew Trick3af7a672011-09-20 03:06:13 +0000939
Dan Gohmanbcea8592009-10-10 01:32:21 +0000940 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000941 break;
942 }
943 }
944}
945
Dan Gohmanbcea8592009-10-10 01:32:21 +0000946/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
947/// at the given position in the given block.
948InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
949 MachineBasicBlock::iterator insertpos)
950 : MF(mbb->getParent()),
951 MRI(&MF->getRegInfo()),
952 TM(&MF->getTarget()),
953 TII(TM->getInstrInfo()),
954 TRI(TM->getRegisterInfo()),
955 TLI(TM->getTargetLowering()),
956 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000957}