blob: 02fe85dd996f00708c2b6c1aa20face53d85feef [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"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000018#include "llvm/CodeGen/MachineConstantPool.h"
19#include "llvm/CodeGen/MachineFunction.h"
20#include "llvm/CodeGen/MachineInstrBuilder.h"
21#include "llvm/CodeGen/MachineRegisterInfo.h"
22#include "llvm/Target/TargetData.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetLowering.h"
26#include "llvm/ADT/Statistic.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000027#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Dan Gohman94b8d7e2008-09-03 16:01:59 +000029#include "llvm/Support/MathExtras.h"
30using namespace llvm;
31
Dan Gohmanbcea8592009-10-10 01:32:21 +000032/// CountResults - The results of target nodes have register or immediate
33/// operands first, then an optional chain, and optional flag operands (which do
34/// not go into the resulting MachineInstr).
35unsigned InstrEmitter::CountResults(SDNode *Node) {
36 unsigned N = Node->getNumValues();
37 while (N && Node->getValueType(N - 1) == MVT::Flag)
38 --N;
39 if (N && Node->getValueType(N - 1) == MVT::Other)
40 --N; // Skip over chain result.
41 return N;
42}
43
44/// CountOperands - The inputs to target nodes have any actual inputs first,
45/// followed by an optional chain operand, then an optional flag operand.
46/// Compute the number of actual operands that will go into the resulting
47/// MachineInstr.
48unsigned InstrEmitter::CountOperands(SDNode *Node) {
49 unsigned N = Node->getNumOperands();
50 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
51 --N;
52 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
53 --N; // Ignore chain if it exists.
54 return N;
55}
56
Dan Gohman94b8d7e2008-09-03 16:01:59 +000057/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
58/// implicit physical register output.
Dan Gohmanbcea8592009-10-10 01:32:21 +000059void InstrEmitter::
Chris Lattner52023122009-06-26 05:39:02 +000060EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
61 unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +000062 unsigned VRBase = 0;
63 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
64 // Just use the input register directly!
65 SDValue Op(Node, ResNo);
66 if (IsClone)
67 VRBaseMap.erase(Op);
68 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
69 isNew = isNew; // Silence compiler warning.
70 assert(isNew && "Node emitted out of order - early");
71 return;
72 }
73
74 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
75 // the CopyToReg'd destination register instead of creating a new vreg.
76 bool MatchReg = true;
Evan Cheng1cd33272008-09-16 23:12:11 +000077 const TargetRegisterClass *UseRC = NULL;
Evan Chenge57187c2009-01-16 20:57:18 +000078 if (!IsClone && !IsCloned)
79 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
80 UI != E; ++UI) {
81 SDNode *User = *UI;
82 bool Match = true;
83 if (User->getOpcode() == ISD::CopyToReg &&
84 User->getOperand(2).getNode() == Node &&
85 User->getOperand(2).getResNo() == ResNo) {
86 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
87 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
88 VRBase = DestReg;
89 Match = false;
90 } else if (DestReg != SrcReg)
91 Match = false;
92 } else {
93 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
94 SDValue Op = User->getOperand(i);
95 if (Op.getNode() != Node || Op.getResNo() != ResNo)
96 continue;
Owen Andersone50ed302009-08-10 22:56:29 +000097 EVT VT = Node->getValueType(Op.getResNo());
Owen Anderson825b72b2009-08-11 20:47:22 +000098 if (VT == MVT::Other || VT == MVT::Flag)
Evan Chenge57187c2009-01-16 20:57:18 +000099 continue;
100 Match = false;
101 if (User->isMachineOpcode()) {
102 const TargetInstrDesc &II = TII->get(User->getMachineOpcode());
Chris Lattner2a386882009-07-29 21:36:49 +0000103 const TargetRegisterClass *RC = 0;
104 if (i+II.getNumDefs() < II.getNumOperands())
105 RC = II.OpInfo[i+II.getNumDefs()].getRegClass(TRI);
Evan Chenge57187c2009-01-16 20:57:18 +0000106 if (!UseRC)
107 UseRC = RC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000108 else if (RC) {
Jakob Stoklund Olesenf7e8af92009-08-16 17:40:59 +0000109 const TargetRegisterClass *ComRC = getCommonSubClass(UseRC, RC);
110 // If multiple uses expect disjoint register classes, we emit
111 // copies in AddRegisterOperand.
112 if (ComRC)
113 UseRC = ComRC;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000114 }
Evan Chenge57187c2009-01-16 20:57:18 +0000115 }
Evan Cheng1cd33272008-09-16 23:12:11 +0000116 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000117 }
Evan Chenge57187c2009-01-16 20:57:18 +0000118 MatchReg &= Match;
119 if (VRBase)
120 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000121 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000122
Owen Andersone50ed302009-08-10 22:56:29 +0000123 EVT VT = Node->getValueType(ResNo);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000124 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Evan Cheng1cd33272008-09-16 23:12:11 +0000125 SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000126
127 // Figure out the register class to create for the destreg.
128 if (VRBase) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000129 DstRC = MRI->getRegClass(VRBase);
Evan Cheng1cd33272008-09-16 23:12:11 +0000130 } else if (UseRC) {
131 assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!");
132 DstRC = UseRC;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000133 } else {
Evan Cheng1cd33272008-09-16 23:12:11 +0000134 DstRC = TLI->getRegClassFor(VT);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000135 }
136
137 // If all uses are reading from the src physical register and copying the
138 // register is either impossible or very expensive, then don't create a copy.
139 if (MatchReg && SrcRC->getCopyCost() < 0) {
140 VRBase = SrcReg;
141 } else {
142 // Create the reg, emit the copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000143 VRBase = MRI->createVirtualRegister(DstRC);
144 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, VRBase, SrcReg,
Dan Gohman47ac0f02009-02-11 04:27:20 +0000145 DstRC, SrcRC);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000146
147 assert(Emitted && "Unable to issue a copy instruction!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000148 (void) Emitted;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000149 }
150
151 SDValue Op(Node, ResNo);
152 if (IsClone)
153 VRBaseMap.erase(Op);
154 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
155 isNew = isNew; // Silence compiler warning.
156 assert(isNew && "Node emitted out of order - early");
157}
158
159/// getDstOfCopyToRegUse - If the only use of the specified result number of
160/// node is a CopyToReg, return its destination register. Return 0 otherwise.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000161unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node,
162 unsigned ResNo) const {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000163 if (!Node->hasOneUse())
164 return 0;
165
166 SDNode *User = *Node->use_begin();
167 if (User->getOpcode() == ISD::CopyToReg &&
168 User->getOperand(2).getNode() == Node &&
169 User->getOperand(2).getResNo() == ResNo) {
170 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
171 if (TargetRegisterInfo::isVirtualRegister(Reg))
172 return Reg;
173 }
174 return 0;
175}
176
Dan Gohmanbcea8592009-10-10 01:32:21 +0000177void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Chenge57187c2009-01-16 20:57:18 +0000178 const TargetInstrDesc &II,
179 bool IsClone, bool IsCloned,
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000180 DenseMap<SDValue, unsigned> &VRBaseMap) {
Chris Lattner518bb532010-02-09 19:54:29 +0000181 assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000182 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
183
184 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
185 // If the specific node value is only used by a CopyToReg and the dest reg
Dan Gohmanf8c73942009-04-13 15:38:05 +0000186 // is a vreg in the same register class, use the CopyToReg'd destination
187 // register instead of creating a new vreg.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000188 unsigned VRBase = 0;
Chris Lattner2a386882009-07-29 21:36:49 +0000189 const TargetRegisterClass *RC = II.OpInfo[i].getRegClass(TRI);
Evan Cheng8955e932009-07-11 01:06:50 +0000190 if (II.OpInfo[i].isOptionalDef()) {
191 // Optional def must be a physical register.
192 unsigned NumResults = CountResults(Node);
193 VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg();
194 assert(TargetRegisterInfo::isPhysicalRegister(VRBase));
195 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
196 }
Evan Chenge57187c2009-01-16 20:57:18 +0000197
Evan Cheng8955e932009-07-11 01:06:50 +0000198 if (!VRBase && !IsClone && !IsCloned)
Evan Chenge57187c2009-01-16 20:57:18 +0000199 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
200 UI != E; ++UI) {
201 SDNode *User = *UI;
202 if (User->getOpcode() == ISD::CopyToReg &&
203 User->getOperand(2).getNode() == Node &&
204 User->getOperand(2).getResNo() == i) {
205 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
206 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000207 const TargetRegisterClass *RegRC = MRI->getRegClass(Reg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000208 if (RegRC == RC) {
209 VRBase = Reg;
210 MI->addOperand(MachineOperand::CreateReg(Reg, true));
211 break;
212 }
Evan Chenge57187c2009-01-16 20:57:18 +0000213 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000214 }
215 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000216
217 // Create the result registers for this node and add the result regs to
218 // the machine instruction.
219 if (VRBase == 0) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000220 assert(RC && "Isn't a register operand!");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000221 VRBase = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000222 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
223 }
224
225 SDValue Op(Node, i);
Evan Cheng5c3c5a42009-01-09 22:44:02 +0000226 if (IsClone)
227 VRBaseMap.erase(Op);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000228 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
229 isNew = isNew; // Silence compiler warning.
230 assert(isNew && "Node emitted out of order - early");
231 }
232}
233
234/// getVR - Return the virtual register corresponding to the specified result
235/// of the specified node.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000236unsigned InstrEmitter::getVR(SDValue Op,
237 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000238 if (Op.isMachineOpcode() &&
Chris Lattner518bb532010-02-09 19:54:29 +0000239 Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000240 // Add an IMPLICIT_DEF instruction before every use.
241 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo());
242 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
243 // does not include operand register class info.
244 if (!VReg) {
245 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
Dan Gohmanbcea8592009-10-10 01:32:21 +0000246 VReg = MRI->createVirtualRegister(RC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000247 }
Dan Gohmanbcea8592009-10-10 01:32:21 +0000248 BuildMI(MBB, Op.getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000249 TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000250 return VReg;
251 }
252
253 DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op);
254 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
255 return I->second;
256}
257
258
Dan Gohmanf8c73942009-04-13 15:38:05 +0000259/// AddRegisterOperand - Add the specified register as an operand to the
260/// specified machine instr. Insert register copies if the register is
261/// not in the required register class.
262void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000263InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op,
264 unsigned IIOpNum,
265 const TargetInstrDesc *II,
266 DenseMap<SDValue, unsigned> &VRBaseMap) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 assert(Op.getValueType() != MVT::Other &&
268 Op.getValueType() != MVT::Flag &&
Dan Gohmanf8c73942009-04-13 15:38:05 +0000269 "Chain and flag operands should occur at end of operand list!");
270 // Get/emit the operand.
271 unsigned VReg = getVR(Op, VRBaseMap);
272 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
273
274 const TargetInstrDesc &TID = MI->getDesc();
275 bool isOptDef = IIOpNum < TID.getNumOperands() &&
276 TID.OpInfo[IIOpNum].isOptionalDef();
277
278 // If the instruction requires a register in a different class, create
279 // a new virtual register and copy the value into it.
280 if (II) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000281 const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg);
Chris Lattner2a386882009-07-29 21:36:49 +0000282 const TargetRegisterClass *DstRC = 0;
283 if (IIOpNum < II->getNumOperands())
284 DstRC = II->OpInfo[IIOpNum].getRegClass(TRI);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000285 assert((DstRC || (TID.isVariadic() && IIOpNum >= TID.getNumOperands())) &&
286 "Don't have operand info for this instruction!");
287 if (DstRC && SrcRC != DstRC && !SrcRC->hasSuperClass(DstRC)) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000288 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
289 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg,
Dan Gohmanf8c73942009-04-13 15:38:05 +0000290 DstRC, SrcRC);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000291 assert(Emitted && "Unable to issue a copy instruction!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000292 (void) Emitted;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000293 VReg = NewVReg;
294 }
295 }
296
297 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
298}
299
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000300/// AddOperand - Add the specified operand to the specified machine instr. II
301/// specifies the instruction information for the node, and IIOpNum is the
302/// operand number (in the II) that we are adding. IIOpNum and II are used for
303/// assertions only.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000304void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op,
305 unsigned IIOpNum,
306 const TargetInstrDesc *II,
307 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000308 if (Op.isMachineOpcode()) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000309 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000310 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerd8429622009-09-08 23:05:44 +0000311 MI->addOperand(MachineOperand::CreateImm(C->getSExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000312 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000313 const ConstantFP *CFP = F->getConstantFPValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000314 MI->addOperand(MachineOperand::CreateFPImm(CFP));
315 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Dale Johannesen86b49f82008-09-24 01:07:17 +0000316 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000317 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000318 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(),
319 TGA->getTargetFlags()));
Dan Gohmanf8c73942009-04-13 15:38:05 +0000320 } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) {
321 MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000322 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
323 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
324 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
Chris Lattner6ec66db2009-06-26 05:52:14 +0000325 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
326 JT->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000327 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
328 int Offset = CP->getOffset();
329 unsigned Align = CP->getAlignment();
330 const Type *Type = CP->getType();
331 // MachineConstantPool wants an explicit alignment.
332 if (Align == 0) {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000333 Align = TM->getTargetData()->getPrefTypeAlignment(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000334 if (Align == 0) {
335 // Alignment of vector types. FIXME!
Dan Gohmanbcea8592009-10-10 01:32:21 +0000336 Align = TM->getTargetData()->getTypeAllocSize(Type);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000337 }
338 }
339
340 unsigned Idx;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000341 MachineConstantPool *MCP = MF->getConstantPool();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000342 if (CP->isMachineConstantPoolEntry())
Dan Gohmanbcea8592009-10-10 01:32:21 +0000343 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000344 else
Dan Gohmanbcea8592009-10-10 01:32:21 +0000345 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner6ec66db2009-06-26 05:52:14 +0000346 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset,
347 CP->getTargetFlags()));
Bill Wendling056292f2008-09-16 21:48:12 +0000348 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
Daniel Dunbar31e2c7b2009-09-01 22:06:46 +0000349 MI->addOperand(MachineOperand::CreateES(ES->getSymbol(),
Chris Lattner6ec66db2009-06-26 05:52:14 +0000350 ES->getTargetFlags()));
Dan Gohman8c2b5252009-10-30 01:27:03 +0000351 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Dan Gohman29cbade2009-11-20 23:18:13 +0000352 MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(),
353 BA->getTargetFlags()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000354 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000355 assert(Op.getValueType() != MVT::Other &&
356 Op.getValueType() != MVT::Flag &&
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000357 "Chain and flag operands should occur at end of operand list!");
Dan Gohmanf8c73942009-04-13 15:38:05 +0000358 AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap);
359 }
360}
361
Dan Gohmanf8c73942009-04-13 15:38:05 +0000362/// getSuperRegisterRegClass - Returns the register class of a superreg A whose
363/// "SubIdx"'th sub-register class is the specified register class and whose
364/// type matches the specified type.
365static const TargetRegisterClass*
366getSuperRegisterRegClass(const TargetRegisterClass *TRC,
Owen Andersone50ed302009-08-10 22:56:29 +0000367 unsigned SubIdx, EVT VT) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000368 // Pick the register class of the superegister for this type
369 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
370 E = TRC->superregclasses_end(); I != E; ++I)
Jakob Stoklund Olesenfa4677b2009-04-28 16:34:09 +0000371 if ((*I)->hasType(VT) && (*I)->getSubRegisterRegClass(SubIdx) == TRC)
Dan Gohmanf8c73942009-04-13 15:38:05 +0000372 return *I;
373 assert(false && "Couldn't find the register class");
374 return 0;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000375}
376
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000377/// EmitSubregNode - Generate machine code for subreg nodes.
378///
Dan Gohmanbcea8592009-10-10 01:32:21 +0000379void InstrEmitter::EmitSubregNode(SDNode *Node,
380 DenseMap<SDValue, unsigned> &VRBaseMap){
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000381 unsigned VRBase = 0;
382 unsigned Opc = Node->getMachineOpcode();
383
384 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
385 // the CopyToReg'd destination register instead of creating a new vreg.
386 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
387 UI != E; ++UI) {
388 SDNode *User = *UI;
389 if (User->getOpcode() == ISD::CopyToReg &&
390 User->getOperand(2).getNode() == Node) {
391 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
392 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
393 VRBase = DestReg;
394 break;
395 }
396 }
397 }
398
Chris Lattner518bb532010-02-09 19:54:29 +0000399 if (Opc == TargetOpcode::EXTRACT_SUBREG) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000400 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000401
402 // Create the extract_subreg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000403 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000404 TII->get(TargetOpcode::EXTRACT_SUBREG));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000405
406 // Figure out the register class to create for the destreg.
Dan Gohmanf8c73942009-04-13 15:38:05 +0000407 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000408 const TargetRegisterClass *TRC = MRI->getRegClass(VReg);
Jakob Stoklund Olesenfa4677b2009-04-28 16:34:09 +0000409 const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx);
410 assert(SRC && "Invalid subregister index in EXTRACT_SUBREG");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000411
Dan Gohman5ec3b422009-04-14 22:17:14 +0000412 // Figure out the register class to create for the destreg.
413 // Note that if we're going to directly use an existing register,
414 // it must be precisely the required class, and not a subclass
415 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000416 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000417 // Create the reg
418 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000419 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000420 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000421
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000422 // Add def, source, and subreg index
423 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
424 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
425 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000426 MBB->insert(InsertPos, MI);
Chris Lattner518bb532010-02-09 19:54:29 +0000427 } else if (Opc == TargetOpcode::INSERT_SUBREG ||
428 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000429 SDValue N0 = Node->getOperand(0);
430 SDValue N1 = Node->getOperand(1);
431 SDValue N2 = Node->getOperand(2);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000432 unsigned SubReg = getVR(N1, VRBaseMap);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000433 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
Dan Gohmanbcea8592009-10-10 01:32:21 +0000434 const TargetRegisterClass *TRC = MRI->getRegClass(SubReg);
Dan Gohman5ec3b422009-04-14 22:17:14 +0000435 const TargetRegisterClass *SRC =
436 getSuperRegisterRegClass(TRC, SubIdx,
437 Node->getValueType(0));
438
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000439 // Figure out the register class to create for the destreg.
Dan Gohman5ec3b422009-04-14 22:17:14 +0000440 // Note that if we're going to directly use an existing register,
441 // it must be precisely the required class, and not a subclass
442 // thereof.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000443 if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) {
Dan Gohman5ec3b422009-04-14 22:17:14 +0000444 // Create the reg
445 assert(SRC && "Couldn't find source register class");
Dan Gohmanbcea8592009-10-10 01:32:21 +0000446 VRBase = MRI->createVirtualRegister(SRC);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000447 }
Dan Gohman5ec3b422009-04-14 22:17:14 +0000448
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000449 // Create the insert_subreg or subreg_to_reg machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000450 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000451 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
452
453 // If creating a subreg_to_reg, then the first input operand
454 // is an implicit value immediate, otherwise it's a register
Chris Lattner518bb532010-02-09 19:54:29 +0000455 if (Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000456 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000457 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000458 } else
459 AddOperand(MI, N0, 0, 0, VRBaseMap);
460 // Add the subregster being inserted
461 AddOperand(MI, N1, 0, 0, VRBaseMap);
462 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Dan Gohmanbcea8592009-10-10 01:32:21 +0000463 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000464 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000465 llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000466
467 SDValue Op(Node, 0);
468 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
469 isNew = isNew; // Silence compiler warning.
470 assert(isNew && "Node emitted out of order - early");
471}
472
Dan Gohman88c7af02009-04-13 21:06:25 +0000473/// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes.
474/// COPY_TO_REGCLASS is just a normal copy, except that the destination
Dan Gohmanf8c73942009-04-13 15:38:05 +0000475/// register is constrained to be in a particular register class.
476///
477void
Dan Gohmanbcea8592009-10-10 01:32:21 +0000478InstrEmitter::EmitCopyToRegClassNode(SDNode *Node,
479 DenseMap<SDValue, unsigned> &VRBaseMap) {
Dan Gohmanf8c73942009-04-13 15:38:05 +0000480 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Dan Gohmanbcea8592009-10-10 01:32:21 +0000481 const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000482
483 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
484 const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx);
485
Dan Gohmanf8c73942009-04-13 15:38:05 +0000486 // Create the new VReg in the destination class and emit a copy.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000487 unsigned NewVReg = MRI->createVirtualRegister(DstRC);
488 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg,
Dan Gohmanf8c73942009-04-13 15:38:05 +0000489 DstRC, SrcRC);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000490 assert(Emitted &&
Dan Gohman88c7af02009-04-13 21:06:25 +0000491 "Unable to issue a copy instruction for a COPY_TO_REGCLASS node!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000492 (void) Emitted;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000493
494 SDValue Op(Node, 0);
495 bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
496 isNew = isNew; // Silence compiler warning.
497 assert(isNew && "Node emitted out of order - early");
498}
499
Dan Gohman552c0df2009-11-16 20:35:59 +0000500/// EmitNode - Generate machine code for a node and needed dependencies.
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000501///
Dan Gohmanbcea8592009-10-10 01:32:21 +0000502void InstrEmitter::EmitNode(SDNode *Node, bool IsClone, bool IsCloned,
503 DenseMap<SDValue, unsigned> &VRBaseMap,
Evan Chengfb2e7522009-09-18 21:02:19 +0000504 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000505 // If machine instruction
506 if (Node->isMachineOpcode()) {
507 unsigned Opc = Node->getMachineOpcode();
508
509 // Handle subreg insert/extract specially
Chris Lattner518bb532010-02-09 19:54:29 +0000510 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
511 Opc == TargetOpcode::INSERT_SUBREG ||
512 Opc == TargetOpcode::SUBREG_TO_REG) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000513 EmitSubregNode(Node, VRBaseMap);
514 return;
515 }
516
Dan Gohman88c7af02009-04-13 21:06:25 +0000517 // Handle COPY_TO_REGCLASS specially.
Chris Lattner518bb532010-02-09 19:54:29 +0000518 if (Opc == TargetOpcode::COPY_TO_REGCLASS) {
Dan Gohman88c7af02009-04-13 21:06:25 +0000519 EmitCopyToRegClassNode(Node, VRBaseMap);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000520 return;
521 }
522
Chris Lattner518bb532010-02-09 19:54:29 +0000523 if (Opc == TargetOpcode::IMPLICIT_DEF)
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000524 // We want a unique VR for each IMPLICIT_DEF use.
525 return;
526
527 const TargetInstrDesc &II = TII->get(Opc);
528 unsigned NumResults = CountResults(Node);
529 unsigned NodeOperands = CountOperands(Node);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000530 bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
531 II.getImplicitDefs() != 0;
532#ifndef NDEBUG
533 unsigned NumMIOperands = NodeOperands + NumResults;
534 assert((II.getNumOperands() == NumMIOperands ||
535 HasPhysRegOuts || II.isVariadic()) &&
536 "#operands for dag node doesn't match .td file!");
537#endif
538
539 // Create the new machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000540 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000541
542 // Add result register values for things that are defined by this
543 // instruction.
544 if (NumResults)
Evan Chenge57187c2009-01-16 20:57:18 +0000545 CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000546
547 // Emit all of the actual operands of this instruction, adding them to the
548 // instruction as appropriate.
Evan Cheng8955e932009-07-11 01:06:50 +0000549 bool HasOptPRefs = II.getNumDefs() > NumResults;
550 assert((!HasOptPRefs || !HasPhysRegOuts) &&
551 "Unable to cope with optional defs and phys regs defs!");
552 unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0;
553 for (unsigned i = NumSkip; i != NodeOperands; ++i)
554 AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II,
555 VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000556
Dan Gohmanc76909a2009-09-25 20:36:54 +0000557 // Transfer all of the memory reference descriptions of this instruction.
558 MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(),
559 cast<MachineSDNode>(Node)->memoperands_end());
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000560
Dan Gohman533297b2009-10-29 18:10:34 +0000561 if (II.usesCustomInsertionHook()) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000562 // Insert this instruction into the basic block using a target
563 // specific inserter which may returns a new basic block.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000564 MBB = TLI->EmitInstrWithCustomInserter(MI, MBB, EM);
565 InsertPos = MBB->end();
Bill Wendlingf2ad58d2009-02-03 01:02:39 +0000566 } else {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000567 MBB->insert(InsertPos, MI);
Bill Wendlingf2ad58d2009-02-03 01:02:39 +0000568 }
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000569
570 // Additional results must be an physical register def.
571 if (HasPhysRegOuts) {
572 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
573 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
574 if (Node->hasAnyUseOfValue(i))
Evan Chenge57187c2009-01-16 20:57:18 +0000575 EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
Dan Gohman4cddfd92009-10-30 23:57:47 +0000576 // If there are no uses, mark the register as dead now, so that
577 // MachineLICM/Sink can see that it's dead. Don't do this if the
578 // node has a Flag value, for the benefit of targets still using
579 // Flag for values in physregs.
580 else if (Node->getValueType(Node->getNumValues()-1) != MVT::Flag)
Dan Gohmana104d1e2009-10-28 01:13:53 +0000581 MI->addRegisterDead(Reg, TRI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000582 }
583 }
584 return;
585 }
586
587 switch (Node->getOpcode()) {
588 default:
589#ifndef NDEBUG
Dan Gohmanbcea8592009-10-10 01:32:21 +0000590 Node->dump();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000591#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000592 llvm_unreachable("This target-independent node should have been selected!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000593 break;
594 case ISD::EntryToken:
Torok Edwinc23197a2009-07-14 16:55:14 +0000595 llvm_unreachable("EntryToken should have been excluded from the schedule!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000596 break;
Evan Cheng37b73872009-07-30 08:33:02 +0000597 case ISD::MERGE_VALUES:
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000598 case ISD::TokenFactor: // fall thru
599 break;
600 case ISD::CopyToReg: {
601 unsigned SrcReg;
602 SDValue SrcVal = Node->getOperand(2);
603 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
604 SrcReg = R->getReg();
605 else
606 SrcReg = getVR(SrcVal, VRBaseMap);
607
608 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
609 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
610 break;
611
612 const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
613 // Get the register classes of the src/dst.
614 if (TargetRegisterInfo::isVirtualRegister(SrcReg))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000615 SrcTRC = MRI->getRegClass(SrcReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000616 else
617 SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
618
619 if (TargetRegisterInfo::isVirtualRegister(DestReg))
Dan Gohmanbcea8592009-10-10 01:32:21 +0000620 DstTRC = MRI->getRegClass(DestReg);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000621 else
622 DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
623 Node->getOperand(1).getValueType());
Dan Gohmanf8c73942009-04-13 15:38:05 +0000624
Dan Gohmanbcea8592009-10-10 01:32:21 +0000625 bool Emitted = TII->copyRegToReg(*MBB, InsertPos, DestReg, SrcReg,
Dan Gohman47ac0f02009-02-11 04:27:20 +0000626 DstTRC, SrcTRC);
Dan Gohmanf8c73942009-04-13 15:38:05 +0000627 assert(Emitted && "Unable to issue a copy instruction!\n");
Daniel Dunbar8c562e22009-05-18 16:43:04 +0000628 (void) Emitted;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000629 break;
630 }
631 case ISD::CopyFromReg: {
632 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Chenge57187c2009-01-16 20:57:18 +0000633 EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000634 break;
635 }
636 case ISD::INLINEASM: {
637 unsigned NumOps = Node->getNumOperands();
Owen Anderson825b72b2009-08-11 20:47:22 +0000638 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000639 --NumOps; // Ignore the flag operand.
640
641 // Create the inline asm machine instruction.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000642 MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(),
Chris Lattner518bb532010-02-09 19:54:29 +0000643 TII->get(TargetOpcode::INLINEASM));
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000644
645 // Add the asm string as an external symbol operand.
Bill Wendling056292f2008-09-16 21:48:12 +0000646 const char *AsmStr =
647 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000648 MI->addOperand(MachineOperand::CreateES(AsmStr));
649
650 // Add all of the operand registers to the instruction.
651 for (unsigned i = 2; i != NumOps;) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000652 unsigned Flags =
653 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000654 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000655
656 MI->addOperand(MachineOperand::CreateImm(Flags));
657 ++i; // Skip the ID value.
658
659 switch (Flags & 7) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000660 default: llvm_unreachable("Bad flags!");
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000661 case 2: // Def of register.
662 for (; NumVals; --NumVals, ++i) {
663 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
664 MI->addOperand(MachineOperand::CreateReg(Reg, true));
665 }
666 break;
Dale Johannesen913d3df2008-09-12 17:49:03 +0000667 case 6: // Def of earlyclobber register.
668 for (; NumVals; --NumVals, ++i) {
669 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
670 MI->addOperand(MachineOperand::CreateReg(Reg, true, false, false,
Evan Cheng4784f1f2009-06-30 08:49:04 +0000671 false, false, true));
Dale Johannesen913d3df2008-09-12 17:49:03 +0000672 }
673 break;
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000674 case 1: // Use of register.
675 case 3: // Immediate.
676 case 4: // Addressing mode.
677 // The addressing mode has been selected, just add all of the
678 // operands to the machine instruction.
679 for (; NumVals; --NumVals, ++i)
Dale Johannesen86b49f82008-09-24 01:07:17 +0000680 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000681 break;
682 }
683 }
Dan Gohmanbcea8592009-10-10 01:32:21 +0000684 MBB->insert(InsertPos, MI);
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000685 break;
686 }
687 }
688}
689
Dan Gohmanbcea8592009-10-10 01:32:21 +0000690/// InstrEmitter - Construct an InstrEmitter and set it to start inserting
691/// at the given position in the given block.
692InstrEmitter::InstrEmitter(MachineBasicBlock *mbb,
693 MachineBasicBlock::iterator insertpos)
694 : MF(mbb->getParent()),
695 MRI(&MF->getRegInfo()),
696 TM(&MF->getTarget()),
697 TII(TM->getInstrInfo()),
698 TRI(TM->getRegisterInfo()),
699 TLI(TM->getTargetLowering()),
700 MBB(mbb), InsertPos(insertpos) {
Dan Gohman94b8d7e2008-09-03 16:01:59 +0000701}