blob: f41e14aa7e140f573cb412d25769d0122f5d61a1 [file] [log] [blame]
Evan Chenga9c20912006-01-21 02:32:06 +00001//===---- ScheduleDAG.cpp - Implement the ScheduleDAG class ---------------===//
Chris Lattnerd32b2362005-08-18 18:45:24 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerd32b2362005-08-18 18:45:24 +00007//
8//===----------------------------------------------------------------------===//
9//
Jim Laskeye6b90fb2005-09-26 21:57:04 +000010// 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.
Chris Lattnerd32b2362005-08-18 18:45:24 +000013//
14//===----------------------------------------------------------------------===//
15
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000016#define DEBUG_TYPE "pre-RA-sched"
Reid Spencere5530da2007-01-12 23:31:12 +000017#include "llvm/Type.h"
Chris Lattnerb0d21ef2006-03-08 04:25:59 +000018#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattner5839bf22005-08-26 17:15:30 +000019#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner4ccd4062005-08-19 20:45:43 +000020#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng8a50f1f2008-04-03 16:36:07 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000023#include "llvm/Target/TargetData.h"
Chris Lattner2d973e42005-08-18 20:07:59 +000024#include "llvm/Target/TargetMachine.h"
25#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner025c39b2005-08-26 20:54:47 +000026#include "llvm/Target/TargetLowering.h"
Evan Cheng643afa52008-02-28 07:40:24 +000027#include "llvm/ADT/Statistic.h"
Evan Cheng9e233362008-03-12 22:19:41 +000028#include "llvm/Support/CommandLine.h"
Evan Chenge165a782006-05-11 23:55:42 +000029#include "llvm/Support/Debug.h"
Chris Lattner54a30b92006-03-20 01:51:46 +000030#include "llvm/Support/MathExtras.h"
Chris Lattnerd32b2362005-08-18 18:45:24 +000031using namespace llvm;
32
Evan Cheng643afa52008-02-28 07:40:24 +000033STATISTIC(NumCommutes, "Number of instructions commuted");
34
Evan Cheng9e233362008-03-12 22:19:41 +000035namespace {
36 static cl::opt<bool>
37 SchedLiveInCopies("schedule-livein-copies",
38 cl::desc("Schedule copies of livein registers"),
39 cl::init(false));
40}
41
Chris Lattner84bc5422007-12-31 04:13:23 +000042ScheduleDAG::ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
43 const TargetMachine &tm)
Evan Cheng9e233362008-03-12 22:19:41 +000044 : DAG(dag), BB(bb), TM(tm), MRI(BB->getParent()->getRegInfo()) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +000045 TII = TM.getInstrInfo();
46 MF = &DAG.getMachineFunction();
47 TRI = TM.getRegisterInfo();
48 TLI = &DAG.getTargetLoweringInfo();
49 ConstPool = BB->getParent()->getConstantPool();
Chris Lattner84bc5422007-12-31 04:13:23 +000050}
Evan Chenga6fb1b62007-09-25 01:54:36 +000051
Evan Chenga6fb1b62007-09-25 01:54:36 +000052/// CheckForPhysRegDependency - Check if the dependency between def and use of
53/// a specified operand is a physical register dependency. If so, returns the
54/// register and the cost of copying the register.
55static void CheckForPhysRegDependency(SDNode *Def, SDNode *Use, unsigned Op,
Dan Gohman6f0d0242008-02-10 18:45:23 +000056 const TargetRegisterInfo *TRI,
Evan Chenga6fb1b62007-09-25 01:54:36 +000057 const TargetInstrInfo *TII,
58 unsigned &PhysReg, int &Cost) {
59 if (Op != 2 || Use->getOpcode() != ISD::CopyToReg)
60 return;
61
62 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +000063 if (TargetRegisterInfo::isVirtualRegister(Reg))
Evan Chenga6fb1b62007-09-25 01:54:36 +000064 return;
65
66 unsigned ResNo = Use->getOperand(2).ResNo;
67 if (Def->isTargetOpcode()) {
Chris Lattner749c6f62008-01-07 07:27:27 +000068 const TargetInstrDesc &II = TII->get(Def->getTargetOpcode());
Chris Lattner349c4952008-01-07 03:13:06 +000069 if (ResNo >= II.getNumDefs() &&
70 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
Evan Chenga6fb1b62007-09-25 01:54:36 +000071 PhysReg = Reg;
72 const TargetRegisterClass *RC =
Evan Cheng676dd7c2008-03-11 07:19:34 +000073 TRI->getPhysicalRegisterRegClass(Reg, Def->getValueType(ResNo));
Evan Chenga6fb1b62007-09-25 01:54:36 +000074 Cost = RC->getCopyCost();
75 }
76 }
77}
78
79SUnit *ScheduleDAG::Clone(SUnit *Old) {
80 SUnit *SU = NewSUnit(Old->Node);
Dan Gohman4c8c8302008-06-21 15:52:51 +000081 SU->OrigNode = Old->OrigNode;
Dan Gohman45f36ea2008-03-10 23:48:14 +000082 SU->FlaggedNodes = Old->FlaggedNodes;
Evan Chenga6fb1b62007-09-25 01:54:36 +000083 SU->Latency = Old->Latency;
84 SU->isTwoAddress = Old->isTwoAddress;
85 SU->isCommutable = Old->isCommutable;
Evan Cheng22a52992007-09-28 22:32:30 +000086 SU->hasPhysRegDefs = Old->hasPhysRegDefs;
Evan Chenga6fb1b62007-09-25 01:54:36 +000087 return SU;
88}
89
Evan Chengf10c9732007-10-05 01:39:18 +000090
Evan Chenge165a782006-05-11 23:55:42 +000091/// BuildSchedUnits - Build SUnits from the selection dag that we are input.
92/// This SUnit graph is similar to the SelectionDAG, but represents flagged
93/// together nodes with a single SUnit.
94void ScheduleDAG::BuildSchedUnits() {
95 // Reserve entries in the vector for each of the SUnits we are creating. This
96 // ensure that reallocation of the vector won't happen, so SUnit*'s won't get
97 // invalidated.
Dan Gohman3461cc92008-06-20 17:15:19 +000098 SUnits.reserve(DAG.allnodes_size());
Evan Chenge165a782006-05-11 23:55:42 +000099
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000100 // During scheduling, the NodeId field of SDNode is used to map SDNodes
101 // to their associated SUnits by holding SUnits table indices. A value
102 // of -1 means the SDNode does not yet have an associated SUnit.
103 for (SelectionDAG::allnodes_iterator NI = DAG.allnodes_begin(),
104 E = DAG.allnodes_end(); NI != E; ++NI)
105 NI->setNodeId(-1);
106
Evan Chenge165a782006-05-11 23:55:42 +0000107 for (SelectionDAG::allnodes_iterator NI = DAG.allnodes_begin(),
108 E = DAG.allnodes_end(); NI != E; ++NI) {
109 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate.
110 continue;
111
112 // If this node has already been processed, stop now.
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000113 if (NI->getNodeId() != -1) continue;
Evan Chenge165a782006-05-11 23:55:42 +0000114
115 SUnit *NodeSUnit = NewSUnit(NI);
116
117 // See if anything is flagged to this node, if so, add them to flagged
118 // nodes. Nodes can have at most one flag input and one flag output. Flags
119 // are required the be the last operand and result of a node.
120
121 // Scan up, adding flagged preds to FlaggedNodes.
122 SDNode *N = NI;
Evan Cheng3b97acd2006-08-07 22:12:12 +0000123 if (N->getNumOperands() &&
124 N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Flag) {
125 do {
126 N = N->getOperand(N->getNumOperands()-1).Val;
127 NodeSUnit->FlaggedNodes.push_back(N);
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000128 assert(N->getNodeId() == -1 && "Node already inserted!");
129 N->setNodeId(NodeSUnit->NodeNum);
Evan Cheng3b97acd2006-08-07 22:12:12 +0000130 } while (N->getNumOperands() &&
131 N->getOperand(N->getNumOperands()-1).getValueType()== MVT::Flag);
132 std::reverse(NodeSUnit->FlaggedNodes.begin(),
133 NodeSUnit->FlaggedNodes.end());
Evan Chenge165a782006-05-11 23:55:42 +0000134 }
135
136 // Scan down, adding this node and any flagged succs to FlaggedNodes if they
137 // have a user of the flag operand.
138 N = NI;
139 while (N->getValueType(N->getNumValues()-1) == MVT::Flag) {
140 SDOperand FlagVal(N, N->getNumValues()-1);
141
142 // There are either zero or one users of the Flag result.
143 bool HasFlagUse = false;
144 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
145 UI != E; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +0000146 if (FlagVal.isOperandOf(UI->getUser())) {
Evan Chenge165a782006-05-11 23:55:42 +0000147 HasFlagUse = true;
148 NodeSUnit->FlaggedNodes.push_back(N);
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000149 assert(N->getNodeId() == -1 && "Node already inserted!");
150 N->setNodeId(NodeSUnit->NodeNum);
Roman Levensteindc1adac2008-04-07 10:06:32 +0000151 N = UI->getUser();
Evan Chenge165a782006-05-11 23:55:42 +0000152 break;
153 }
Chris Lattner228a18e2006-08-17 00:09:56 +0000154 if (!HasFlagUse) break;
Evan Chenge165a782006-05-11 23:55:42 +0000155 }
156
157 // Now all flagged nodes are in FlaggedNodes and N is the bottom-most node.
158 // Update the SUnit
159 NodeSUnit->Node = N;
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000160 assert(N->getNodeId() == -1 && "Node already inserted!");
161 N->setNodeId(NodeSUnit->NodeNum);
Evan Chengf10c9732007-10-05 01:39:18 +0000162
163 ComputeLatency(NodeSUnit);
Evan Chenge165a782006-05-11 23:55:42 +0000164 }
165
166 // Pass 2: add the preds, succs, etc.
167 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) {
168 SUnit *SU = &SUnits[su];
169 SDNode *MainNode = SU->Node;
170
171 if (MainNode->isTargetOpcode()) {
172 unsigned Opc = MainNode->getTargetOpcode();
Chris Lattner749c6f62008-01-07 07:27:27 +0000173 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattner349c4952008-01-07 03:13:06 +0000174 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000175 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
Evan Cheng95f6ede2006-11-04 09:44:31 +0000176 SU->isTwoAddress = true;
177 break;
178 }
179 }
Chris Lattner0ff23962008-01-07 06:42:05 +0000180 if (TID.isCommutable())
Evan Cheng13d41b92006-05-12 01:58:24 +0000181 SU->isCommutable = true;
Evan Chenge165a782006-05-11 23:55:42 +0000182 }
183
184 // Find all predecessors and successors of the group.
185 // Temporarily add N to make code simpler.
186 SU->FlaggedNodes.push_back(MainNode);
187
188 for (unsigned n = 0, e = SU->FlaggedNodes.size(); n != e; ++n) {
189 SDNode *N = SU->FlaggedNodes[n];
Evan Cheng22a52992007-09-28 22:32:30 +0000190 if (N->isTargetOpcode() &&
Chris Lattner349c4952008-01-07 03:13:06 +0000191 TII->get(N->getTargetOpcode()).getImplicitDefs() &&
192 CountResults(N) > TII->get(N->getTargetOpcode()).getNumDefs())
Evan Cheng22a52992007-09-28 22:32:30 +0000193 SU->hasPhysRegDefs = true;
Evan Chenge165a782006-05-11 23:55:42 +0000194
195 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
196 SDNode *OpN = N->getOperand(i).Val;
197 if (isPassiveNode(OpN)) continue; // Not scheduled.
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000198 SUnit *OpSU = &SUnits[OpN->getNodeId()];
Evan Chenge165a782006-05-11 23:55:42 +0000199 assert(OpSU && "Node has no SUnit!");
200 if (OpSU == SU) continue; // In the same group.
201
Duncan Sands83ec4b62008-06-06 12:08:01 +0000202 MVT OpVT = N->getOperand(i).getValueType();
Evan Chenge165a782006-05-11 23:55:42 +0000203 assert(OpVT != MVT::Flag && "Flagged nodes should be in same sunit!");
204 bool isChain = OpVT == MVT::Other;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000205
206 unsigned PhysReg = 0;
207 int Cost = 1;
208 // Determine if this is a physical register dependency.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000209 CheckForPhysRegDependency(OpN, N, i, TRI, TII, PhysReg, Cost);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000210 SU->addPred(OpSU, isChain, false, PhysReg, Cost);
Evan Chenge165a782006-05-11 23:55:42 +0000211 }
212 }
213
214 // Remove MainNode from FlaggedNodes again.
215 SU->FlaggedNodes.pop_back();
216 }
Evan Chenge165a782006-05-11 23:55:42 +0000217}
218
Evan Chengf10c9732007-10-05 01:39:18 +0000219void ScheduleDAG::ComputeLatency(SUnit *SU) {
220 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
221
222 // Compute the latency for the node. We use the sum of the latencies for
223 // all nodes flagged together into this SUnit.
224 if (InstrItins.isEmpty()) {
225 // No latency information.
226 SU->Latency = 1;
Evan Chengc6be7772008-07-02 09:23:51 +0000227 return;
228 }
229
230 SU->Latency = 0;
231 if (SU->Node->isTargetOpcode()) {
232 unsigned SchedClass = TII->get(SU->Node->getTargetOpcode()).getSchedClass();
233 const InstrStage *S = InstrItins.begin(SchedClass);
234 const InstrStage *E = InstrItins.end(SchedClass);
235 for (; S != E; ++S)
236 SU->Latency += S->Cycles;
237 }
238 for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i) {
239 SDNode *FNode = SU->FlaggedNodes[i];
240 if (FNode->isTargetOpcode()) {
241 unsigned SchedClass = TII->get(FNode->getTargetOpcode()).getSchedClass();
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000242 const InstrStage *S = InstrItins.begin(SchedClass);
243 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengf10c9732007-10-05 01:39:18 +0000244 for (; S != E; ++S)
245 SU->Latency += S->Cycles;
246 }
Evan Chengf10c9732007-10-05 01:39:18 +0000247 }
248}
249
Roman Levensteind86449e2008-03-04 11:19:43 +0000250/// CalculateDepths - compute depths using algorithms for the longest
251/// paths in the DAG
Evan Chenge165a782006-05-11 23:55:42 +0000252void ScheduleDAG::CalculateDepths() {
Roman Levensteind86449e2008-03-04 11:19:43 +0000253 unsigned DAGSize = SUnits.size();
254 std::vector<unsigned> InDegree(DAGSize);
255 std::vector<SUnit*> WorkList;
256 WorkList.reserve(DAGSize);
Evan Chenge165a782006-05-11 23:55:42 +0000257
Roman Levensteind86449e2008-03-04 11:19:43 +0000258 // Initialize the data structures
259 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
260 SUnit *SU = &SUnits[i];
261 int NodeNum = SU->NodeNum;
262 unsigned Degree = SU->Preds.size();
263 InDegree[NodeNum] = Degree;
264 SU->Depth = 0;
265
266 // Is it a node without dependencies?
267 if (Degree == 0) {
268 assert(SU->Preds.empty() && "SUnit should have no predecessors");
269 // Collect leaf nodes
270 WorkList.push_back(SU);
271 }
272 }
273
274 // Process nodes in the topological order
Evan Cheng99126282007-07-06 01:37:28 +0000275 while (!WorkList.empty()) {
Roman Levensteind86449e2008-03-04 11:19:43 +0000276 SUnit *SU = WorkList.back();
Evan Cheng99126282007-07-06 01:37:28 +0000277 WorkList.pop_back();
Roman Levensteind86449e2008-03-04 11:19:43 +0000278 unsigned &SUDepth = SU->Depth;
279
280 // Use dynamic programming:
281 // When current node is being processed, all of its dependencies
282 // are already processed.
283 // So, just iterate over all predecessors and take the longest path
284 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
285 I != E; ++I) {
286 unsigned PredDepth = I->Dep->Depth;
287 if (PredDepth+1 > SUDepth) {
288 SUDepth = PredDepth + 1;
289 }
290 }
291
292 // Update InDegrees of all nodes depending on current SUnit
293 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
294 I != E; ++I) {
295 SUnit *SU = I->Dep;
296 if (!--InDegree[SU->NodeNum])
297 // If all dependencies of the node are processed already,
298 // then the longest path for the node can be computed now
299 WorkList.push_back(SU);
Evan Cheng99126282007-07-06 01:37:28 +0000300 }
Evan Cheng626da3d2006-05-12 06:05:18 +0000301 }
Evan Chenge165a782006-05-11 23:55:42 +0000302}
Evan Cheng99126282007-07-06 01:37:28 +0000303
Roman Levensteind86449e2008-03-04 11:19:43 +0000304/// CalculateHeights - compute heights using algorithms for the longest
305/// paths in the DAG
Evan Chenge165a782006-05-11 23:55:42 +0000306void ScheduleDAG::CalculateHeights() {
Roman Levensteind86449e2008-03-04 11:19:43 +0000307 unsigned DAGSize = SUnits.size();
308 std::vector<unsigned> InDegree(DAGSize);
309 std::vector<SUnit*> WorkList;
310 WorkList.reserve(DAGSize);
Evan Cheng99126282007-07-06 01:37:28 +0000311
Roman Levensteind86449e2008-03-04 11:19:43 +0000312 // Initialize the data structures
313 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
314 SUnit *SU = &SUnits[i];
315 int NodeNum = SU->NodeNum;
316 unsigned Degree = SU->Succs.size();
317 InDegree[NodeNum] = Degree;
318 SU->Height = 0;
319
320 // Is it a node without dependencies?
321 if (Degree == 0) {
322 assert(SU->Succs.empty() && "Something wrong");
323 assert(WorkList.empty() && "Should be empty");
324 // Collect leaf nodes
325 WorkList.push_back(SU);
326 }
327 }
328
329 // Process nodes in the topological order
Evan Cheng99126282007-07-06 01:37:28 +0000330 while (!WorkList.empty()) {
Roman Levensteind86449e2008-03-04 11:19:43 +0000331 SUnit *SU = WorkList.back();
Evan Cheng99126282007-07-06 01:37:28 +0000332 WorkList.pop_back();
Roman Levensteind86449e2008-03-04 11:19:43 +0000333 unsigned &SUHeight = SU->Height;
334
335 // Use dynamic programming:
336 // When current node is being processed, all of its dependencies
337 // are already processed.
338 // So, just iterate over all successors and take the longest path
339 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
340 I != E; ++I) {
341 unsigned SuccHeight = I->Dep->Height;
342 if (SuccHeight+1 > SUHeight) {
343 SUHeight = SuccHeight + 1;
344 }
345 }
346
347 // Update InDegrees of all nodes depending on current SUnit
348 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
349 I != E; ++I) {
350 SUnit *SU = I->Dep;
351 if (!--InDegree[SU->NodeNum])
352 // If all dependencies of the node are processed already,
353 // then the longest path for the node can be computed now
354 WorkList.push_back(SU);
Evan Cheng99126282007-07-06 01:37:28 +0000355 }
356 }
Evan Chenge165a782006-05-11 23:55:42 +0000357}
358
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000359/// CountResults - The results of target nodes have register or immediate
360/// operands first, then an optional chain, and optional flag operands (which do
Dan Gohman027ee7e2008-02-11 19:00:03 +0000361/// not go into the resulting MachineInstr).
Evan Cheng95f6ede2006-11-04 09:44:31 +0000362unsigned ScheduleDAG::CountResults(SDNode *Node) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000363 unsigned N = Node->getNumValues();
364 while (N && Node->getValueType(N - 1) == MVT::Flag)
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000365 --N;
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000366 if (N && Node->getValueType(N - 1) == MVT::Other)
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000367 --N; // Skip over chain result.
368 return N;
369}
370
Dan Gohman69de1932008-02-06 22:27:42 +0000371/// CountOperands - The inputs to target nodes have any actual inputs first,
Dan Gohman42a77882008-02-16 00:36:48 +0000372/// followed by special operands that describe memory references, then an
373/// optional chain operand, then flag operands. Compute the number of
374/// actual operands that will go into the resulting MachineInstr.
Evan Cheng95f6ede2006-11-04 09:44:31 +0000375unsigned ScheduleDAG::CountOperands(SDNode *Node) {
Dan Gohman42a77882008-02-16 00:36:48 +0000376 unsigned N = ComputeMemOperandsEnd(Node);
Dan Gohmancc20cd52008-02-11 19:00:34 +0000377 while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
Dan Gohman36b5c132008-04-07 19:35:22 +0000378 --N; // Ignore MEMOPERAND nodes
Dan Gohman69de1932008-02-06 22:27:42 +0000379 return N;
380}
381
Dan Gohman42a77882008-02-16 00:36:48 +0000382/// ComputeMemOperandsEnd - Find the index one past the last MemOperandSDNode
383/// operand
384unsigned ScheduleDAG::ComputeMemOperandsEnd(SDNode *Node) {
Dan Gohman69de1932008-02-06 22:27:42 +0000385 unsigned N = Node->getNumOperands();
386 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
387 --N;
388 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
389 --N; // Ignore chain if it exists.
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000390 return N;
391}
392
Evan Chengc6be7772008-07-02 09:23:51 +0000393/// getInstrOperandRegClass - Return register class of the operand of an
394/// instruction of the specified TargetInstrDesc.
395static const TargetRegisterClass*
396getInstrOperandRegClass(const TargetRegisterInfo *TRI,
397 const TargetInstrInfo *TII, const TargetInstrDesc &II,
398 unsigned Op) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000399 if (Op >= II.getNumOperands()) {
400 assert(II.isVariadic() && "Invalid operand # of instruction");
Jim Laskey60f09922006-07-21 20:57:35 +0000401 return NULL;
402 }
Chris Lattner749c6f62008-01-07 07:27:27 +0000403 if (II.OpInfo[Op].isLookupPtrRegClass())
Chris Lattner8ca5c672008-01-07 02:39:19 +0000404 return TII->getPointerRegClass();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000405 return TRI->getRegClass(II.OpInfo[Op].RegClass);
Jim Laskey60f09922006-07-21 20:57:35 +0000406}
407
Evan Chengc6be7772008-07-02 09:23:51 +0000408/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
409/// implicit physical register output.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000410void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
Dan Gohman4c8c8302008-06-21 15:52:51 +0000411 bool IsClone, unsigned SrcReg,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000412 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng84097472007-08-02 00:28:15 +0000413 unsigned VRBase = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000414 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Cheng84097472007-08-02 00:28:15 +0000415 // Just use the input register directly!
Dan Gohman4c8c8302008-06-21 15:52:51 +0000416 if (IsClone)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000417 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng84097472007-08-02 00:28:15 +0000418 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo),SrcReg));
Evan Cheng97e60d92008-05-14 21:08:07 +0000419 isNew = isNew; // Silence compiler warning.
Evan Cheng84097472007-08-02 00:28:15 +0000420 assert(isNew && "Node emitted out of order - early");
421 return;
422 }
423
424 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
425 // the CopyToReg'd destination register instead of creating a new vreg.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000426 bool MatchReg = true;
Evan Cheng84097472007-08-02 00:28:15 +0000427 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
428 UI != E; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +0000429 SDNode *Use = UI->getUser();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000430 bool Match = true;
Evan Cheng84097472007-08-02 00:28:15 +0000431 if (Use->getOpcode() == ISD::CopyToReg &&
432 Use->getOperand(2).Val == Node &&
433 Use->getOperand(2).ResNo == ResNo) {
434 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000435 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Evan Cheng84097472007-08-02 00:28:15 +0000436 VRBase = DestReg;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000437 Match = false;
438 } else if (DestReg != SrcReg)
439 Match = false;
440 } else {
441 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
442 SDOperand Op = Use->getOperand(i);
Evan Cheng7c07aeb2007-12-14 08:25:15 +0000443 if (Op.Val != Node || Op.ResNo != ResNo)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000444 continue;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000445 MVT VT = Node->getValueType(Op.ResNo);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000446 if (VT != MVT::Other && VT != MVT::Flag)
447 Match = false;
Evan Cheng84097472007-08-02 00:28:15 +0000448 }
449 }
Evan Chenga6fb1b62007-09-25 01:54:36 +0000450 MatchReg &= Match;
451 if (VRBase)
452 break;
Evan Cheng84097472007-08-02 00:28:15 +0000453 }
454
Chris Lattner02b6d252008-03-09 08:49:15 +0000455 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Evan Cheng676dd7c2008-03-11 07:19:34 +0000456 SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, Node->getValueType(ResNo));
Chris Lattner02b6d252008-03-09 08:49:15 +0000457
Evan Chenga6fb1b62007-09-25 01:54:36 +0000458 // Figure out the register class to create for the destreg.
Chris Lattner02b6d252008-03-09 08:49:15 +0000459 if (VRBase) {
Evan Cheng9e233362008-03-12 22:19:41 +0000460 DstRC = MRI.getRegClass(VRBase);
Chris Lattner02b6d252008-03-09 08:49:15 +0000461 } else {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000462 DstRC = TLI->getRegClassFor(Node->getValueType(ResNo));
Chris Lattner02b6d252008-03-09 08:49:15 +0000463 }
Evan Chenga6fb1b62007-09-25 01:54:36 +0000464
465 // If all uses are reading from the src physical register and copying the
466 // register is either impossible or very expensive, then don't create a copy.
Chris Lattner02b6d252008-03-09 08:49:15 +0000467 if (MatchReg && SrcRC->getCopyCost() < 0) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000468 VRBase = SrcReg;
469 } else {
Evan Cheng84097472007-08-02 00:28:15 +0000470 // Create the reg, emit the copy.
Evan Cheng9e233362008-03-12 22:19:41 +0000471 VRBase = MRI.createVirtualRegister(DstRC);
Chris Lattner02b6d252008-03-09 08:49:15 +0000472 TII->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, DstRC, SrcRC);
Evan Cheng84097472007-08-02 00:28:15 +0000473 }
Evan Cheng84097472007-08-02 00:28:15 +0000474
Dan Gohman4c8c8302008-06-21 15:52:51 +0000475 if (IsClone)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000476 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng84097472007-08-02 00:28:15 +0000477 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo), VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000478 isNew = isNew; // Silence compiler warning.
Evan Cheng84097472007-08-02 00:28:15 +0000479 assert(isNew && "Node emitted out of order - early");
480}
481
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000482/// getDstOfCopyToRegUse - If the only use of the specified result number of
483/// node is a CopyToReg, return its destination register. Return 0 otherwise.
484unsigned ScheduleDAG::getDstOfOnlyCopyToRegUse(SDNode *Node,
485 unsigned ResNo) const {
486 if (!Node->hasOneUse())
487 return 0;
488
Roman Levensteindc1adac2008-04-07 10:06:32 +0000489 SDNode *Use = Node->use_begin()->getUser();
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000490 if (Use->getOpcode() == ISD::CopyToReg &&
491 Use->getOperand(2).Val == Node &&
492 Use->getOperand(2).ResNo == ResNo) {
493 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
494 if (TargetRegisterInfo::isVirtualRegister(Reg))
495 return Reg;
496 }
497 return 0;
498}
499
Evan Chengda47e6e2008-03-15 00:03:38 +0000500void ScheduleDAG::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000501 const TargetInstrDesc &II,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000502 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000503 assert(Node->getTargetOpcode() != TargetInstrInfo::IMPLICIT_DEF &&
504 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
505
Chris Lattner349c4952008-01-07 03:13:06 +0000506 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
Evan Chengaf825c82007-07-10 07:08:32 +0000507 // If the specific node value is only used by a CopyToReg and the dest reg
508 // is a vreg, use the CopyToReg'd destination register instead of creating
509 // a new vreg.
510 unsigned VRBase = 0;
511 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
512 UI != E; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +0000513 SDNode *Use = UI->getUser();
Evan Chengaf825c82007-07-10 07:08:32 +0000514 if (Use->getOpcode() == ISD::CopyToReg &&
515 Use->getOperand(2).Val == Node &&
516 Use->getOperand(2).ResNo == i) {
517 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000518 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Evan Chengaf825c82007-07-10 07:08:32 +0000519 VRBase = Reg;
Chris Lattner8019f412007-12-30 00:41:17 +0000520 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Evan Chengaf825c82007-07-10 07:08:32 +0000521 break;
522 }
523 }
524 }
525
Evan Cheng84097472007-08-02 00:28:15 +0000526 // Create the result registers for this node and add the result regs to
527 // the machine instruction.
Evan Chengaf825c82007-07-10 07:08:32 +0000528 if (VRBase == 0) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000529 const TargetRegisterClass *RC = getInstrOperandRegClass(TRI, TII, II, i);
Evan Chengaf825c82007-07-10 07:08:32 +0000530 assert(RC && "Isn't a register operand!");
Evan Cheng9e233362008-03-12 22:19:41 +0000531 VRBase = MRI.createVirtualRegister(RC);
Chris Lattner8019f412007-12-30 00:41:17 +0000532 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Evan Chengaf825c82007-07-10 07:08:32 +0000533 }
534
535 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,i), VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000536 isNew = isNew; // Silence compiler warning.
Evan Chengaf825c82007-07-10 07:08:32 +0000537 assert(isNew && "Node emitted out of order - early");
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000538 }
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000539}
540
Chris Lattnerdf375062006-03-10 07:25:12 +0000541/// getVR - Return the virtual register corresponding to the specified result
542/// of the specified node.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000543unsigned ScheduleDAG::getVR(SDOperand Op,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000544 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000545 if (Op.isTargetOpcode() &&
546 Op.getTargetOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
547 // Add an IMPLICIT_DEF instruction before every use.
548 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.Val, Op.ResNo);
549 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
550 // does not include operand register class info.
551 if (!VReg) {
552 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
553 VReg = MRI.createVirtualRegister(RC);
554 }
555 BuildMI(BB, TII->get(TargetInstrInfo::IMPLICIT_DEF), VReg);
556 return VReg;
557 }
558
Roman Levenstein9cac5252008-04-16 16:15:27 +0000559 DenseMap<SDOperand, unsigned>::iterator I = VRBaseMap.find(Op);
Chris Lattnerdf375062006-03-10 07:25:12 +0000560 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
Evan Chengaf825c82007-07-10 07:08:32 +0000561 return I->second;
Chris Lattnerdf375062006-03-10 07:25:12 +0000562}
563
564
Chris Lattnered18b682006-02-24 18:54:03 +0000565/// AddOperand - Add the specified operand to the specified machine instr. II
566/// specifies the instruction information for the node, and IIOpNum is the
567/// operand number (in the II) that we are adding. IIOpNum and II are used for
568/// assertions only.
569void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
570 unsigned IIOpNum,
Chris Lattner749c6f62008-01-07 07:27:27 +0000571 const TargetInstrDesc *II,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000572 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Chris Lattnered18b682006-02-24 18:54:03 +0000573 if (Op.isTargetOpcode()) {
574 // Note that this case is redundant with the final else block, but we
575 // include it because it is the most common and it makes the logic
576 // simpler here.
577 assert(Op.getValueType() != MVT::Other &&
578 Op.getValueType() != MVT::Flag &&
579 "Chain and flag operands should occur at end of operand list!");
Chris Lattnered18b682006-02-24 18:54:03 +0000580 // Get/emit the operand.
Chris Lattnerdf375062006-03-10 07:25:12 +0000581 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner749c6f62008-01-07 07:27:27 +0000582 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000583 bool isOptDef = IIOpNum < TID.getNumOperands() &&
584 TID.OpInfo[IIOpNum].isOptionalDef();
Chris Lattner8019f412007-12-30 00:41:17 +0000585 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
Chris Lattnered18b682006-02-24 18:54:03 +0000586
587 // Verify that it is right.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000588 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattnerb7795802008-03-11 00:59:28 +0000589#ifndef NDEBUG
Chris Lattnered18b682006-02-24 18:54:03 +0000590 if (II) {
Chris Lattnerb7795802008-03-11 00:59:28 +0000591 // There may be no register class for this operand if it is a variadic
592 // argument (RC will be NULL in this case). In this case, we just assume
593 // the regclass is ok.
Jim Laskey60f09922006-07-21 20:57:35 +0000594 const TargetRegisterClass *RC =
Dan Gohman6f0d0242008-02-10 18:45:23 +0000595 getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
Chris Lattnerc5733ac2008-03-11 03:14:42 +0000596 assert((RC || II->isVariadic()) && "Expected reg class info!");
Evan Cheng9e233362008-03-12 22:19:41 +0000597 const TargetRegisterClass *VRC = MRI.getRegClass(VReg);
Chris Lattnerb7795802008-03-11 00:59:28 +0000598 if (RC && VRC != RC) {
Chris Lattner01528292007-02-15 18:17:56 +0000599 cerr << "Register class of operand and regclass of use don't agree!\n";
Chris Lattner01528292007-02-15 18:17:56 +0000600 cerr << "Operand = " << IIOpNum << "\n";
Chris Lattner95ad9432007-02-17 06:38:37 +0000601 cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n";
Chris Lattner01528292007-02-15 18:17:56 +0000602 cerr << "MI = "; MI->print(cerr);
603 cerr << "VReg = " << VReg << "\n";
604 cerr << "VReg RegClass size = " << VRC->getSize()
Chris Lattner5d4a9f72007-02-15 18:19:15 +0000605 << ", align = " << VRC->getAlignment() << "\n";
Chris Lattner01528292007-02-15 18:17:56 +0000606 cerr << "Expected RegClass size = " << RC->getSize()
Chris Lattner5d4a9f72007-02-15 18:19:15 +0000607 << ", align = " << RC->getAlignment() << "\n";
Chris Lattner01528292007-02-15 18:17:56 +0000608 cerr << "Fatal error, aborting.\n";
609 abort();
610 }
Chris Lattnered18b682006-02-24 18:54:03 +0000611 }
Chris Lattnerb7795802008-03-11 00:59:28 +0000612#endif
Chris Lattnerfec65d52007-12-30 00:51:11 +0000613 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner8019f412007-12-30 00:41:17 +0000614 MI->addOperand(MachineOperand::CreateImm(C->getValue()));
Nate Begemane1795842008-02-14 08:57:00 +0000615 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Chris Lattner02a260a2008-04-20 00:41:09 +0000616 ConstantFP *CFP = ConstantFP::get(F->getValueAPF());
Nate Begemane1795842008-02-14 08:57:00 +0000617 MI->addOperand(MachineOperand::CreateFPImm(CFP));
Chris Lattnerfec65d52007-12-30 00:51:11 +0000618 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Chris Lattner8019f412007-12-30 00:41:17 +0000619 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Chris Lattnerfec65d52007-12-30 00:51:11 +0000620 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
621 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(),TGA->getOffset()));
622 } else if (BasicBlockSDNode *BB = dyn_cast<BasicBlockSDNode>(Op)) {
623 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
624 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
625 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
626 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
627 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex()));
628 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
Evan Cheng404cb4f2006-02-25 09:54:52 +0000629 int Offset = CP->getOffset();
Chris Lattnered18b682006-02-24 18:54:03 +0000630 unsigned Align = CP->getAlignment();
Evan Chengd6594ae2006-09-12 21:00:35 +0000631 const Type *Type = CP->getType();
Chris Lattnered18b682006-02-24 18:54:03 +0000632 // MachineConstantPool wants an explicit alignment.
633 if (Align == 0) {
Evan Chengde268f72007-01-24 07:03:39 +0000634 Align = TM.getTargetData()->getPreferredTypeAlignmentShift(Type);
Evan Chengf6d039a2007-01-22 23:13:55 +0000635 if (Align == 0) {
Reid Spencerac9dcb92007-02-15 03:39:18 +0000636 // Alignment of vector types. FIXME!
Duncan Sands514ab342007-11-01 20:53:16 +0000637 Align = TM.getTargetData()->getABITypeSize(Type);
Evan Chengf6d039a2007-01-22 23:13:55 +0000638 Align = Log2_64(Align);
Chris Lattner54a30b92006-03-20 01:51:46 +0000639 }
Chris Lattnered18b682006-02-24 18:54:03 +0000640 }
641
Evan Chengd6594ae2006-09-12 21:00:35 +0000642 unsigned Idx;
643 if (CP->isMachineConstantPoolEntry())
644 Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align);
645 else
646 Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattnerfec65d52007-12-30 00:51:11 +0000647 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
648 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
649 MI->addOperand(MachineOperand::CreateES(ES->getSymbol()));
Chris Lattnered18b682006-02-24 18:54:03 +0000650 } else {
651 assert(Op.getValueType() != MVT::Other &&
652 Op.getValueType() != MVT::Flag &&
653 "Chain and flag operands should occur at end of operand list!");
Chris Lattnerdf375062006-03-10 07:25:12 +0000654 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner8019f412007-12-30 00:41:17 +0000655 MI->addOperand(MachineOperand::CreateReg(VReg, false));
Chris Lattnered18b682006-02-24 18:54:03 +0000656
Chris Lattner02b6d252008-03-09 08:49:15 +0000657 // Verify that it is right. Note that the reg class of the physreg and the
658 // vreg don't necessarily need to match, but the target copy insertion has
659 // to be able to handle it. This handles things like copies from ST(0) to
660 // an FP vreg on x86.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000661 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattnerc5733ac2008-03-11 03:14:42 +0000662 if (II && !II->isVariadic()) {
Chris Lattner02b6d252008-03-09 08:49:15 +0000663 assert(getInstrOperandRegClass(TRI, TII, *II, IIOpNum) &&
664 "Don't have operand info for this instruction!");
Chris Lattnered18b682006-02-24 18:54:03 +0000665 }
Evan Chengc6be7772008-07-02 09:23:51 +0000666 }
Chris Lattnered18b682006-02-24 18:54:03 +0000667}
668
Dan Gohman36b5c132008-04-07 19:35:22 +0000669void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +0000670 MI->addMemOperand(MO);
671}
672
Evan Chengc6be7772008-07-02 09:23:51 +0000673/// getSubRegisterRegClass - Returns the register class of specified register
674/// class' "SubIdx"'th sub-register class.
675static const TargetRegisterClass*
676getSubRegisterRegClass(const TargetRegisterClass *TRC, unsigned SubIdx) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000677 // Pick the register class of the subregister
Dan Gohman6f0d0242008-02-10 18:45:23 +0000678 TargetRegisterInfo::regclass_iterator I =
679 TRC->subregclasses_begin() + SubIdx-1;
Christopher Lambe24f8f12007-07-26 08:12:07 +0000680 assert(I < TRC->subregclasses_end() &&
681 "Invalid subregister index for register class");
682 return *I;
683}
684
Evan Chengc6be7772008-07-02 09:23:51 +0000685/// getSuperRegisterRegClass - Returns the register class of a superreg A whose
686/// "SubIdx"'th sub-register class is the specified register class and whose
687/// type matches the specified type.
688static const TargetRegisterClass*
689getSuperRegisterRegClass(const TargetRegisterClass *TRC,
690 unsigned SubIdx, MVT VT) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000691 // Pick the register class of the superegister for this type
Dan Gohman6f0d0242008-02-10 18:45:23 +0000692 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
Christopher Lambe24f8f12007-07-26 08:12:07 +0000693 E = TRC->superregclasses_end(); I != E; ++I)
694 if ((*I)->hasType(VT) && getSubRegisterRegClass(*I, SubIdx) == TRC)
695 return *I;
696 assert(false && "Couldn't find the register class");
697 return 0;
698}
699
700/// EmitSubregNode - Generate machine code for subreg nodes.
701///
702void ScheduleDAG::EmitSubregNode(SDNode *Node,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000703 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000704 unsigned VRBase = 0;
705 unsigned Opc = Node->getTargetOpcode();
Christopher Lambc9298232008-03-16 03:12:01 +0000706
707 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
708 // the CopyToReg'd destination register instead of creating a new vreg.
709 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
710 UI != E; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +0000711 SDNode *Use = UI->getUser();
Christopher Lambc9298232008-03-16 03:12:01 +0000712 if (Use->getOpcode() == ISD::CopyToReg &&
713 Use->getOperand(2).Val == Node) {
714 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
715 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
716 VRBase = DestReg;
717 break;
Christopher Lambe24f8f12007-07-26 08:12:07 +0000718 }
719 }
Christopher Lambc9298232008-03-16 03:12:01 +0000720 }
721
722 if (Opc == TargetInstrInfo::EXTRACT_SUBREG) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000723 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
Christopher Lambe24f8f12007-07-26 08:12:07 +0000724
Christopher Lambe24f8f12007-07-26 08:12:07 +0000725 // Create the extract_subreg machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000726 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::EXTRACT_SUBREG));
Christopher Lambe24f8f12007-07-26 08:12:07 +0000727
728 // Figure out the register class to create for the destreg.
729 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng9e233362008-03-12 22:19:41 +0000730 const TargetRegisterClass *TRC = MRI.getRegClass(VReg);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000731 const TargetRegisterClass *SRC = getSubRegisterRegClass(TRC, SubIdx);
732
733 if (VRBase) {
734 // Grab the destination register
Evan Cheng50871242008-05-14 20:07:51 +0000735#ifndef NDEBUG
Evan Cheng9e233362008-03-12 22:19:41 +0000736 const TargetRegisterClass *DRC = MRI.getRegClass(VRBase);
Christopher Lamb175e8152008-01-31 07:09:08 +0000737 assert(SRC && DRC && SRC == DRC &&
Christopher Lambe24f8f12007-07-26 08:12:07 +0000738 "Source subregister and destination must have the same class");
Evan Cheng50871242008-05-14 20:07:51 +0000739#endif
Christopher Lambe24f8f12007-07-26 08:12:07 +0000740 } else {
741 // Create the reg
Christopher Lamb175e8152008-01-31 07:09:08 +0000742 assert(SRC && "Couldn't find source register class");
Evan Cheng9e233362008-03-12 22:19:41 +0000743 VRBase = MRI.createVirtualRegister(SRC);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000744 }
745
746 // Add def, source, and subreg index
Chris Lattner8019f412007-12-30 00:41:17 +0000747 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambe24f8f12007-07-26 08:12:07 +0000748 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
Chris Lattnerfec65d52007-12-30 00:51:11 +0000749 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000750 BB->push_back(MI);
Christopher Lambc9298232008-03-16 03:12:01 +0000751 } else if (Opc == TargetInstrInfo::INSERT_SUBREG ||
752 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000753 SDOperand N0 = Node->getOperand(0);
754 SDOperand N1 = Node->getOperand(1);
755 SDOperand N2 = Node->getOperand(2);
756 unsigned SubReg = getVR(N1, VRBaseMap);
757 unsigned SubIdx = cast<ConstantSDNode>(N2)->getValue();
Christopher Lambe24f8f12007-07-26 08:12:07 +0000758
Christopher Lambe24f8f12007-07-26 08:12:07 +0000759
760 // Figure out the register class to create for the destreg.
761 const TargetRegisterClass *TRC = 0;
762 if (VRBase) {
Evan Cheng9e233362008-03-12 22:19:41 +0000763 TRC = MRI.getRegClass(VRBase);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000764 } else {
Evan Chengc6be7772008-07-02 09:23:51 +0000765 TRC = getSuperRegisterRegClass(MRI.getRegClass(SubReg), SubIdx,
Christopher Lambe24f8f12007-07-26 08:12:07 +0000766 Node->getValueType(0));
767 assert(TRC && "Couldn't determine register class for insert_subreg");
Evan Cheng9e233362008-03-12 22:19:41 +0000768 VRBase = MRI.createVirtualRegister(TRC); // Create the reg
Christopher Lambe24f8f12007-07-26 08:12:07 +0000769 }
770
Christopher Lambc9298232008-03-16 03:12:01 +0000771 // Create the insert_subreg or subreg_to_reg machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000772 MachineInstr *MI = BuildMI(TII->get(Opc));
Chris Lattner8019f412007-12-30 00:41:17 +0000773 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000774
Christopher Lambc9298232008-03-16 03:12:01 +0000775 // If creating a subreg_to_reg, then the first input operand
776 // is an implicit value immediate, otherwise it's a register
777 if (Opc == TargetInstrInfo::SUBREG_TO_REG) {
778 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000779 MI->addOperand(MachineOperand::CreateImm(SD->getValue()));
Christopher Lambc9298232008-03-16 03:12:01 +0000780 } else
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000781 AddOperand(MI, N0, 0, 0, VRBaseMap);
782 // Add the subregster being inserted
783 AddOperand(MI, N1, 0, 0, VRBaseMap);
Chris Lattnerfec65d52007-12-30 00:51:11 +0000784 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000785 BB->push_back(MI);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000786 } else
Christopher Lambc9298232008-03-16 03:12:01 +0000787 assert(0 && "Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Christopher Lambe24f8f12007-07-26 08:12:07 +0000788
789 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,0), VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000790 isNew = isNew; // Silence compiler warning.
Christopher Lambe24f8f12007-07-26 08:12:07 +0000791 assert(isNew && "Node emitted out of order - early");
792}
793
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000794/// EmitNode - Generate machine code for an node and needed dependencies.
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000795///
Dan Gohman4c8c8302008-06-21 15:52:51 +0000796void ScheduleDAG::EmitNode(SDNode *Node, bool IsClone,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000797 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000798 // If machine instruction
799 if (Node->isTargetOpcode()) {
800 unsigned Opc = Node->getTargetOpcode();
Christopher Lambe24f8f12007-07-26 08:12:07 +0000801
802 // Handle subreg insert/extract specially
803 if (Opc == TargetInstrInfo::EXTRACT_SUBREG ||
Christopher Lambc9298232008-03-16 03:12:01 +0000804 Opc == TargetInstrInfo::INSERT_SUBREG ||
805 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000806 EmitSubregNode(Node, VRBaseMap);
807 return;
808 }
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000809
810 if (Opc == TargetInstrInfo::IMPLICIT_DEF)
811 // We want a unique VR for each IMPLICIT_DEF use.
812 return;
Christopher Lambe24f8f12007-07-26 08:12:07 +0000813
Chris Lattner749c6f62008-01-07 07:27:27 +0000814 const TargetInstrDesc &II = TII->get(Opc);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000815 unsigned NumResults = CountResults(Node);
816 unsigned NodeOperands = CountOperands(Node);
Dan Gohman42a77882008-02-16 00:36:48 +0000817 unsigned MemOperandsEnd = ComputeMemOperandsEnd(Node);
Chris Lattner349c4952008-01-07 03:13:06 +0000818 bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
819 II.getImplicitDefs() != 0;
Chris Lattnerda8abb02005-09-01 18:44:10 +0000820#ifndef NDEBUG
Evan Cheng50871242008-05-14 20:07:51 +0000821 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner349c4952008-01-07 03:13:06 +0000822 assert((II.getNumOperands() == NumMIOperands ||
Chris Lattner8f707e12008-01-07 05:19:29 +0000823 HasPhysRegOuts || II.isVariadic()) &&
Chris Lattner2d973e42005-08-18 20:07:59 +0000824 "#operands for dag node doesn't match .td file!");
Chris Lattnerca6aa2f2005-08-19 01:01:34 +0000825#endif
Chris Lattner2d973e42005-08-18 20:07:59 +0000826
827 // Create the new machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000828 MachineInstr *MI = BuildMI(II);
Chris Lattner2d973e42005-08-18 20:07:59 +0000829
830 // Add result register values for things that are defined by this
831 // instruction.
Evan Chengaf825c82007-07-10 07:08:32 +0000832 if (NumResults)
Evan Cheng84097472007-08-02 00:28:15 +0000833 CreateVirtualRegisters(Node, MI, II, VRBaseMap);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000834
835 // Emit all of the actual operands of this instruction, adding them to the
836 // instruction as appropriate.
Chris Lattnered18b682006-02-24 18:54:03 +0000837 for (unsigned i = 0; i != NodeOperands; ++i)
Chris Lattner349c4952008-01-07 03:13:06 +0000838 AddOperand(MI, Node->getOperand(i), i+II.getNumDefs(), &II, VRBaseMap);
Evan Cheng13d41b92006-05-12 01:58:24 +0000839
Dan Gohman69de1932008-02-06 22:27:42 +0000840 // Emit all of the memory operands of this instruction
Dan Gohman42a77882008-02-16 00:36:48 +0000841 for (unsigned i = NodeOperands; i != MemOperandsEnd; ++i)
Dan Gohman69de1932008-02-06 22:27:42 +0000842 AddMemOperand(MI, cast<MemOperandSDNode>(Node->getOperand(i))->MO);
843
Evan Cheng13d41b92006-05-12 01:58:24 +0000844 // Commute node if it has been determined to be profitable.
845 if (CommuteSet.count(Node)) {
846 MachineInstr *NewMI = TII->commuteInstruction(MI);
847 if (NewMI == 0)
Bill Wendling832171c2006-12-07 20:04:42 +0000848 DOUT << "Sched: COMMUTING FAILED!\n";
Evan Cheng13d41b92006-05-12 01:58:24 +0000849 else {
Bill Wendling832171c2006-12-07 20:04:42 +0000850 DOUT << "Sched: COMMUTED TO: " << *NewMI;
Evan Cheng4c6f2f92006-05-31 18:03:39 +0000851 if (MI != NewMI) {
852 delete MI;
853 MI = NewMI;
854 }
Evan Cheng643afa52008-02-28 07:40:24 +0000855 ++NumCommutes;
Evan Cheng13d41b92006-05-12 01:58:24 +0000856 }
857 }
858
Evan Cheng1b08bbc2008-02-01 09:10:45 +0000859 if (II.usesCustomDAGSchedInsertionHook())
Evan Cheng6b2cf282008-01-30 19:35:32 +0000860 // Insert this instruction into the basic block using a target
861 // specific inserter which may returns a new basic block.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000862 BB = TLI->EmitInstrWithCustomInserter(MI, BB);
Evan Cheng6b2cf282008-01-30 19:35:32 +0000863 else
864 BB->push_back(MI);
Evan Cheng84097472007-08-02 00:28:15 +0000865
866 // Additional results must be an physical register def.
867 if (HasPhysRegOuts) {
Chris Lattner349c4952008-01-07 03:13:06 +0000868 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
869 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Evan Cheng33d55952007-08-02 05:29:38 +0000870 if (Node->hasAnyUseOfValue(i))
Dan Gohman4c8c8302008-06-21 15:52:51 +0000871 EmitCopyFromReg(Node, i, IsClone, Reg, VRBaseMap);
Evan Cheng84097472007-08-02 00:28:15 +0000872 }
873 }
Evan Chengc6be7772008-07-02 09:23:51 +0000874 return;
875 }
876
877 switch (Node->getOpcode()) {
878 default:
Jim Laskey16d42c62006-07-11 18:25:13 +0000879#ifndef NDEBUG
Evan Chengc6be7772008-07-02 09:23:51 +0000880 Node->dump(&DAG);
Jim Laskey16d42c62006-07-11 18:25:13 +0000881#endif
Evan Chengc6be7772008-07-02 09:23:51 +0000882 assert(0 && "This target-independent node should have been selected!");
883 break;
884 case ISD::EntryToken:
885 assert(0 && "EntryToken should have been excluded from the schedule!");
886 break;
887 case ISD::TokenFactor: // fall thru
Evan Chengc6be7772008-07-02 09:23:51 +0000888 break;
889 case ISD::CopyToReg: {
890 unsigned SrcReg;
891 SDOperand SrcVal = Node->getOperand(2);
892 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
893 SrcReg = R->getReg();
894 else
895 SrcReg = getVR(SrcVal, VRBaseMap);
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000896
Evan Chengc6be7772008-07-02 09:23:51 +0000897 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
898 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
899 break;
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000900
Evan Chengc6be7772008-07-02 09:23:51 +0000901 const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
902 // Get the register classes of the src/dst.
903 if (TargetRegisterInfo::isVirtualRegister(SrcReg))
904 SrcTRC = MRI.getRegClass(SrcReg);
905 else
906 SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000907
Evan Chengc6be7772008-07-02 09:23:51 +0000908 if (TargetRegisterInfo::isVirtualRegister(DestReg))
909 DstTRC = MRI.getRegClass(DestReg);
910 else
911 DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
Evan Cheng676dd7c2008-03-11 07:19:34 +0000912 Node->getOperand(1).getValueType());
Evan Chengc6be7772008-07-02 09:23:51 +0000913 TII->copyRegToReg(*BB, BB->end(), DestReg, SrcReg, DstTRC, SrcTRC);
914 break;
915 }
916 case ISD::CopyFromReg: {
917 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
918 EmitCopyFromReg(Node, 0, IsClone, SrcReg, VRBaseMap);
919 break;
920 }
921 case ISD::INLINEASM: {
922 unsigned NumOps = Node->getNumOperands();
923 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
924 --NumOps; // Ignore the flag operand.
Chris Lattneracc43bf2006-01-26 23:28:04 +0000925
Evan Chengc6be7772008-07-02 09:23:51 +0000926 // Create the inline asm machine instruction.
927 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::INLINEASM));
Chris Lattneracc43bf2006-01-26 23:28:04 +0000928
Evan Chengc6be7772008-07-02 09:23:51 +0000929 // Add the asm string as an external symbol operand.
930 const char *AsmStr =
931 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
932 MI->addOperand(MachineOperand::CreateES(AsmStr));
Chris Lattneracc43bf2006-01-26 23:28:04 +0000933
Evan Chengc6be7772008-07-02 09:23:51 +0000934 // Add all of the operand registers to the instruction.
935 for (unsigned i = 2; i != NumOps;) {
936 unsigned Flags = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
937 unsigned NumVals = Flags >> 3;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000938
Evan Chengc6be7772008-07-02 09:23:51 +0000939 MI->addOperand(MachineOperand::CreateImm(Flags));
940 ++i; // Skip the ID value.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000941
Evan Chengc6be7772008-07-02 09:23:51 +0000942 switch (Flags & 7) {
943 default: assert(0 && "Bad flags!");
Evan Chengc6be7772008-07-02 09:23:51 +0000944 case 2: // Def of register.
945 for (; NumVals; --NumVals, ++i) {
946 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
947 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Chris Lattnerdc19b702006-02-04 02:26:14 +0000948 }
Evan Chengc6be7772008-07-02 09:23:51 +0000949 break;
Dan Gohmancd920d92008-07-02 23:23:19 +0000950 case 1: // Use of register.
951 case 3: // Immediate.
Evan Chengc6be7772008-07-02 09:23:51 +0000952 case 4: // Addressing mode.
953 // The addressing mode has been selected, just add all of the
954 // operands to the machine instruction.
955 for (; NumVals; --NumVals, ++i)
956 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
957 break;
958 }
Chris Lattneracc43bf2006-01-26 23:28:04 +0000959 }
Evan Chengc6be7772008-07-02 09:23:51 +0000960 BB->push_back(MI);
961 break;
962 }
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000963 }
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000964}
965
Chris Lattnera93dfcd2006-03-05 23:51:47 +0000966void ScheduleDAG::EmitNoop() {
967 TII->insertNoop(*BB, BB->end());
968}
969
Chris Lattnerd9c4c452008-03-09 07:51:01 +0000970void ScheduleDAG::EmitCrossRCCopy(SUnit *SU,
971 DenseMap<SUnit*, unsigned> &VRBaseMap) {
Evan Cheng42d60272007-09-26 21:36:17 +0000972 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
973 I != E; ++I) {
974 if (I->isCtrl) continue; // ignore chain preds
975 if (!I->Dep->Node) {
976 // Copy to physical register.
977 DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->Dep);
978 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
979 // Find the destination physical register.
980 unsigned Reg = 0;
981 for (SUnit::const_succ_iterator II = SU->Succs.begin(),
982 EE = SU->Succs.end(); II != EE; ++II) {
983 if (I->Reg) {
984 Reg = I->Reg;
985 break;
986 }
987 }
988 assert(I->Reg && "Unknown physical register!");
Owen Andersond10fd972007-12-31 06:32:00 +0000989 TII->copyRegToReg(*BB, BB->end(), Reg, VRI->second,
Evan Cheng42d60272007-09-26 21:36:17 +0000990 SU->CopyDstRC, SU->CopySrcRC);
991 } else {
992 // Copy from physical register.
993 assert(I->Reg && "Unknown physical register!");
Evan Cheng9e233362008-03-12 22:19:41 +0000994 unsigned VRBase = MRI.createVirtualRegister(SU->CopyDstRC);
Evan Cheng42d60272007-09-26 21:36:17 +0000995 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000996 isNew = isNew; // Silence compiler warning.
Evan Cheng42d60272007-09-26 21:36:17 +0000997 assert(isNew && "Node emitted out of order - early");
Owen Andersond10fd972007-12-31 06:32:00 +0000998 TII->copyRegToReg(*BB, BB->end(), VRBase, I->Reg,
Evan Cheng42d60272007-09-26 21:36:17 +0000999 SU->CopyDstRC, SU->CopySrcRC);
1000 }
1001 break;
1002 }
1003}
1004
Evan Cheng9e233362008-03-12 22:19:41 +00001005/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
1006/// physical register has only a single copy use, then coalesced the copy
Evan Chengdb2d7732008-03-14 00:14:55 +00001007/// if possible.
1008void ScheduleDAG::EmitLiveInCopy(MachineBasicBlock *MBB,
1009 MachineBasicBlock::iterator &InsertPos,
1010 unsigned VirtReg, unsigned PhysReg,
1011 const TargetRegisterClass *RC,
1012 DenseMap<MachineInstr*, unsigned> &CopyRegMap){
Evan Cheng9e233362008-03-12 22:19:41 +00001013 unsigned NumUses = 0;
1014 MachineInstr *UseMI = NULL;
1015 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
1016 UE = MRI.use_end(); UI != UE; ++UI) {
1017 UseMI = &*UI;
1018 if (++NumUses > 1)
1019 break;
1020 }
1021
1022 // If the number of uses is not one, or the use is not a move instruction,
Evan Chengdb2d7732008-03-14 00:14:55 +00001023 // don't coalesce. Also, only coalesce away a virtual register to virtual
1024 // register copy.
1025 bool Coalesced = false;
Evan Cheng9e233362008-03-12 22:19:41 +00001026 unsigned SrcReg, DstReg;
Evan Chengdb2d7732008-03-14 00:14:55 +00001027 if (NumUses == 1 &&
1028 TII->isMoveInstr(*UseMI, SrcReg, DstReg) &&
1029 TargetRegisterInfo::isVirtualRegister(DstReg)) {
1030 VirtReg = DstReg;
1031 Coalesced = true;
Evan Cheng9e233362008-03-12 22:19:41 +00001032 }
1033
Evan Chengdb2d7732008-03-14 00:14:55 +00001034 // Now find an ideal location to insert the copy.
1035 MachineBasicBlock::iterator Pos = InsertPos;
1036 while (Pos != MBB->begin()) {
1037 MachineInstr *PrevMI = prior(Pos);
1038 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
1039 // copyRegToReg might emit multiple instructions to do a copy.
1040 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
1041 if (CopyDstReg && !TRI->regsOverlap(CopyDstReg, PhysReg))
1042 // This is what the BB looks like right now:
1043 // r1024 = mov r0
1044 // ...
1045 // r1 = mov r1024
1046 //
1047 // We want to insert "r1025 = mov r1". Inserting this copy below the
1048 // move to r1024 makes it impossible for that move to be coalesced.
1049 //
1050 // r1025 = mov r1
1051 // r1024 = mov r0
1052 // ...
1053 // r1 = mov 1024
1054 // r2 = mov 1025
1055 break; // Woot! Found a good location.
1056 --Pos;
1057 }
1058
1059 TII->copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
1060 CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
1061 if (Coalesced) {
Evan Cheng9e233362008-03-12 22:19:41 +00001062 if (&*InsertPos == UseMI) ++InsertPos;
1063 MBB->erase(UseMI);
Evan Cheng9e233362008-03-12 22:19:41 +00001064 }
Evan Cheng9e233362008-03-12 22:19:41 +00001065}
1066
1067/// EmitLiveInCopies - If this is the first basic block in the function,
1068/// and if it has live ins that need to be copied into vregs, emit the
1069/// copies into the top of the block.
1070void ScheduleDAG::EmitLiveInCopies(MachineBasicBlock *MBB) {
Evan Chengdb2d7732008-03-14 00:14:55 +00001071 DenseMap<MachineInstr*, unsigned> CopyRegMap;
Evan Cheng9e233362008-03-12 22:19:41 +00001072 MachineBasicBlock::iterator InsertPos = MBB->begin();
1073 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1074 E = MRI.livein_end(); LI != E; ++LI)
1075 if (LI->second) {
1076 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Chengdb2d7732008-03-14 00:14:55 +00001077 EmitLiveInCopy(MBB, InsertPos, LI->second, LI->first, RC, CopyRegMap);
Evan Cheng9e233362008-03-12 22:19:41 +00001078 }
1079}
1080
Evan Chenge165a782006-05-11 23:55:42 +00001081/// EmitSchedule - Emit the machine code in scheduled order.
1082void ScheduleDAG::EmitSchedule() {
Evan Cheng9e233362008-03-12 22:19:41 +00001083 bool isEntryBB = &MF->front() == BB;
1084
1085 if (isEntryBB && !SchedLiveInCopies) {
1086 // If this is the first basic block in the function, and if it has live ins
1087 // that need to be copied into vregs, emit the copies into the top of the
1088 // block before emitting the code for the block.
1089 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1090 E = MRI.livein_end(); LI != E; ++LI)
Evan Cheng9efce632007-09-26 06:25:56 +00001091 if (LI->second) {
Evan Cheng9e233362008-03-12 22:19:41 +00001092 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Cheng6b2cf282008-01-30 19:35:32 +00001093 TII->copyRegToReg(*MF->begin(), MF->begin()->end(), LI->second,
Evan Cheng9efce632007-09-26 06:25:56 +00001094 LI->first, RC, RC);
1095 }
Chris Lattner96645412006-05-16 06:10:58 +00001096 }
Evan Cheng9e233362008-03-12 22:19:41 +00001097
Chris Lattner96645412006-05-16 06:10:58 +00001098 // Finally, emit the code for all of the scheduled instructions.
Roman Levenstein9cac5252008-04-16 16:15:27 +00001099 DenseMap<SDOperand, unsigned> VRBaseMap;
Evan Cheng42d60272007-09-26 21:36:17 +00001100 DenseMap<SUnit*, unsigned> CopyVRBaseMap;
Evan Chenge165a782006-05-11 23:55:42 +00001101 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001102 SUnit *SU = Sequence[i];
1103 if (!SU) {
Evan Chenge165a782006-05-11 23:55:42 +00001104 // Null SUnit* is a noop.
1105 EmitNoop();
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001106 continue;
Evan Chenge165a782006-05-11 23:55:42 +00001107 }
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001108 for (unsigned j = 0, ee = SU->FlaggedNodes.size(); j != ee; ++j)
Dan Gohman4c8c8302008-06-21 15:52:51 +00001109 EmitNode(SU->FlaggedNodes[j], SU->OrigNode != SU, VRBaseMap);
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001110 if (!SU->Node)
1111 EmitCrossRCCopy(SU, CopyVRBaseMap);
1112 else
Dan Gohman4c8c8302008-06-21 15:52:51 +00001113 EmitNode(SU->Node, SU->OrigNode != SU, VRBaseMap);
Evan Chenge165a782006-05-11 23:55:42 +00001114 }
Evan Cheng9e233362008-03-12 22:19:41 +00001115
1116 if (isEntryBB && SchedLiveInCopies)
1117 EmitLiveInCopies(MF->begin());
Evan Chenge165a782006-05-11 23:55:42 +00001118}
1119
1120/// dump - dump the schedule.
1121void ScheduleDAG::dumpSchedule() const {
1122 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
1123 if (SUnit *SU = Sequence[i])
1124 SU->dump(&DAG);
1125 else
Bill Wendling832171c2006-12-07 20:04:42 +00001126 cerr << "**** NOOP ****\n";
Evan Chenge165a782006-05-11 23:55:42 +00001127 }
1128}
1129
1130
Evan Chenga9c20912006-01-21 02:32:06 +00001131/// Run - perform scheduling.
1132///
1133MachineBasicBlock *ScheduleDAG::Run() {
Evan Chenga9c20912006-01-21 02:32:06 +00001134 Schedule();
1135 return BB;
Chris Lattnerd32b2362005-08-18 18:45:24 +00001136}
Evan Cheng4ef10862006-01-23 07:01:07 +00001137
Evan Chenge165a782006-05-11 23:55:42 +00001138/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
1139/// a group of nodes flagged together.
1140void SUnit::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00001141 cerr << "SU(" << NodeNum << "): ";
Evan Cheng42d60272007-09-26 21:36:17 +00001142 if (Node)
1143 Node->dump(G);
1144 else
1145 cerr << "CROSS RC COPY ";
Bill Wendling832171c2006-12-07 20:04:42 +00001146 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001147 if (FlaggedNodes.size() != 0) {
1148 for (unsigned i = 0, e = FlaggedNodes.size(); i != e; i++) {
Bill Wendling832171c2006-12-07 20:04:42 +00001149 cerr << " ";
Evan Chenge165a782006-05-11 23:55:42 +00001150 FlaggedNodes[i]->dump(G);
Bill Wendling832171c2006-12-07 20:04:42 +00001151 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001152 }
1153 }
1154}
Evan Cheng4ef10862006-01-23 07:01:07 +00001155
Evan Chenge165a782006-05-11 23:55:42 +00001156void SUnit::dumpAll(const SelectionDAG *G) const {
1157 dump(G);
1158
Bill Wendling832171c2006-12-07 20:04:42 +00001159 cerr << " # preds left : " << NumPredsLeft << "\n";
1160 cerr << " # succs left : " << NumSuccsLeft << "\n";
Bill Wendling832171c2006-12-07 20:04:42 +00001161 cerr << " Latency : " << Latency << "\n";
1162 cerr << " Depth : " << Depth << "\n";
1163 cerr << " Height : " << Height << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001164
1165 if (Preds.size() != 0) {
Bill Wendling832171c2006-12-07 20:04:42 +00001166 cerr << " Predecessors:\n";
Chris Lattner228a18e2006-08-17 00:09:56 +00001167 for (SUnit::const_succ_iterator I = Preds.begin(), E = Preds.end();
1168 I != E; ++I) {
Evan Cheng713a98d2007-09-19 01:38:40 +00001169 if (I->isCtrl)
Bill Wendling832171c2006-12-07 20:04:42 +00001170 cerr << " ch #";
Evan Chenge165a782006-05-11 23:55:42 +00001171 else
Bill Wendling832171c2006-12-07 20:04:42 +00001172 cerr << " val #";
Evan Chenga6fb1b62007-09-25 01:54:36 +00001173 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1174 if (I->isSpecial)
1175 cerr << " *";
1176 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001177 }
1178 }
1179 if (Succs.size() != 0) {
Bill Wendling832171c2006-12-07 20:04:42 +00001180 cerr << " Successors:\n";
Chris Lattner228a18e2006-08-17 00:09:56 +00001181 for (SUnit::const_succ_iterator I = Succs.begin(), E = Succs.end();
1182 I != E; ++I) {
Evan Cheng713a98d2007-09-19 01:38:40 +00001183 if (I->isCtrl)
Bill Wendling832171c2006-12-07 20:04:42 +00001184 cerr << " ch #";
Evan Chenge165a782006-05-11 23:55:42 +00001185 else
Bill Wendling832171c2006-12-07 20:04:42 +00001186 cerr << " val #";
Evan Chenga6fb1b62007-09-25 01:54:36 +00001187 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1188 if (I->isSpecial)
1189 cerr << " *";
1190 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001191 }
1192 }
Bill Wendling832171c2006-12-07 20:04:42 +00001193 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001194}