blob: 00b5677879fbc2e7762c81c0530600e275884e97 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===---- ScheduleDAG.cpp - Implement the ScheduleDAG class ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements a simple two pass scheduler. The first pass attempts to push
11// backward any lengthy instructions and critical paths. The second pass packs
12// instructions into semi-optimal time slots.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "pre-RA-sched"
Nate Begemane2ba64f2008-02-14 08:57:00 +000017#include "llvm/Constants.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/Type.h"
19#include "llvm/CodeGen/ScheduleDAG.h"
20#include "llvm/CodeGen/MachineConstantPool.h"
21#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng19da42d2008-04-03 16:36:07 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/Target/TargetData.h"
25#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetLowering.h"
Evan Cheng7f6ade32008-02-28 07:40:24 +000028#include "llvm/ADT/Statistic.h"
Evan Cheng8725a112008-03-12 22:19:41 +000029#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/Support/Debug.h"
31#include "llvm/Support/MathExtras.h"
32using namespace llvm;
33
Evan Cheng7f6ade32008-02-28 07:40:24 +000034STATISTIC(NumCommutes, "Number of instructions commuted");
35
Evan Cheng8725a112008-03-12 22:19:41 +000036namespace {
37 static cl::opt<bool>
38 SchedLiveInCopies("schedule-livein-copies",
39 cl::desc("Schedule copies of livein registers"),
40 cl::init(false));
41}
42
Chris Lattner1b989192007-12-31 04:13:23 +000043ScheduleDAG::ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
44 const TargetMachine &tm)
Evan Cheng8725a112008-03-12 22:19:41 +000045 : DAG(dag), BB(bb), TM(tm), MRI(BB->getParent()->getRegInfo()) {
Evan Cheng19da42d2008-04-03 16:36:07 +000046 TII = TM.getInstrInfo();
47 MF = &DAG.getMachineFunction();
48 TRI = TM.getRegisterInfo();
49 TLI = &DAG.getTargetLoweringInfo();
50 ConstPool = BB->getParent()->getConstantPool();
Chris Lattner1b989192007-12-31 04:13:23 +000051}
Evan Cheng93f143e2007-09-25 01:54:36 +000052
Evan Cheng93f143e2007-09-25 01:54:36 +000053/// CheckForPhysRegDependency - Check if the dependency between def and use of
54/// a specified operand is a physical register dependency. If so, returns the
55/// register and the cost of copying the register.
56static void CheckForPhysRegDependency(SDNode *Def, SDNode *Use, unsigned Op,
Dan Gohman1e57df32008-02-10 18:45:23 +000057 const TargetRegisterInfo *TRI,
Evan Cheng93f143e2007-09-25 01:54:36 +000058 const TargetInstrInfo *TII,
59 unsigned &PhysReg, int &Cost) {
60 if (Op != 2 || Use->getOpcode() != ISD::CopyToReg)
61 return;
62
63 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +000064 if (TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng93f143e2007-09-25 01:54:36 +000065 return;
66
67 unsigned ResNo = Use->getOperand(2).ResNo;
68 if (Def->isTargetOpcode()) {
Chris Lattner5b930372008-01-07 07:27:27 +000069 const TargetInstrDesc &II = TII->get(Def->getTargetOpcode());
Chris Lattner0c2a4f32008-01-07 03:13:06 +000070 if (ResNo >= II.getNumDefs() &&
71 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
Evan Cheng93f143e2007-09-25 01:54:36 +000072 PhysReg = Reg;
73 const TargetRegisterClass *RC =
Evan Cheng14cc83f2008-03-11 07:19:34 +000074 TRI->getPhysicalRegisterRegClass(Reg, Def->getValueType(ResNo));
Evan Cheng93f143e2007-09-25 01:54:36 +000075 Cost = RC->getCopyCost();
76 }
77 }
78}
79
80SUnit *ScheduleDAG::Clone(SUnit *Old) {
81 SUnit *SU = NewSUnit(Old->Node);
Dan Gohmanb100d802008-03-10 23:48:14 +000082 SU->FlaggedNodes = Old->FlaggedNodes;
Evan Cheng93f143e2007-09-25 01:54:36 +000083 SU->InstanceNo = SUnitMap[Old->Node].size();
84 SU->Latency = Old->Latency;
85 SU->isTwoAddress = Old->isTwoAddress;
86 SU->isCommutable = Old->isCommutable;
Evan Chengba597da2007-09-28 22:32:30 +000087 SU->hasPhysRegDefs = Old->hasPhysRegDefs;
Evan Cheng93f143e2007-09-25 01:54:36 +000088 SUnitMap[Old->Node].push_back(SU);
89 return SU;
90}
91
Evan Chengdd3f8b92007-10-05 01:39:18 +000092
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093/// BuildSchedUnits - Build SUnits from the selection dag that we are input.
94/// This SUnit graph is similar to the SelectionDAG, but represents flagged
95/// together nodes with a single SUnit.
96void ScheduleDAG::BuildSchedUnits() {
97 // Reserve entries in the vector for each of the SUnits we are creating. This
98 // ensure that reallocation of the vector won't happen, so SUnit*'s won't get
99 // invalidated.
100 SUnits.reserve(std::distance(DAG.allnodes_begin(), DAG.allnodes_end()));
101
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 for (SelectionDAG::allnodes_iterator NI = DAG.allnodes_begin(),
103 E = DAG.allnodes_end(); NI != E; ++NI) {
104 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate.
105 continue;
106
107 // If this node has already been processed, stop now.
Evan Cheng93f143e2007-09-25 01:54:36 +0000108 if (SUnitMap[NI].size()) continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109
110 SUnit *NodeSUnit = NewSUnit(NI);
111
112 // See if anything is flagged to this node, if so, add them to flagged
113 // nodes. Nodes can have at most one flag input and one flag output. Flags
114 // are required the be the last operand and result of a node.
115
116 // Scan up, adding flagged preds to FlaggedNodes.
117 SDNode *N = NI;
118 if (N->getNumOperands() &&
119 N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Flag) {
120 do {
121 N = N->getOperand(N->getNumOperands()-1).Val;
122 NodeSUnit->FlaggedNodes.push_back(N);
Evan Cheng93f143e2007-09-25 01:54:36 +0000123 SUnitMap[N].push_back(NodeSUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 } while (N->getNumOperands() &&
125 N->getOperand(N->getNumOperands()-1).getValueType()== MVT::Flag);
126 std::reverse(NodeSUnit->FlaggedNodes.begin(),
127 NodeSUnit->FlaggedNodes.end());
128 }
129
130 // Scan down, adding this node and any flagged succs to FlaggedNodes if they
131 // have a user of the flag operand.
132 N = NI;
133 while (N->getValueType(N->getNumValues()-1) == MVT::Flag) {
134 SDOperand FlagVal(N, N->getNumValues()-1);
135
136 // There are either zero or one users of the Flag result.
137 bool HasFlagUse = false;
138 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
139 UI != E; ++UI)
Roman Levenstein05650fd2008-04-07 10:06:32 +0000140 if (FlagVal.isOperandOf(UI->getUser())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 HasFlagUse = true;
142 NodeSUnit->FlaggedNodes.push_back(N);
Evan Cheng93f143e2007-09-25 01:54:36 +0000143 SUnitMap[N].push_back(NodeSUnit);
Roman Levenstein05650fd2008-04-07 10:06:32 +0000144 N = UI->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 break;
146 }
147 if (!HasFlagUse) break;
148 }
149
150 // Now all flagged nodes are in FlaggedNodes and N is the bottom-most node.
151 // Update the SUnit
152 NodeSUnit->Node = N;
Evan Cheng93f143e2007-09-25 01:54:36 +0000153 SUnitMap[N].push_back(NodeSUnit);
Evan Chengdd3f8b92007-10-05 01:39:18 +0000154
155 ComputeLatency(NodeSUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 }
157
158 // Pass 2: add the preds, succs, etc.
159 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) {
160 SUnit *SU = &SUnits[su];
161 SDNode *MainNode = SU->Node;
162
163 if (MainNode->isTargetOpcode()) {
164 unsigned Opc = MainNode->getTargetOpcode();
Chris Lattner5b930372008-01-07 07:27:27 +0000165 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000166 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
Evan Cheng93f143e2007-09-25 01:54:36 +0000167 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 SU->isTwoAddress = true;
169 break;
170 }
171 }
Chris Lattnerd8529ab2008-01-07 06:42:05 +0000172 if (TID.isCommutable())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 SU->isCommutable = true;
174 }
175
176 // Find all predecessors and successors of the group.
177 // Temporarily add N to make code simpler.
178 SU->FlaggedNodes.push_back(MainNode);
179
180 for (unsigned n = 0, e = SU->FlaggedNodes.size(); n != e; ++n) {
181 SDNode *N = SU->FlaggedNodes[n];
Evan Chengba597da2007-09-28 22:32:30 +0000182 if (N->isTargetOpcode() &&
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000183 TII->get(N->getTargetOpcode()).getImplicitDefs() &&
184 CountResults(N) > TII->get(N->getTargetOpcode()).getNumDefs())
Evan Chengba597da2007-09-28 22:32:30 +0000185 SU->hasPhysRegDefs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186
187 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
188 SDNode *OpN = N->getOperand(i).Val;
189 if (isPassiveNode(OpN)) continue; // Not scheduled.
Evan Cheng93f143e2007-09-25 01:54:36 +0000190 SUnit *OpSU = SUnitMap[OpN].front();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 assert(OpSU && "Node has no SUnit!");
192 if (OpSU == SU) continue; // In the same group.
193
194 MVT::ValueType OpVT = N->getOperand(i).getValueType();
195 assert(OpVT != MVT::Flag && "Flagged nodes should be in same sunit!");
196 bool isChain = OpVT == MVT::Other;
Evan Cheng93f143e2007-09-25 01:54:36 +0000197
198 unsigned PhysReg = 0;
199 int Cost = 1;
200 // Determine if this is a physical register dependency.
Dan Gohman1e57df32008-02-10 18:45:23 +0000201 CheckForPhysRegDependency(OpN, N, i, TRI, TII, PhysReg, Cost);
Evan Cheng93f143e2007-09-25 01:54:36 +0000202 SU->addPred(OpSU, isChain, false, PhysReg, Cost);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 }
204 }
205
206 // Remove MainNode from FlaggedNodes again.
207 SU->FlaggedNodes.pop_back();
208 }
209
210 return;
211}
212
Evan Chengdd3f8b92007-10-05 01:39:18 +0000213void ScheduleDAG::ComputeLatency(SUnit *SU) {
214 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
215
216 // Compute the latency for the node. We use the sum of the latencies for
217 // all nodes flagged together into this SUnit.
218 if (InstrItins.isEmpty()) {
219 // No latency information.
220 SU->Latency = 1;
221 } else {
222 SU->Latency = 0;
223 if (SU->Node->isTargetOpcode()) {
Chris Lattner3d54fcd2008-01-07 02:46:03 +0000224 unsigned SchedClass =
225 TII->get(SU->Node->getTargetOpcode()).getSchedClass();
Dan Gohman12300e12008-03-25 21:45:14 +0000226 const InstrStage *S = InstrItins.begin(SchedClass);
227 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengdd3f8b92007-10-05 01:39:18 +0000228 for (; S != E; ++S)
229 SU->Latency += S->Cycles;
230 }
231 for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i) {
232 SDNode *FNode = SU->FlaggedNodes[i];
233 if (FNode->isTargetOpcode()) {
Chris Lattner3d54fcd2008-01-07 02:46:03 +0000234 unsigned SchedClass =TII->get(FNode->getTargetOpcode()).getSchedClass();
Dan Gohman12300e12008-03-25 21:45:14 +0000235 const InstrStage *S = InstrItins.begin(SchedClass);
236 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengdd3f8b92007-10-05 01:39:18 +0000237 for (; S != E; ++S)
238 SU->Latency += S->Cycles;
239 }
240 }
241 }
242}
243
Roman Levenstein1db9b822008-03-04 11:19:43 +0000244/// CalculateDepths - compute depths using algorithms for the longest
245/// paths in the DAG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246void ScheduleDAG::CalculateDepths() {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000247 unsigned DAGSize = SUnits.size();
248 std::vector<unsigned> InDegree(DAGSize);
249 std::vector<SUnit*> WorkList;
250 WorkList.reserve(DAGSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251
Roman Levenstein1db9b822008-03-04 11:19:43 +0000252 // Initialize the data structures
253 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
254 SUnit *SU = &SUnits[i];
255 int NodeNum = SU->NodeNum;
256 unsigned Degree = SU->Preds.size();
257 InDegree[NodeNum] = Degree;
258 SU->Depth = 0;
259
260 // Is it a node without dependencies?
261 if (Degree == 0) {
262 assert(SU->Preds.empty() && "SUnit should have no predecessors");
263 // Collect leaf nodes
264 WorkList.push_back(SU);
265 }
266 }
267
268 // Process nodes in the topological order
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 while (!WorkList.empty()) {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000270 SUnit *SU = WorkList.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 WorkList.pop_back();
Roman Levenstein1db9b822008-03-04 11:19:43 +0000272 unsigned &SUDepth = SU->Depth;
273
274 // Use dynamic programming:
275 // When current node is being processed, all of its dependencies
276 // are already processed.
277 // So, just iterate over all predecessors and take the longest path
278 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
279 I != E; ++I) {
280 unsigned PredDepth = I->Dep->Depth;
281 if (PredDepth+1 > SUDepth) {
282 SUDepth = PredDepth + 1;
283 }
284 }
285
286 // Update InDegrees of all nodes depending on current SUnit
287 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
288 I != E; ++I) {
289 SUnit *SU = I->Dep;
290 if (!--InDegree[SU->NodeNum])
291 // If all dependencies of the node are processed already,
292 // then the longest path for the node can be computed now
293 WorkList.push_back(SU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 }
295 }
296}
297
Roman Levenstein1db9b822008-03-04 11:19:43 +0000298/// CalculateHeights - compute heights using algorithms for the longest
299/// paths in the DAG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300void ScheduleDAG::CalculateHeights() {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000301 unsigned DAGSize = SUnits.size();
302 std::vector<unsigned> InDegree(DAGSize);
303 std::vector<SUnit*> WorkList;
304 WorkList.reserve(DAGSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305
Roman Levenstein1db9b822008-03-04 11:19:43 +0000306 // Initialize the data structures
307 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
308 SUnit *SU = &SUnits[i];
309 int NodeNum = SU->NodeNum;
310 unsigned Degree = SU->Succs.size();
311 InDegree[NodeNum] = Degree;
312 SU->Height = 0;
313
314 // Is it a node without dependencies?
315 if (Degree == 0) {
316 assert(SU->Succs.empty() && "Something wrong");
317 assert(WorkList.empty() && "Should be empty");
318 // Collect leaf nodes
319 WorkList.push_back(SU);
320 }
321 }
322
323 // Process nodes in the topological order
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324 while (!WorkList.empty()) {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000325 SUnit *SU = WorkList.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326 WorkList.pop_back();
Roman Levenstein1db9b822008-03-04 11:19:43 +0000327 unsigned &SUHeight = SU->Height;
328
329 // Use dynamic programming:
330 // When current node is being processed, all of its dependencies
331 // are already processed.
332 // So, just iterate over all successors and take the longest path
333 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
334 I != E; ++I) {
335 unsigned SuccHeight = I->Dep->Height;
336 if (SuccHeight+1 > SUHeight) {
337 SUHeight = SuccHeight + 1;
338 }
339 }
340
341 // Update InDegrees of all nodes depending on current SUnit
342 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
343 I != E; ++I) {
344 SUnit *SU = I->Dep;
345 if (!--InDegree[SU->NodeNum])
346 // If all dependencies of the node are processed already,
347 // then the longest path for the node can be computed now
348 WorkList.push_back(SU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 }
350 }
351}
352
353/// CountResults - The results of target nodes have register or immediate
354/// operands first, then an optional chain, and optional flag operands (which do
Dan Gohman0256f1e2008-02-11 19:00:03 +0000355/// not go into the resulting MachineInstr).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356unsigned ScheduleDAG::CountResults(SDNode *Node) {
357 unsigned N = Node->getNumValues();
358 while (N && Node->getValueType(N - 1) == MVT::Flag)
359 --N;
360 if (N && Node->getValueType(N - 1) == MVT::Other)
361 --N; // Skip over chain result.
362 return N;
363}
364
Dan Gohman12a9c082008-02-06 22:27:42 +0000365/// CountOperands - The inputs to target nodes have any actual inputs first,
Dan Gohmance256462008-02-16 00:36:48 +0000366/// followed by special operands that describe memory references, then an
367/// optional chain operand, then flag operands. Compute the number of
368/// actual operands that will go into the resulting MachineInstr.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369unsigned ScheduleDAG::CountOperands(SDNode *Node) {
Dan Gohmance256462008-02-16 00:36:48 +0000370 unsigned N = ComputeMemOperandsEnd(Node);
Dan Gohman206208c2008-02-11 19:00:34 +0000371 while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
Dan Gohman12a9c082008-02-06 22:27:42 +0000372 --N; // Ignore MemOperand nodes
373 return N;
374}
375
Dan Gohmance256462008-02-16 00:36:48 +0000376/// ComputeMemOperandsEnd - Find the index one past the last MemOperandSDNode
377/// operand
378unsigned ScheduleDAG::ComputeMemOperandsEnd(SDNode *Node) {
Dan Gohman12a9c082008-02-06 22:27:42 +0000379 unsigned N = Node->getNumOperands();
380 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
381 --N;
382 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
383 --N; // Ignore chain if it exists.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384 return N;
385}
386
387static const TargetRegisterClass *getInstrOperandRegClass(
Dan Gohman1e57df32008-02-10 18:45:23 +0000388 const TargetRegisterInfo *TRI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 const TargetInstrInfo *TII,
Chris Lattner5b930372008-01-07 07:27:27 +0000390 const TargetInstrDesc &II,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 unsigned Op) {
Chris Lattner5b930372008-01-07 07:27:27 +0000392 if (Op >= II.getNumOperands()) {
393 assert(II.isVariadic() && "Invalid operand # of instruction");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 return NULL;
395 }
Chris Lattner5b930372008-01-07 07:27:27 +0000396 if (II.OpInfo[Op].isLookupPtrRegClass())
Chris Lattnereeedb482008-01-07 02:39:19 +0000397 return TII->getPointerRegClass();
Dan Gohman1e57df32008-02-10 18:45:23 +0000398 return TRI->getRegClass(II.OpInfo[Op].RegClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399}
400
Evan Cheng93f143e2007-09-25 01:54:36 +0000401void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
402 unsigned InstanceNo, unsigned SrcReg,
Roman Levenstein05650fd2008-04-07 10:06:32 +0000403 DenseMap<SDOperandImpl, unsigned> &VRBaseMap) {
Evan Cheng26639782007-08-02 00:28:15 +0000404 unsigned VRBase = 0;
Dan Gohman1e57df32008-02-10 18:45:23 +0000405 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Cheng26639782007-08-02 00:28:15 +0000406 // Just use the input register directly!
Evan Cheng93f143e2007-09-25 01:54:36 +0000407 if (InstanceNo > 0)
408 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng26639782007-08-02 00:28:15 +0000409 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo),SrcReg));
410 assert(isNew && "Node emitted out of order - early");
411 return;
412 }
413
414 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
415 // the CopyToReg'd destination register instead of creating a new vreg.
Evan Cheng93f143e2007-09-25 01:54:36 +0000416 bool MatchReg = true;
Evan Cheng26639782007-08-02 00:28:15 +0000417 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
418 UI != E; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +0000419 SDNode *Use = UI->getUser();
Evan Cheng93f143e2007-09-25 01:54:36 +0000420 bool Match = true;
Evan Cheng26639782007-08-02 00:28:15 +0000421 if (Use->getOpcode() == ISD::CopyToReg &&
422 Use->getOperand(2).Val == Node &&
423 Use->getOperand(2).ResNo == ResNo) {
424 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000425 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Evan Cheng26639782007-08-02 00:28:15 +0000426 VRBase = DestReg;
Evan Cheng93f143e2007-09-25 01:54:36 +0000427 Match = false;
428 } else if (DestReg != SrcReg)
429 Match = false;
430 } else {
431 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
432 SDOperand Op = Use->getOperand(i);
Evan Cheng4f0345c2007-12-14 08:25:15 +0000433 if (Op.Val != Node || Op.ResNo != ResNo)
Evan Cheng93f143e2007-09-25 01:54:36 +0000434 continue;
435 MVT::ValueType VT = Node->getValueType(Op.ResNo);
436 if (VT != MVT::Other && VT != MVT::Flag)
437 Match = false;
Evan Cheng26639782007-08-02 00:28:15 +0000438 }
439 }
Evan Cheng93f143e2007-09-25 01:54:36 +0000440 MatchReg &= Match;
441 if (VRBase)
442 break;
Evan Cheng26639782007-08-02 00:28:15 +0000443 }
444
Chris Lattnere6fdb062008-03-09 08:49:15 +0000445 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Evan Cheng14cc83f2008-03-11 07:19:34 +0000446 SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, Node->getValueType(ResNo));
Chris Lattnere6fdb062008-03-09 08:49:15 +0000447
Evan Cheng93f143e2007-09-25 01:54:36 +0000448 // Figure out the register class to create for the destreg.
Chris Lattnere6fdb062008-03-09 08:49:15 +0000449 if (VRBase) {
Evan Cheng8725a112008-03-12 22:19:41 +0000450 DstRC = MRI.getRegClass(VRBase);
Chris Lattnere6fdb062008-03-09 08:49:15 +0000451 } else {
Evan Cheng19da42d2008-04-03 16:36:07 +0000452 DstRC = TLI->getRegClassFor(Node->getValueType(ResNo));
Chris Lattnere6fdb062008-03-09 08:49:15 +0000453 }
Evan Cheng93f143e2007-09-25 01:54:36 +0000454
455 // If all uses are reading from the src physical register and copying the
456 // register is either impossible or very expensive, then don't create a copy.
Chris Lattnere6fdb062008-03-09 08:49:15 +0000457 if (MatchReg && SrcRC->getCopyCost() < 0) {
Evan Cheng93f143e2007-09-25 01:54:36 +0000458 VRBase = SrcReg;
459 } else {
Evan Cheng26639782007-08-02 00:28:15 +0000460 // Create the reg, emit the copy.
Evan Cheng8725a112008-03-12 22:19:41 +0000461 VRBase = MRI.createVirtualRegister(DstRC);
Chris Lattnere6fdb062008-03-09 08:49:15 +0000462 TII->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, DstRC, SrcRC);
Evan Cheng26639782007-08-02 00:28:15 +0000463 }
Evan Cheng26639782007-08-02 00:28:15 +0000464
Evan Cheng93f143e2007-09-25 01:54:36 +0000465 if (InstanceNo > 0)
466 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng26639782007-08-02 00:28:15 +0000467 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo), VRBase));
468 assert(isNew && "Node emitted out of order - early");
469}
470
Evan Cheng19da42d2008-04-03 16:36:07 +0000471/// getDstOfCopyToRegUse - If the only use of the specified result number of
472/// node is a CopyToReg, return its destination register. Return 0 otherwise.
473unsigned ScheduleDAG::getDstOfOnlyCopyToRegUse(SDNode *Node,
474 unsigned ResNo) const {
475 if (!Node->hasOneUse())
476 return 0;
477
Roman Levenstein05650fd2008-04-07 10:06:32 +0000478 SDNode *Use = Node->use_begin()->getUser();
Evan Cheng19da42d2008-04-03 16:36:07 +0000479 if (Use->getOpcode() == ISD::CopyToReg &&
480 Use->getOperand(2).Val == Node &&
481 Use->getOperand(2).ResNo == ResNo) {
482 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
483 if (TargetRegisterInfo::isVirtualRegister(Reg))
484 return Reg;
485 }
486 return 0;
487}
488
Evan Cheng3c0eda52008-03-15 00:03:38 +0000489void ScheduleDAG::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Cheng19da42d2008-04-03 16:36:07 +0000490 const TargetInstrDesc &II,
Roman Levenstein05650fd2008-04-07 10:06:32 +0000491 DenseMap<SDOperandImpl, unsigned> &VRBaseMap) {
Evan Cheng19da42d2008-04-03 16:36:07 +0000492 assert(Node->getTargetOpcode() != TargetInstrInfo::IMPLICIT_DEF &&
493 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
494
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000495 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 // If the specific node value is only used by a CopyToReg and the dest reg
497 // is a vreg, use the CopyToReg'd destination register instead of creating
498 // a new vreg.
499 unsigned VRBase = 0;
500 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
501 UI != E; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +0000502 SDNode *Use = UI->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 if (Use->getOpcode() == ISD::CopyToReg &&
504 Use->getOperand(2).Val == Node &&
505 Use->getOperand(2).ResNo == i) {
506 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000507 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 VRBase = Reg;
Chris Lattner63ab1f22007-12-30 00:41:17 +0000509 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 break;
511 }
512 }
513 }
514
Evan Cheng26639782007-08-02 00:28:15 +0000515 // Create the result registers for this node and add the result regs to
516 // the machine instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 if (VRBase == 0) {
Evan Cheng19da42d2008-04-03 16:36:07 +0000518 const TargetRegisterClass *RC = getInstrOperandRegClass(TRI, TII, II, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 assert(RC && "Isn't a register operand!");
Evan Cheng8725a112008-03-12 22:19:41 +0000520 VRBase = MRI.createVirtualRegister(RC);
Chris Lattner63ab1f22007-12-30 00:41:17 +0000521 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 }
523
524 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,i), VRBase));
525 assert(isNew && "Node emitted out of order - early");
526 }
527}
528
529/// getVR - Return the virtual register corresponding to the specified result
530/// of the specified node.
Evan Cheng19da42d2008-04-03 16:36:07 +0000531unsigned ScheduleDAG::getVR(SDOperand Op,
Roman Levenstein05650fd2008-04-07 10:06:32 +0000532 DenseMap<SDOperandImpl, unsigned> &VRBaseMap) {
Evan Cheng19da42d2008-04-03 16:36:07 +0000533 if (Op.isTargetOpcode() &&
534 Op.getTargetOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
535 // Add an IMPLICIT_DEF instruction before every use.
536 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.Val, Op.ResNo);
537 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
538 // does not include operand register class info.
539 if (!VReg) {
540 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
541 VReg = MRI.createVirtualRegister(RC);
542 }
543 BuildMI(BB, TII->get(TargetInstrInfo::IMPLICIT_DEF), VReg);
544 return VReg;
545 }
546
Roman Levenstein05650fd2008-04-07 10:06:32 +0000547 DenseMap<SDOperandImpl, unsigned>::iterator I = VRBaseMap.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
549 return I->second;
550}
551
552
553/// AddOperand - Add the specified operand to the specified machine instr. II
554/// specifies the instruction information for the node, and IIOpNum is the
555/// operand number (in the II) that we are adding. IIOpNum and II are used for
556/// assertions only.
557void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
558 unsigned IIOpNum,
Chris Lattner5b930372008-01-07 07:27:27 +0000559 const TargetInstrDesc *II,
Roman Levenstein05650fd2008-04-07 10:06:32 +0000560 DenseMap<SDOperandImpl, unsigned> &VRBaseMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 if (Op.isTargetOpcode()) {
562 // Note that this case is redundant with the final else block, but we
563 // include it because it is the most common and it makes the logic
564 // simpler here.
565 assert(Op.getValueType() != MVT::Other &&
566 Op.getValueType() != MVT::Flag &&
567 "Chain and flag operands should occur at end of operand list!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 // Get/emit the operand.
569 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner5b930372008-01-07 07:27:27 +0000570 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng19da42d2008-04-03 16:36:07 +0000571 bool isOptDef = IIOpNum < TID.getNumOperands() &&
572 TID.OpInfo[IIOpNum].isOptionalDef();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000573 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574
575 // Verify that it is right.
Dan Gohman1e57df32008-02-10 18:45:23 +0000576 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000577#ifndef NDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 if (II) {
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000579 // There may be no register class for this operand if it is a variadic
580 // argument (RC will be NULL in this case). In this case, we just assume
581 // the regclass is ok.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 const TargetRegisterClass *RC =
Dan Gohman1e57df32008-02-10 18:45:23 +0000583 getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
Chris Lattner92d51282008-03-11 03:14:42 +0000584 assert((RC || II->isVariadic()) && "Expected reg class info!");
Evan Cheng8725a112008-03-12 22:19:41 +0000585 const TargetRegisterClass *VRC = MRI.getRegClass(VReg);
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000586 if (RC && VRC != RC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000587 cerr << "Register class of operand and regclass of use don't agree!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 cerr << "Operand = " << IIOpNum << "\n";
589 cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n";
590 cerr << "MI = "; MI->print(cerr);
591 cerr << "VReg = " << VReg << "\n";
592 cerr << "VReg RegClass size = " << VRC->getSize()
593 << ", align = " << VRC->getAlignment() << "\n";
594 cerr << "Expected RegClass size = " << RC->getSize()
595 << ", align = " << RC->getAlignment() << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596 cerr << "Fatal error, aborting.\n";
597 abort();
598 }
599 }
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000600#endif
Chris Lattner8dfd3122007-12-30 00:51:11 +0000601 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000602 MI->addOperand(MachineOperand::CreateImm(C->getValue()));
Nate Begemane2ba64f2008-02-14 08:57:00 +0000603 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
604 const Type *FType = MVT::getTypeForValueType(Op.getValueType());
605 ConstantFP *CFP = ConstantFP::get(FType, F->getValueAPF());
606 MI->addOperand(MachineOperand::CreateFPImm(CFP));
Chris Lattner8dfd3122007-12-30 00:51:11 +0000607 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000608 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Chris Lattner8dfd3122007-12-30 00:51:11 +0000609 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
610 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(),TGA->getOffset()));
611 } else if (BasicBlockSDNode *BB = dyn_cast<BasicBlockSDNode>(Op)) {
612 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
613 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
614 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
615 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
616 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex()));
617 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 int Offset = CP->getOffset();
619 unsigned Align = CP->getAlignment();
620 const Type *Type = CP->getType();
621 // MachineConstantPool wants an explicit alignment.
622 if (Align == 0) {
623 Align = TM.getTargetData()->getPreferredTypeAlignmentShift(Type);
624 if (Align == 0) {
625 // Alignment of vector types. FIXME!
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000626 Align = TM.getTargetData()->getABITypeSize(Type);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 Align = Log2_64(Align);
628 }
629 }
630
631 unsigned Idx;
632 if (CP->isMachineConstantPoolEntry())
633 Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align);
634 else
635 Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000636 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
637 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
638 MI->addOperand(MachineOperand::CreateES(ES->getSymbol()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 } else {
640 assert(Op.getValueType() != MVT::Other &&
641 Op.getValueType() != MVT::Flag &&
642 "Chain and flag operands should occur at end of operand list!");
643 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner63ab1f22007-12-30 00:41:17 +0000644 MI->addOperand(MachineOperand::CreateReg(VReg, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645
Chris Lattnere6fdb062008-03-09 08:49:15 +0000646 // Verify that it is right. Note that the reg class of the physreg and the
647 // vreg don't necessarily need to match, but the target copy insertion has
648 // to be able to handle it. This handles things like copies from ST(0) to
649 // an FP vreg on x86.
Dan Gohman1e57df32008-02-10 18:45:23 +0000650 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattner92d51282008-03-11 03:14:42 +0000651 if (II && !II->isVariadic()) {
Chris Lattnere6fdb062008-03-09 08:49:15 +0000652 assert(getInstrOperandRegClass(TRI, TII, *II, IIOpNum) &&
653 "Don't have operand info for this instruction!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 }
655 }
656
657}
658
Dan Gohman12a9c082008-02-06 22:27:42 +0000659void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MemOperand &MO) {
660 MI->addMemOperand(MO);
661}
662
Christopher Lambe95328d2007-07-26 08:12:07 +0000663// Returns the Register Class of a subregister
664static const TargetRegisterClass *getSubRegisterRegClass(
665 const TargetRegisterClass *TRC,
666 unsigned SubIdx) {
667 // Pick the register class of the subregister
Dan Gohman1e57df32008-02-10 18:45:23 +0000668 TargetRegisterInfo::regclass_iterator I =
669 TRC->subregclasses_begin() + SubIdx-1;
Christopher Lambe95328d2007-07-26 08:12:07 +0000670 assert(I < TRC->subregclasses_end() &&
671 "Invalid subregister index for register class");
672 return *I;
673}
674
675static const TargetRegisterClass *getSuperregRegisterClass(
676 const TargetRegisterClass *TRC,
677 unsigned SubIdx,
678 MVT::ValueType VT) {
679 // Pick the register class of the superegister for this type
Dan Gohman1e57df32008-02-10 18:45:23 +0000680 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
Christopher Lambe95328d2007-07-26 08:12:07 +0000681 E = TRC->superregclasses_end(); I != E; ++I)
682 if ((*I)->hasType(VT) && getSubRegisterRegClass(*I, SubIdx) == TRC)
683 return *I;
684 assert(false && "Couldn't find the register class");
685 return 0;
686}
687
688/// EmitSubregNode - Generate machine code for subreg nodes.
689///
690void ScheduleDAG::EmitSubregNode(SDNode *Node,
Roman Levenstein05650fd2008-04-07 10:06:32 +0000691 DenseMap<SDOperandImpl, unsigned> &VRBaseMap) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000692 unsigned VRBase = 0;
693 unsigned Opc = Node->getTargetOpcode();
Christopher Lamb76d72da2008-03-16 03:12:01 +0000694
695 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
696 // the CopyToReg'd destination register instead of creating a new vreg.
697 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
698 UI != E; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +0000699 SDNode *Use = UI->getUser();
Christopher Lamb76d72da2008-03-16 03:12:01 +0000700 if (Use->getOpcode() == ISD::CopyToReg &&
701 Use->getOperand(2).Val == Node) {
702 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
703 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
704 VRBase = DestReg;
705 break;
Christopher Lambe95328d2007-07-26 08:12:07 +0000706 }
707 }
Christopher Lamb76d72da2008-03-16 03:12:01 +0000708 }
709
710 if (Opc == TargetInstrInfo::EXTRACT_SUBREG) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000711 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
Christopher Lambe95328d2007-07-26 08:12:07 +0000712
Christopher Lambe95328d2007-07-26 08:12:07 +0000713 // Create the extract_subreg machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000714 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::EXTRACT_SUBREG));
Christopher Lambe95328d2007-07-26 08:12:07 +0000715
716 // Figure out the register class to create for the destreg.
717 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng8725a112008-03-12 22:19:41 +0000718 const TargetRegisterClass *TRC = MRI.getRegClass(VReg);
Christopher Lambe95328d2007-07-26 08:12:07 +0000719 const TargetRegisterClass *SRC = getSubRegisterRegClass(TRC, SubIdx);
720
721 if (VRBase) {
722 // Grab the destination register
Evan Cheng8725a112008-03-12 22:19:41 +0000723 const TargetRegisterClass *DRC = MRI.getRegClass(VRBase);
Christopher Lambe08d9ec2008-01-31 07:09:08 +0000724 assert(SRC && DRC && SRC == DRC &&
Christopher Lambe95328d2007-07-26 08:12:07 +0000725 "Source subregister and destination must have the same class");
726 } else {
727 // Create the reg
Christopher Lambe08d9ec2008-01-31 07:09:08 +0000728 assert(SRC && "Couldn't find source register class");
Evan Cheng8725a112008-03-12 22:19:41 +0000729 VRBase = MRI.createVirtualRegister(SRC);
Christopher Lambe95328d2007-07-26 08:12:07 +0000730 }
731
732 // Add def, source, and subreg index
Chris Lattner63ab1f22007-12-30 00:41:17 +0000733 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambe95328d2007-07-26 08:12:07 +0000734 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000735 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng19da42d2008-04-03 16:36:07 +0000736 BB->push_back(MI);
Christopher Lamb76d72da2008-03-16 03:12:01 +0000737 } else if (Opc == TargetInstrInfo::INSERT_SUBREG ||
738 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000739 SDOperand N0 = Node->getOperand(0);
740 SDOperand N1 = Node->getOperand(1);
741 SDOperand N2 = Node->getOperand(2);
742 unsigned SubReg = getVR(N1, VRBaseMap);
743 unsigned SubIdx = cast<ConstantSDNode>(N2)->getValue();
Christopher Lambe95328d2007-07-26 08:12:07 +0000744
Christopher Lambe95328d2007-07-26 08:12:07 +0000745
746 // Figure out the register class to create for the destreg.
747 const TargetRegisterClass *TRC = 0;
748 if (VRBase) {
Evan Cheng8725a112008-03-12 22:19:41 +0000749 TRC = MRI.getRegClass(VRBase);
Christopher Lambe95328d2007-07-26 08:12:07 +0000750 } else {
Evan Cheng8725a112008-03-12 22:19:41 +0000751 TRC = getSuperregRegisterClass(MRI.getRegClass(SubReg), SubIdx,
Christopher Lambe95328d2007-07-26 08:12:07 +0000752 Node->getValueType(0));
753 assert(TRC && "Couldn't determine register class for insert_subreg");
Evan Cheng8725a112008-03-12 22:19:41 +0000754 VRBase = MRI.createVirtualRegister(TRC); // Create the reg
Christopher Lambe95328d2007-07-26 08:12:07 +0000755 }
756
Christopher Lamb76d72da2008-03-16 03:12:01 +0000757 // Create the insert_subreg or subreg_to_reg machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000758 MachineInstr *MI = BuildMI(TII->get(Opc));
Chris Lattner63ab1f22007-12-30 00:41:17 +0000759 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000760
Christopher Lamb76d72da2008-03-16 03:12:01 +0000761 // If creating a subreg_to_reg, then the first input operand
762 // is an implicit value immediate, otherwise it's a register
763 if (Opc == TargetInstrInfo::SUBREG_TO_REG) {
764 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000765 MI->addOperand(MachineOperand::CreateImm(SD->getValue()));
Christopher Lamb76d72da2008-03-16 03:12:01 +0000766 } else
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000767 AddOperand(MI, N0, 0, 0, VRBaseMap);
768 // Add the subregster being inserted
769 AddOperand(MI, N1, 0, 0, VRBaseMap);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000770 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng19da42d2008-04-03 16:36:07 +0000771 BB->push_back(MI);
Christopher Lambe95328d2007-07-26 08:12:07 +0000772 } else
Christopher Lamb76d72da2008-03-16 03:12:01 +0000773 assert(0 && "Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Christopher Lambe95328d2007-07-26 08:12:07 +0000774
775 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,0), VRBase));
776 assert(isNew && "Node emitted out of order - early");
777}
778
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779/// EmitNode - Generate machine code for an node and needed dependencies.
780///
Evan Cheng93f143e2007-09-25 01:54:36 +0000781void ScheduleDAG::EmitNode(SDNode *Node, unsigned InstanceNo,
Roman Levenstein05650fd2008-04-07 10:06:32 +0000782 DenseMap<SDOperandImpl, unsigned> &VRBaseMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000783 // If machine instruction
784 if (Node->isTargetOpcode()) {
785 unsigned Opc = Node->getTargetOpcode();
Christopher Lambe95328d2007-07-26 08:12:07 +0000786
787 // Handle subreg insert/extract specially
788 if (Opc == TargetInstrInfo::EXTRACT_SUBREG ||
Christopher Lamb76d72da2008-03-16 03:12:01 +0000789 Opc == TargetInstrInfo::INSERT_SUBREG ||
790 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000791 EmitSubregNode(Node, VRBaseMap);
792 return;
793 }
Evan Cheng19da42d2008-04-03 16:36:07 +0000794
795 if (Opc == TargetInstrInfo::IMPLICIT_DEF)
796 // We want a unique VR for each IMPLICIT_DEF use.
797 return;
Christopher Lambe95328d2007-07-26 08:12:07 +0000798
Chris Lattner5b930372008-01-07 07:27:27 +0000799 const TargetInstrDesc &II = TII->get(Opc);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 unsigned NumResults = CountResults(Node);
801 unsigned NodeOperands = CountOperands(Node);
Dan Gohmance256462008-02-16 00:36:48 +0000802 unsigned MemOperandsEnd = ComputeMemOperandsEnd(Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000804 bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
805 II.getImplicitDefs() != 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000806#ifndef NDEBUG
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000807 assert((II.getNumOperands() == NumMIOperands ||
Chris Lattner2fb37c02008-01-07 05:19:29 +0000808 HasPhysRegOuts || II.isVariadic()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 "#operands for dag node doesn't match .td file!");
810#endif
811
812 // Create the new machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000813 MachineInstr *MI = BuildMI(II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814
815 // Add result register values for things that are defined by this
816 // instruction.
817 if (NumResults)
Evan Cheng26639782007-08-02 00:28:15 +0000818 CreateVirtualRegisters(Node, MI, II, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819
820 // Emit all of the actual operands of this instruction, adding them to the
821 // instruction as appropriate.
822 for (unsigned i = 0; i != NodeOperands; ++i)
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000823 AddOperand(MI, Node->getOperand(i), i+II.getNumDefs(), &II, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824
Dan Gohman12a9c082008-02-06 22:27:42 +0000825 // Emit all of the memory operands of this instruction
Dan Gohmance256462008-02-16 00:36:48 +0000826 for (unsigned i = NodeOperands; i != MemOperandsEnd; ++i)
Dan Gohman12a9c082008-02-06 22:27:42 +0000827 AddMemOperand(MI, cast<MemOperandSDNode>(Node->getOperand(i))->MO);
828
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 // Commute node if it has been determined to be profitable.
830 if (CommuteSet.count(Node)) {
831 MachineInstr *NewMI = TII->commuteInstruction(MI);
832 if (NewMI == 0)
833 DOUT << "Sched: COMMUTING FAILED!\n";
834 else {
835 DOUT << "Sched: COMMUTED TO: " << *NewMI;
836 if (MI != NewMI) {
837 delete MI;
838 MI = NewMI;
839 }
Evan Cheng7f6ade32008-02-28 07:40:24 +0000840 ++NumCommutes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 }
842 }
843
Evan Chenga53c40a2008-02-01 09:10:45 +0000844 if (II.usesCustomDAGSchedInsertionHook())
Evan Cheng2d373922008-01-30 19:35:32 +0000845 // Insert this instruction into the basic block using a target
846 // specific inserter which may returns a new basic block.
Evan Cheng19da42d2008-04-03 16:36:07 +0000847 BB = TLI->EmitInstrWithCustomInserter(MI, BB);
Evan Cheng2d373922008-01-30 19:35:32 +0000848 else
849 BB->push_back(MI);
Evan Cheng26639782007-08-02 00:28:15 +0000850
851 // Additional results must be an physical register def.
852 if (HasPhysRegOuts) {
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000853 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
854 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Evan Cheng0af04f72007-08-02 05:29:38 +0000855 if (Node->hasAnyUseOfValue(i))
Evan Cheng93f143e2007-09-25 01:54:36 +0000856 EmitCopyFromReg(Node, i, InstanceNo, Reg, VRBaseMap);
Evan Cheng26639782007-08-02 00:28:15 +0000857 }
858 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859 } else {
860 switch (Node->getOpcode()) {
861 default:
862#ifndef NDEBUG
863 Node->dump(&DAG);
864#endif
865 assert(0 && "This target-independent node should have been selected!");
866 case ISD::EntryToken: // fall thru
867 case ISD::TokenFactor:
868 case ISD::LABEL:
Evan Cheng2e28d622008-02-02 04:07:54 +0000869 case ISD::DECLARE:
Dan Gohman12a9c082008-02-06 22:27:42 +0000870 case ISD::SRCVALUE:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 break;
872 case ISD::CopyToReg: {
Chris Lattner0d128722008-03-09 09:15:31 +0000873 unsigned SrcReg;
874 SDOperand SrcVal = Node->getOperand(2);
875 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
876 SrcReg = R->getReg();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 else
Chris Lattner0d128722008-03-09 09:15:31 +0000878 SrcReg = getVR(SrcVal, VRBaseMap);
879
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Chris Lattner0d128722008-03-09 09:15:31 +0000881 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
882 break;
883
884 const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
885 // Get the register classes of the src/dst.
886 if (TargetRegisterInfo::isVirtualRegister(SrcReg))
Evan Cheng8725a112008-03-12 22:19:41 +0000887 SrcTRC = MRI.getRegClass(SrcReg);
Chris Lattner0d128722008-03-09 09:15:31 +0000888 else
Evan Cheng14cc83f2008-03-11 07:19:34 +0000889 SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
Chris Lattner0d128722008-03-09 09:15:31 +0000890
891 if (TargetRegisterInfo::isVirtualRegister(DestReg))
Evan Cheng8725a112008-03-12 22:19:41 +0000892 DstTRC = MRI.getRegClass(DestReg);
Chris Lattner0d128722008-03-09 09:15:31 +0000893 else
Evan Cheng14cc83f2008-03-11 07:19:34 +0000894 DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
895 Node->getOperand(1).getValueType());
Chris Lattner0d128722008-03-09 09:15:31 +0000896 TII->copyRegToReg(*BB, BB->end(), DestReg, SrcReg, DstTRC, SrcTRC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 break;
898 }
899 case ISD::CopyFromReg: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000900 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Cheng93f143e2007-09-25 01:54:36 +0000901 EmitCopyFromReg(Node, 0, InstanceNo, SrcReg, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000902 break;
903 }
904 case ISD::INLINEASM: {
905 unsigned NumOps = Node->getNumOperands();
906 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
907 --NumOps; // Ignore the flag operand.
908
909 // Create the inline asm machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000910 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::INLINEASM));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911
912 // Add the asm string as an external symbol operand.
913 const char *AsmStr =
914 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
Chris Lattner8dfd3122007-12-30 00:51:11 +0000915 MI->addOperand(MachineOperand::CreateES(AsmStr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916
917 // Add all of the operand registers to the instruction.
918 for (unsigned i = 2; i != NumOps;) {
919 unsigned Flags = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
920 unsigned NumVals = Flags >> 3;
921
Chris Lattner8dfd3122007-12-30 00:51:11 +0000922 MI->addOperand(MachineOperand::CreateImm(Flags));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923 ++i; // Skip the ID value.
924
925 switch (Flags & 7) {
926 default: assert(0 && "Bad flags!");
927 case 1: // Use of register.
928 for (; NumVals; --NumVals, ++i) {
929 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000930 MI->addOperand(MachineOperand::CreateReg(Reg, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 }
932 break;
933 case 2: // Def of register.
934 for (; NumVals; --NumVals, ++i) {
935 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000936 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000937 }
938 break;
939 case 3: { // Immediate.
Chris Lattner23544c12007-08-25 00:53:07 +0000940 for (; NumVals; --NumVals, ++i) {
941 if (ConstantSDNode *CS =
942 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000943 MI->addOperand(MachineOperand::CreateImm(CS->getValue()));
Dale Johannesencfb19e62007-11-05 21:20:28 +0000944 } else if (GlobalAddressSDNode *GA =
945 dyn_cast<GlobalAddressSDNode>(Node->getOperand(i))) {
Chris Lattner8dfd3122007-12-30 00:51:11 +0000946 MI->addOperand(MachineOperand::CreateGA(GA->getGlobal(),
947 GA->getOffset()));
Dale Johannesencfb19e62007-11-05 21:20:28 +0000948 } else {
Chris Lattner8dfd3122007-12-30 00:51:11 +0000949 BasicBlockSDNode *BB =cast<BasicBlockSDNode>(Node->getOperand(i));
950 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
Chris Lattner23544c12007-08-25 00:53:07 +0000951 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000953 break;
954 }
955 case 4: // Addressing mode.
956 // The addressing mode has been selected, just add all of the
957 // operands to the machine instruction.
958 for (; NumVals; --NumVals, ++i)
959 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
960 break;
961 }
962 }
Evan Cheng19da42d2008-04-03 16:36:07 +0000963 BB->push_back(MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964 break;
965 }
966 }
967 }
968}
969
970void ScheduleDAG::EmitNoop() {
971 TII->insertNoop(*BB, BB->end());
972}
973
Chris Lattner4e15fcc2008-03-09 07:51:01 +0000974void ScheduleDAG::EmitCrossRCCopy(SUnit *SU,
975 DenseMap<SUnit*, unsigned> &VRBaseMap) {
Evan Cheng5ec4b762007-09-26 21:36:17 +0000976 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
977 I != E; ++I) {
978 if (I->isCtrl) continue; // ignore chain preds
979 if (!I->Dep->Node) {
980 // Copy to physical register.
981 DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->Dep);
982 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
983 // Find the destination physical register.
984 unsigned Reg = 0;
985 for (SUnit::const_succ_iterator II = SU->Succs.begin(),
986 EE = SU->Succs.end(); II != EE; ++II) {
987 if (I->Reg) {
988 Reg = I->Reg;
989 break;
990 }
991 }
992 assert(I->Reg && "Unknown physical register!");
Owen Anderson8f2c8932007-12-31 06:32:00 +0000993 TII->copyRegToReg(*BB, BB->end(), Reg, VRI->second,
Evan Cheng5ec4b762007-09-26 21:36:17 +0000994 SU->CopyDstRC, SU->CopySrcRC);
995 } else {
996 // Copy from physical register.
997 assert(I->Reg && "Unknown physical register!");
Evan Cheng8725a112008-03-12 22:19:41 +0000998 unsigned VRBase = MRI.createVirtualRegister(SU->CopyDstRC);
Evan Cheng5ec4b762007-09-26 21:36:17 +0000999 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase));
1000 assert(isNew && "Node emitted out of order - early");
Owen Anderson8f2c8932007-12-31 06:32:00 +00001001 TII->copyRegToReg(*BB, BB->end(), VRBase, I->Reg,
Evan Cheng5ec4b762007-09-26 21:36:17 +00001002 SU->CopyDstRC, SU->CopySrcRC);
1003 }
1004 break;
1005 }
1006}
1007
Evan Cheng8725a112008-03-12 22:19:41 +00001008/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
1009/// physical register has only a single copy use, then coalesced the copy
Evan Chenga96f9642008-03-14 00:14:55 +00001010/// if possible.
1011void ScheduleDAG::EmitLiveInCopy(MachineBasicBlock *MBB,
1012 MachineBasicBlock::iterator &InsertPos,
1013 unsigned VirtReg, unsigned PhysReg,
1014 const TargetRegisterClass *RC,
1015 DenseMap<MachineInstr*, unsigned> &CopyRegMap){
Evan Cheng8725a112008-03-12 22:19:41 +00001016 unsigned NumUses = 0;
1017 MachineInstr *UseMI = NULL;
1018 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
1019 UE = MRI.use_end(); UI != UE; ++UI) {
1020 UseMI = &*UI;
1021 if (++NumUses > 1)
1022 break;
1023 }
1024
1025 // If the number of uses is not one, or the use is not a move instruction,
Evan Chenga96f9642008-03-14 00:14:55 +00001026 // don't coalesce. Also, only coalesce away a virtual register to virtual
1027 // register copy.
1028 bool Coalesced = false;
Evan Cheng8725a112008-03-12 22:19:41 +00001029 unsigned SrcReg, DstReg;
Evan Chenga96f9642008-03-14 00:14:55 +00001030 if (NumUses == 1 &&
1031 TII->isMoveInstr(*UseMI, SrcReg, DstReg) &&
1032 TargetRegisterInfo::isVirtualRegister(DstReg)) {
1033 VirtReg = DstReg;
1034 Coalesced = true;
Evan Cheng8725a112008-03-12 22:19:41 +00001035 }
1036
Evan Chenga96f9642008-03-14 00:14:55 +00001037 // Now find an ideal location to insert the copy.
1038 MachineBasicBlock::iterator Pos = InsertPos;
1039 while (Pos != MBB->begin()) {
1040 MachineInstr *PrevMI = prior(Pos);
1041 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
1042 // copyRegToReg might emit multiple instructions to do a copy.
1043 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
1044 if (CopyDstReg && !TRI->regsOverlap(CopyDstReg, PhysReg))
1045 // This is what the BB looks like right now:
1046 // r1024 = mov r0
1047 // ...
1048 // r1 = mov r1024
1049 //
1050 // We want to insert "r1025 = mov r1". Inserting this copy below the
1051 // move to r1024 makes it impossible for that move to be coalesced.
1052 //
1053 // r1025 = mov r1
1054 // r1024 = mov r0
1055 // ...
1056 // r1 = mov 1024
1057 // r2 = mov 1025
1058 break; // Woot! Found a good location.
1059 --Pos;
1060 }
1061
1062 TII->copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
1063 CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
1064 if (Coalesced) {
Evan Cheng8725a112008-03-12 22:19:41 +00001065 if (&*InsertPos == UseMI) ++InsertPos;
1066 MBB->erase(UseMI);
Evan Cheng8725a112008-03-12 22:19:41 +00001067 }
Evan Cheng8725a112008-03-12 22:19:41 +00001068}
1069
1070/// EmitLiveInCopies - If this is the first basic block in the function,
1071/// and if it has live ins that need to be copied into vregs, emit the
1072/// copies into the top of the block.
1073void ScheduleDAG::EmitLiveInCopies(MachineBasicBlock *MBB) {
Evan Chenga96f9642008-03-14 00:14:55 +00001074 DenseMap<MachineInstr*, unsigned> CopyRegMap;
Evan Cheng8725a112008-03-12 22:19:41 +00001075 MachineBasicBlock::iterator InsertPos = MBB->begin();
1076 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1077 E = MRI.livein_end(); LI != E; ++LI)
1078 if (LI->second) {
1079 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Chenga96f9642008-03-14 00:14:55 +00001080 EmitLiveInCopy(MBB, InsertPos, LI->second, LI->first, RC, CopyRegMap);
Evan Cheng8725a112008-03-12 22:19:41 +00001081 }
1082}
1083
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084/// EmitSchedule - Emit the machine code in scheduled order.
1085void ScheduleDAG::EmitSchedule() {
Evan Cheng8725a112008-03-12 22:19:41 +00001086 bool isEntryBB = &MF->front() == BB;
1087
1088 if (isEntryBB && !SchedLiveInCopies) {
1089 // If this is the first basic block in the function, and if it has live ins
1090 // that need to be copied into vregs, emit the copies into the top of the
1091 // block before emitting the code for the block.
1092 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1093 E = MRI.livein_end(); LI != E; ++LI)
Evan Chengb3d91cf2007-09-26 06:25:56 +00001094 if (LI->second) {
Evan Cheng8725a112008-03-12 22:19:41 +00001095 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Cheng2d373922008-01-30 19:35:32 +00001096 TII->copyRegToReg(*MF->begin(), MF->begin()->end(), LI->second,
Evan Chengb3d91cf2007-09-26 06:25:56 +00001097 LI->first, RC, RC);
1098 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099 }
Evan Cheng8725a112008-03-12 22:19:41 +00001100
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001101 // Finally, emit the code for all of the scheduled instructions.
Roman Levenstein05650fd2008-04-07 10:06:32 +00001102 DenseMap<SDOperandImpl, unsigned> VRBaseMap;
Evan Cheng5ec4b762007-09-26 21:36:17 +00001103 DenseMap<SUnit*, unsigned> CopyVRBaseMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
Evan Cheng19da42d2008-04-03 16:36:07 +00001105 SUnit *SU = Sequence[i];
1106 if (!SU) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001107 // Null SUnit* is a noop.
1108 EmitNoop();
Evan Cheng19da42d2008-04-03 16:36:07 +00001109 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110 }
Evan Cheng19da42d2008-04-03 16:36:07 +00001111 for (unsigned j = 0, ee = SU->FlaggedNodes.size(); j != ee; ++j)
1112 EmitNode(SU->FlaggedNodes[j], SU->InstanceNo, VRBaseMap);
1113 if (!SU->Node)
1114 EmitCrossRCCopy(SU, CopyVRBaseMap);
1115 else
1116 EmitNode(SU->Node, SU->InstanceNo, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 }
Evan Cheng8725a112008-03-12 22:19:41 +00001118
1119 if (isEntryBB && SchedLiveInCopies)
1120 EmitLiveInCopies(MF->begin());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121}
1122
1123/// dump - dump the schedule.
1124void ScheduleDAG::dumpSchedule() const {
1125 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
1126 if (SUnit *SU = Sequence[i])
1127 SU->dump(&DAG);
1128 else
1129 cerr << "**** NOOP ****\n";
1130 }
1131}
1132
1133
1134/// Run - perform scheduling.
1135///
1136MachineBasicBlock *ScheduleDAG::Run() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137 Schedule();
1138 return BB;
1139}
1140
1141/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
1142/// a group of nodes flagged together.
1143void SUnit::dump(const SelectionDAG *G) const {
1144 cerr << "SU(" << NodeNum << "): ";
Evan Cheng5ec4b762007-09-26 21:36:17 +00001145 if (Node)
1146 Node->dump(G);
1147 else
1148 cerr << "CROSS RC COPY ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 cerr << "\n";
1150 if (FlaggedNodes.size() != 0) {
1151 for (unsigned i = 0, e = FlaggedNodes.size(); i != e; i++) {
1152 cerr << " ";
1153 FlaggedNodes[i]->dump(G);
1154 cerr << "\n";
1155 }
1156 }
1157}
1158
1159void SUnit::dumpAll(const SelectionDAG *G) const {
1160 dump(G);
1161
1162 cerr << " # preds left : " << NumPredsLeft << "\n";
1163 cerr << " # succs left : " << NumSuccsLeft << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001164 cerr << " Latency : " << Latency << "\n";
1165 cerr << " Depth : " << Depth << "\n";
1166 cerr << " Height : " << Height << "\n";
1167
1168 if (Preds.size() != 0) {
1169 cerr << " Predecessors:\n";
1170 for (SUnit::const_succ_iterator I = Preds.begin(), E = Preds.end();
1171 I != E; ++I) {
Evan Chenge7959472007-09-19 01:38:40 +00001172 if (I->isCtrl)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001173 cerr << " ch #";
1174 else
1175 cerr << " val #";
Evan Cheng93f143e2007-09-25 01:54:36 +00001176 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1177 if (I->isSpecial)
1178 cerr << " *";
1179 cerr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001180 }
1181 }
1182 if (Succs.size() != 0) {
1183 cerr << " Successors:\n";
1184 for (SUnit::const_succ_iterator I = Succs.begin(), E = Succs.end();
1185 I != E; ++I) {
Evan Chenge7959472007-09-19 01:38:40 +00001186 if (I->isCtrl)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001187 cerr << " ch #";
1188 else
1189 cerr << " val #";
Evan Cheng93f143e2007-09-25 01:54:36 +00001190 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1191 if (I->isSpecial)
1192 cerr << " *";
1193 cerr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001194 }
1195 }
1196 cerr << "\n";
1197}