blob: 745367bd0078e7748f639f1911bcb2d07c352e44 [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 }
217
218 return;
219}
220
Evan Chengf10c9732007-10-05 01:39:18 +0000221void ScheduleDAG::ComputeLatency(SUnit *SU) {
222 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
223
224 // Compute the latency for the node. We use the sum of the latencies for
225 // all nodes flagged together into this SUnit.
226 if (InstrItins.isEmpty()) {
227 // No latency information.
228 SU->Latency = 1;
229 } else {
230 SU->Latency = 0;
231 if (SU->Node->isTargetOpcode()) {
Chris Lattnerba6da5d2008-01-07 02:46:03 +0000232 unsigned SchedClass =
233 TII->get(SU->Node->getTargetOpcode()).getSchedClass();
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000234 const InstrStage *S = InstrItins.begin(SchedClass);
235 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengf10c9732007-10-05 01:39:18 +0000236 for (; S != E; ++S)
237 SU->Latency += S->Cycles;
238 }
239 for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i) {
240 SDNode *FNode = SU->FlaggedNodes[i];
241 if (FNode->isTargetOpcode()) {
Chris Lattnerba6da5d2008-01-07 02:46:03 +0000242 unsigned SchedClass =TII->get(FNode->getTargetOpcode()).getSchedClass();
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000243 const InstrStage *S = InstrItins.begin(SchedClass);
244 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengf10c9732007-10-05 01:39:18 +0000245 for (; S != E; ++S)
246 SU->Latency += S->Cycles;
247 }
248 }
249 }
250}
251
Roman Levensteind86449e2008-03-04 11:19:43 +0000252/// CalculateDepths - compute depths using algorithms for the longest
253/// paths in the DAG
Evan Chenge165a782006-05-11 23:55:42 +0000254void ScheduleDAG::CalculateDepths() {
Roman Levensteind86449e2008-03-04 11:19:43 +0000255 unsigned DAGSize = SUnits.size();
256 std::vector<unsigned> InDegree(DAGSize);
257 std::vector<SUnit*> WorkList;
258 WorkList.reserve(DAGSize);
Evan Chenge165a782006-05-11 23:55:42 +0000259
Roman Levensteind86449e2008-03-04 11:19:43 +0000260 // Initialize the data structures
261 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
262 SUnit *SU = &SUnits[i];
263 int NodeNum = SU->NodeNum;
264 unsigned Degree = SU->Preds.size();
265 InDegree[NodeNum] = Degree;
266 SU->Depth = 0;
267
268 // Is it a node without dependencies?
269 if (Degree == 0) {
270 assert(SU->Preds.empty() && "SUnit should have no predecessors");
271 // Collect leaf nodes
272 WorkList.push_back(SU);
273 }
274 }
275
276 // Process nodes in the topological order
Evan Cheng99126282007-07-06 01:37:28 +0000277 while (!WorkList.empty()) {
Roman Levensteind86449e2008-03-04 11:19:43 +0000278 SUnit *SU = WorkList.back();
Evan Cheng99126282007-07-06 01:37:28 +0000279 WorkList.pop_back();
Roman Levensteind86449e2008-03-04 11:19:43 +0000280 unsigned &SUDepth = SU->Depth;
281
282 // Use dynamic programming:
283 // When current node is being processed, all of its dependencies
284 // are already processed.
285 // So, just iterate over all predecessors and take the longest path
286 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
287 I != E; ++I) {
288 unsigned PredDepth = I->Dep->Depth;
289 if (PredDepth+1 > SUDepth) {
290 SUDepth = PredDepth + 1;
291 }
292 }
293
294 // Update InDegrees of all nodes depending on current SUnit
295 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
296 I != E; ++I) {
297 SUnit *SU = I->Dep;
298 if (!--InDegree[SU->NodeNum])
299 // If all dependencies of the node are processed already,
300 // then the longest path for the node can be computed now
301 WorkList.push_back(SU);
Evan Cheng99126282007-07-06 01:37:28 +0000302 }
Evan Cheng626da3d2006-05-12 06:05:18 +0000303 }
Evan Chenge165a782006-05-11 23:55:42 +0000304}
Evan Cheng99126282007-07-06 01:37:28 +0000305
Roman Levensteind86449e2008-03-04 11:19:43 +0000306/// CalculateHeights - compute heights using algorithms for the longest
307/// paths in the DAG
Evan Chenge165a782006-05-11 23:55:42 +0000308void ScheduleDAG::CalculateHeights() {
Roman Levensteind86449e2008-03-04 11:19:43 +0000309 unsigned DAGSize = SUnits.size();
310 std::vector<unsigned> InDegree(DAGSize);
311 std::vector<SUnit*> WorkList;
312 WorkList.reserve(DAGSize);
Evan Cheng99126282007-07-06 01:37:28 +0000313
Roman Levensteind86449e2008-03-04 11:19:43 +0000314 // Initialize the data structures
315 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
316 SUnit *SU = &SUnits[i];
317 int NodeNum = SU->NodeNum;
318 unsigned Degree = SU->Succs.size();
319 InDegree[NodeNum] = Degree;
320 SU->Height = 0;
321
322 // Is it a node without dependencies?
323 if (Degree == 0) {
324 assert(SU->Succs.empty() && "Something wrong");
325 assert(WorkList.empty() && "Should be empty");
326 // Collect leaf nodes
327 WorkList.push_back(SU);
328 }
329 }
330
331 // Process nodes in the topological order
Evan Cheng99126282007-07-06 01:37:28 +0000332 while (!WorkList.empty()) {
Roman Levensteind86449e2008-03-04 11:19:43 +0000333 SUnit *SU = WorkList.back();
Evan Cheng99126282007-07-06 01:37:28 +0000334 WorkList.pop_back();
Roman Levensteind86449e2008-03-04 11:19:43 +0000335 unsigned &SUHeight = SU->Height;
336
337 // Use dynamic programming:
338 // When current node is being processed, all of its dependencies
339 // are already processed.
340 // So, just iterate over all successors and take the longest path
341 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
342 I != E; ++I) {
343 unsigned SuccHeight = I->Dep->Height;
344 if (SuccHeight+1 > SUHeight) {
345 SUHeight = SuccHeight + 1;
346 }
347 }
348
349 // Update InDegrees of all nodes depending on current SUnit
350 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
351 I != E; ++I) {
352 SUnit *SU = I->Dep;
353 if (!--InDegree[SU->NodeNum])
354 // If all dependencies of the node are processed already,
355 // then the longest path for the node can be computed now
356 WorkList.push_back(SU);
Evan Cheng99126282007-07-06 01:37:28 +0000357 }
358 }
Evan Chenge165a782006-05-11 23:55:42 +0000359}
360
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000361/// CountResults - The results of target nodes have register or immediate
362/// operands first, then an optional chain, and optional flag operands (which do
Dan Gohman027ee7e2008-02-11 19:00:03 +0000363/// not go into the resulting MachineInstr).
Evan Cheng95f6ede2006-11-04 09:44:31 +0000364unsigned ScheduleDAG::CountResults(SDNode *Node) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000365 unsigned N = Node->getNumValues();
366 while (N && Node->getValueType(N - 1) == MVT::Flag)
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000367 --N;
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000368 if (N && Node->getValueType(N - 1) == MVT::Other)
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000369 --N; // Skip over chain result.
370 return N;
371}
372
Dan Gohman69de1932008-02-06 22:27:42 +0000373/// CountOperands - The inputs to target nodes have any actual inputs first,
Dan Gohman42a77882008-02-16 00:36:48 +0000374/// followed by special operands that describe memory references, then an
375/// optional chain operand, then flag operands. Compute the number of
376/// actual operands that will go into the resulting MachineInstr.
Evan Cheng95f6ede2006-11-04 09:44:31 +0000377unsigned ScheduleDAG::CountOperands(SDNode *Node) {
Dan Gohman42a77882008-02-16 00:36:48 +0000378 unsigned N = ComputeMemOperandsEnd(Node);
Dan Gohmancc20cd52008-02-11 19:00:34 +0000379 while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
Dan Gohman36b5c132008-04-07 19:35:22 +0000380 --N; // Ignore MEMOPERAND nodes
Dan Gohman69de1932008-02-06 22:27:42 +0000381 return N;
382}
383
Dan Gohman42a77882008-02-16 00:36:48 +0000384/// ComputeMemOperandsEnd - Find the index one past the last MemOperandSDNode
385/// operand
386unsigned ScheduleDAG::ComputeMemOperandsEnd(SDNode *Node) {
Dan Gohman69de1932008-02-06 22:27:42 +0000387 unsigned N = Node->getNumOperands();
388 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
389 --N;
390 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
391 --N; // Ignore chain if it exists.
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000392 return N;
393}
394
Jim Laskey60f09922006-07-21 20:57:35 +0000395static const TargetRegisterClass *getInstrOperandRegClass(
Dan Gohman6f0d0242008-02-10 18:45:23 +0000396 const TargetRegisterInfo *TRI,
Jim Laskey60f09922006-07-21 20:57:35 +0000397 const TargetInstrInfo *TII,
Chris Lattner749c6f62008-01-07 07:27:27 +0000398 const TargetInstrDesc &II,
Jim Laskey60f09922006-07-21 20:57:35 +0000399 unsigned Op) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000400 if (Op >= II.getNumOperands()) {
401 assert(II.isVariadic() && "Invalid operand # of instruction");
Jim Laskey60f09922006-07-21 20:57:35 +0000402 return NULL;
403 }
Chris Lattner749c6f62008-01-07 07:27:27 +0000404 if (II.OpInfo[Op].isLookupPtrRegClass())
Chris Lattner8ca5c672008-01-07 02:39:19 +0000405 return TII->getPointerRegClass();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000406 return TRI->getRegClass(II.OpInfo[Op].RegClass);
Jim Laskey60f09922006-07-21 20:57:35 +0000407}
408
Evan Chenga6fb1b62007-09-25 01:54:36 +0000409void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
Dan Gohman4c8c8302008-06-21 15:52:51 +0000410 bool IsClone, unsigned SrcReg,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000411 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng84097472007-08-02 00:28:15 +0000412 unsigned VRBase = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000413 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Cheng84097472007-08-02 00:28:15 +0000414 // Just use the input register directly!
Dan Gohman4c8c8302008-06-21 15:52:51 +0000415 if (IsClone)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000416 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng84097472007-08-02 00:28:15 +0000417 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo),SrcReg));
Evan Cheng97e60d92008-05-14 21:08:07 +0000418 isNew = isNew; // Silence compiler warning.
Evan Cheng84097472007-08-02 00:28:15 +0000419 assert(isNew && "Node emitted out of order - early");
420 return;
421 }
422
423 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
424 // the CopyToReg'd destination register instead of creating a new vreg.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000425 bool MatchReg = true;
Evan Cheng84097472007-08-02 00:28:15 +0000426 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
427 UI != E; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +0000428 SDNode *Use = UI->getUser();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000429 bool Match = true;
Evan Cheng84097472007-08-02 00:28:15 +0000430 if (Use->getOpcode() == ISD::CopyToReg &&
431 Use->getOperand(2).Val == Node &&
432 Use->getOperand(2).ResNo == ResNo) {
433 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000434 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Evan Cheng84097472007-08-02 00:28:15 +0000435 VRBase = DestReg;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000436 Match = false;
437 } else if (DestReg != SrcReg)
438 Match = false;
439 } else {
440 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
441 SDOperand Op = Use->getOperand(i);
Evan Cheng7c07aeb2007-12-14 08:25:15 +0000442 if (Op.Val != Node || Op.ResNo != ResNo)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000443 continue;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000444 MVT VT = Node->getValueType(Op.ResNo);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000445 if (VT != MVT::Other && VT != MVT::Flag)
446 Match = false;
Evan Cheng84097472007-08-02 00:28:15 +0000447 }
448 }
Evan Chenga6fb1b62007-09-25 01:54:36 +0000449 MatchReg &= Match;
450 if (VRBase)
451 break;
Evan Cheng84097472007-08-02 00:28:15 +0000452 }
453
Chris Lattner02b6d252008-03-09 08:49:15 +0000454 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Evan Cheng676dd7c2008-03-11 07:19:34 +0000455 SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, Node->getValueType(ResNo));
Chris Lattner02b6d252008-03-09 08:49:15 +0000456
Evan Chenga6fb1b62007-09-25 01:54:36 +0000457 // Figure out the register class to create for the destreg.
Chris Lattner02b6d252008-03-09 08:49:15 +0000458 if (VRBase) {
Evan Cheng9e233362008-03-12 22:19:41 +0000459 DstRC = MRI.getRegClass(VRBase);
Chris Lattner02b6d252008-03-09 08:49:15 +0000460 } else {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000461 DstRC = TLI->getRegClassFor(Node->getValueType(ResNo));
Chris Lattner02b6d252008-03-09 08:49:15 +0000462 }
Evan Chenga6fb1b62007-09-25 01:54:36 +0000463
464 // If all uses are reading from the src physical register and copying the
465 // register is either impossible or very expensive, then don't create a copy.
Chris Lattner02b6d252008-03-09 08:49:15 +0000466 if (MatchReg && SrcRC->getCopyCost() < 0) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000467 VRBase = SrcReg;
468 } else {
Evan Cheng84097472007-08-02 00:28:15 +0000469 // Create the reg, emit the copy.
Evan Cheng9e233362008-03-12 22:19:41 +0000470 VRBase = MRI.createVirtualRegister(DstRC);
Chris Lattner02b6d252008-03-09 08:49:15 +0000471 TII->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, DstRC, SrcRC);
Evan Cheng84097472007-08-02 00:28:15 +0000472 }
Evan Cheng84097472007-08-02 00:28:15 +0000473
Dan Gohman4c8c8302008-06-21 15:52:51 +0000474 if (IsClone)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000475 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng84097472007-08-02 00:28:15 +0000476 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo), VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000477 isNew = isNew; // Silence compiler warning.
Evan Cheng84097472007-08-02 00:28:15 +0000478 assert(isNew && "Node emitted out of order - early");
479}
480
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000481/// getDstOfCopyToRegUse - If the only use of the specified result number of
482/// node is a CopyToReg, return its destination register. Return 0 otherwise.
483unsigned ScheduleDAG::getDstOfOnlyCopyToRegUse(SDNode *Node,
484 unsigned ResNo) const {
485 if (!Node->hasOneUse())
486 return 0;
487
Roman Levensteindc1adac2008-04-07 10:06:32 +0000488 SDNode *Use = Node->use_begin()->getUser();
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000489 if (Use->getOpcode() == ISD::CopyToReg &&
490 Use->getOperand(2).Val == Node &&
491 Use->getOperand(2).ResNo == ResNo) {
492 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
493 if (TargetRegisterInfo::isVirtualRegister(Reg))
494 return Reg;
495 }
496 return 0;
497}
498
Evan Chengda47e6e2008-03-15 00:03:38 +0000499void ScheduleDAG::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000500 const TargetInstrDesc &II,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000501 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000502 assert(Node->getTargetOpcode() != TargetInstrInfo::IMPLICIT_DEF &&
503 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
504
Chris Lattner349c4952008-01-07 03:13:06 +0000505 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
Evan Chengaf825c82007-07-10 07:08:32 +0000506 // If the specific node value is only used by a CopyToReg and the dest reg
507 // is a vreg, use the CopyToReg'd destination register instead of creating
508 // a new vreg.
509 unsigned VRBase = 0;
510 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
511 UI != E; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +0000512 SDNode *Use = UI->getUser();
Evan Chengaf825c82007-07-10 07:08:32 +0000513 if (Use->getOpcode() == ISD::CopyToReg &&
514 Use->getOperand(2).Val == Node &&
515 Use->getOperand(2).ResNo == i) {
516 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000517 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Evan Chengaf825c82007-07-10 07:08:32 +0000518 VRBase = Reg;
Chris Lattner8019f412007-12-30 00:41:17 +0000519 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Evan Chengaf825c82007-07-10 07:08:32 +0000520 break;
521 }
522 }
523 }
524
Evan Cheng84097472007-08-02 00:28:15 +0000525 // Create the result registers for this node and add the result regs to
526 // the machine instruction.
Evan Chengaf825c82007-07-10 07:08:32 +0000527 if (VRBase == 0) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000528 const TargetRegisterClass *RC = getInstrOperandRegClass(TRI, TII, II, i);
Evan Chengaf825c82007-07-10 07:08:32 +0000529 assert(RC && "Isn't a register operand!");
Evan Cheng9e233362008-03-12 22:19:41 +0000530 VRBase = MRI.createVirtualRegister(RC);
Chris Lattner8019f412007-12-30 00:41:17 +0000531 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Evan Chengaf825c82007-07-10 07:08:32 +0000532 }
533
534 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,i), VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000535 isNew = isNew; // Silence compiler warning.
Evan Chengaf825c82007-07-10 07:08:32 +0000536 assert(isNew && "Node emitted out of order - early");
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000537 }
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000538}
539
Chris Lattnerdf375062006-03-10 07:25:12 +0000540/// getVR - Return the virtual register corresponding to the specified result
541/// of the specified node.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000542unsigned ScheduleDAG::getVR(SDOperand Op,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000543 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000544 if (Op.isTargetOpcode() &&
545 Op.getTargetOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
546 // Add an IMPLICIT_DEF instruction before every use.
547 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.Val, Op.ResNo);
548 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
549 // does not include operand register class info.
550 if (!VReg) {
551 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
552 VReg = MRI.createVirtualRegister(RC);
553 }
554 BuildMI(BB, TII->get(TargetInstrInfo::IMPLICIT_DEF), VReg);
555 return VReg;
556 }
557
Roman Levenstein9cac5252008-04-16 16:15:27 +0000558 DenseMap<SDOperand, unsigned>::iterator I = VRBaseMap.find(Op);
Chris Lattnerdf375062006-03-10 07:25:12 +0000559 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
Evan Chengaf825c82007-07-10 07:08:32 +0000560 return I->second;
Chris Lattnerdf375062006-03-10 07:25:12 +0000561}
562
563
Chris Lattnered18b682006-02-24 18:54:03 +0000564/// AddOperand - Add the specified operand to the specified machine instr. II
565/// specifies the instruction information for the node, and IIOpNum is the
566/// operand number (in the II) that we are adding. IIOpNum and II are used for
567/// assertions only.
568void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
569 unsigned IIOpNum,
Chris Lattner749c6f62008-01-07 07:27:27 +0000570 const TargetInstrDesc *II,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000571 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Chris Lattnered18b682006-02-24 18:54:03 +0000572 if (Op.isTargetOpcode()) {
573 // Note that this case is redundant with the final else block, but we
574 // include it because it is the most common and it makes the logic
575 // simpler here.
576 assert(Op.getValueType() != MVT::Other &&
577 Op.getValueType() != MVT::Flag &&
578 "Chain and flag operands should occur at end of operand list!");
Chris Lattnered18b682006-02-24 18:54:03 +0000579 // Get/emit the operand.
Chris Lattnerdf375062006-03-10 07:25:12 +0000580 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner749c6f62008-01-07 07:27:27 +0000581 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000582 bool isOptDef = IIOpNum < TID.getNumOperands() &&
583 TID.OpInfo[IIOpNum].isOptionalDef();
Chris Lattner8019f412007-12-30 00:41:17 +0000584 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
Chris Lattnered18b682006-02-24 18:54:03 +0000585
586 // Verify that it is right.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000587 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattnerb7795802008-03-11 00:59:28 +0000588#ifndef NDEBUG
Chris Lattnered18b682006-02-24 18:54:03 +0000589 if (II) {
Chris Lattnerb7795802008-03-11 00:59:28 +0000590 // There may be no register class for this operand if it is a variadic
591 // argument (RC will be NULL in this case). In this case, we just assume
592 // the regclass is ok.
Jim Laskey60f09922006-07-21 20:57:35 +0000593 const TargetRegisterClass *RC =
Dan Gohman6f0d0242008-02-10 18:45:23 +0000594 getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
Chris Lattnerc5733ac2008-03-11 03:14:42 +0000595 assert((RC || II->isVariadic()) && "Expected reg class info!");
Evan Cheng9e233362008-03-12 22:19:41 +0000596 const TargetRegisterClass *VRC = MRI.getRegClass(VReg);
Chris Lattnerb7795802008-03-11 00:59:28 +0000597 if (RC && VRC != RC) {
Chris Lattner01528292007-02-15 18:17:56 +0000598 cerr << "Register class of operand and regclass of use don't agree!\n";
Chris Lattner01528292007-02-15 18:17:56 +0000599 cerr << "Operand = " << IIOpNum << "\n";
Chris Lattner95ad9432007-02-17 06:38:37 +0000600 cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n";
Chris Lattner01528292007-02-15 18:17:56 +0000601 cerr << "MI = "; MI->print(cerr);
602 cerr << "VReg = " << VReg << "\n";
603 cerr << "VReg RegClass size = " << VRC->getSize()
Chris Lattner5d4a9f72007-02-15 18:19:15 +0000604 << ", align = " << VRC->getAlignment() << "\n";
Chris Lattner01528292007-02-15 18:17:56 +0000605 cerr << "Expected RegClass size = " << RC->getSize()
Chris Lattner5d4a9f72007-02-15 18:19:15 +0000606 << ", align = " << RC->getAlignment() << "\n";
Chris Lattner01528292007-02-15 18:17:56 +0000607 cerr << "Fatal error, aborting.\n";
608 abort();
609 }
Chris Lattnered18b682006-02-24 18:54:03 +0000610 }
Chris Lattnerb7795802008-03-11 00:59:28 +0000611#endif
Chris Lattnerfec65d52007-12-30 00:51:11 +0000612 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner8019f412007-12-30 00:41:17 +0000613 MI->addOperand(MachineOperand::CreateImm(C->getValue()));
Nate Begemane1795842008-02-14 08:57:00 +0000614 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Chris Lattner02a260a2008-04-20 00:41:09 +0000615 ConstantFP *CFP = ConstantFP::get(F->getValueAPF());
Nate Begemane1795842008-02-14 08:57:00 +0000616 MI->addOperand(MachineOperand::CreateFPImm(CFP));
Chris Lattnerfec65d52007-12-30 00:51:11 +0000617 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Chris Lattner8019f412007-12-30 00:41:17 +0000618 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Chris Lattnerfec65d52007-12-30 00:51:11 +0000619 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
620 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(),TGA->getOffset()));
621 } else if (BasicBlockSDNode *BB = dyn_cast<BasicBlockSDNode>(Op)) {
622 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
623 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
624 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
625 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
626 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex()));
627 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
Evan Cheng404cb4f2006-02-25 09:54:52 +0000628 int Offset = CP->getOffset();
Chris Lattnered18b682006-02-24 18:54:03 +0000629 unsigned Align = CP->getAlignment();
Evan Chengd6594ae2006-09-12 21:00:35 +0000630 const Type *Type = CP->getType();
Chris Lattnered18b682006-02-24 18:54:03 +0000631 // MachineConstantPool wants an explicit alignment.
632 if (Align == 0) {
Evan Chengde268f72007-01-24 07:03:39 +0000633 Align = TM.getTargetData()->getPreferredTypeAlignmentShift(Type);
Evan Chengf6d039a2007-01-22 23:13:55 +0000634 if (Align == 0) {
Reid Spencerac9dcb92007-02-15 03:39:18 +0000635 // Alignment of vector types. FIXME!
Duncan Sands514ab342007-11-01 20:53:16 +0000636 Align = TM.getTargetData()->getABITypeSize(Type);
Evan Chengf6d039a2007-01-22 23:13:55 +0000637 Align = Log2_64(Align);
Chris Lattner54a30b92006-03-20 01:51:46 +0000638 }
Chris Lattnered18b682006-02-24 18:54:03 +0000639 }
640
Evan Chengd6594ae2006-09-12 21:00:35 +0000641 unsigned Idx;
642 if (CP->isMachineConstantPoolEntry())
643 Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align);
644 else
645 Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattnerfec65d52007-12-30 00:51:11 +0000646 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
647 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
648 MI->addOperand(MachineOperand::CreateES(ES->getSymbol()));
Chris Lattnered18b682006-02-24 18:54:03 +0000649 } else {
650 assert(Op.getValueType() != MVT::Other &&
651 Op.getValueType() != MVT::Flag &&
652 "Chain and flag operands should occur at end of operand list!");
Chris Lattnerdf375062006-03-10 07:25:12 +0000653 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner8019f412007-12-30 00:41:17 +0000654 MI->addOperand(MachineOperand::CreateReg(VReg, false));
Chris Lattnered18b682006-02-24 18:54:03 +0000655
Chris Lattner02b6d252008-03-09 08:49:15 +0000656 // Verify that it is right. Note that the reg class of the physreg and the
657 // vreg don't necessarily need to match, but the target copy insertion has
658 // to be able to handle it. This handles things like copies from ST(0) to
659 // an FP vreg on x86.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000660 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattnerc5733ac2008-03-11 03:14:42 +0000661 if (II && !II->isVariadic()) {
Chris Lattner02b6d252008-03-09 08:49:15 +0000662 assert(getInstrOperandRegClass(TRI, TII, *II, IIOpNum) &&
663 "Don't have operand info for this instruction!");
Chris Lattnered18b682006-02-24 18:54:03 +0000664 }
665 }
666
667}
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
Christopher Lambe24f8f12007-07-26 08:12:07 +0000673// Returns the Register Class of a subregister
674static const TargetRegisterClass *getSubRegisterRegClass(
675 const TargetRegisterClass *TRC,
676 unsigned SubIdx) {
677 // 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
685static const TargetRegisterClass *getSuperregRegisterClass(
686 const TargetRegisterClass *TRC,
687 unsigned SubIdx,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000688 MVT VT) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000689 // Pick the register class of the superegister for this type
Dan Gohman6f0d0242008-02-10 18:45:23 +0000690 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
Christopher Lambe24f8f12007-07-26 08:12:07 +0000691 E = TRC->superregclasses_end(); I != E; ++I)
692 if ((*I)->hasType(VT) && getSubRegisterRegClass(*I, SubIdx) == TRC)
693 return *I;
694 assert(false && "Couldn't find the register class");
695 return 0;
696}
697
698/// EmitSubregNode - Generate machine code for subreg nodes.
699///
700void ScheduleDAG::EmitSubregNode(SDNode *Node,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000701 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000702 unsigned VRBase = 0;
703 unsigned Opc = Node->getTargetOpcode();
Christopher Lambc9298232008-03-16 03:12:01 +0000704
705 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
706 // the CopyToReg'd destination register instead of creating a new vreg.
707 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
708 UI != E; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +0000709 SDNode *Use = UI->getUser();
Christopher Lambc9298232008-03-16 03:12:01 +0000710 if (Use->getOpcode() == ISD::CopyToReg &&
711 Use->getOperand(2).Val == Node) {
712 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
713 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
714 VRBase = DestReg;
715 break;
Christopher Lambe24f8f12007-07-26 08:12:07 +0000716 }
717 }
Christopher Lambc9298232008-03-16 03:12:01 +0000718 }
719
720 if (Opc == TargetInstrInfo::EXTRACT_SUBREG) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000721 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
Christopher Lambe24f8f12007-07-26 08:12:07 +0000722
Christopher Lambe24f8f12007-07-26 08:12:07 +0000723 // Create the extract_subreg machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000724 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::EXTRACT_SUBREG));
Christopher Lambe24f8f12007-07-26 08:12:07 +0000725
726 // Figure out the register class to create for the destreg.
727 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng9e233362008-03-12 22:19:41 +0000728 const TargetRegisterClass *TRC = MRI.getRegClass(VReg);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000729 const TargetRegisterClass *SRC = getSubRegisterRegClass(TRC, SubIdx);
730
731 if (VRBase) {
732 // Grab the destination register
Evan Cheng50871242008-05-14 20:07:51 +0000733#ifndef NDEBUG
Evan Cheng9e233362008-03-12 22:19:41 +0000734 const TargetRegisterClass *DRC = MRI.getRegClass(VRBase);
Christopher Lamb175e8152008-01-31 07:09:08 +0000735 assert(SRC && DRC && SRC == DRC &&
Christopher Lambe24f8f12007-07-26 08:12:07 +0000736 "Source subregister and destination must have the same class");
Evan Cheng50871242008-05-14 20:07:51 +0000737#endif
Christopher Lambe24f8f12007-07-26 08:12:07 +0000738 } else {
739 // Create the reg
Christopher Lamb175e8152008-01-31 07:09:08 +0000740 assert(SRC && "Couldn't find source register class");
Evan Cheng9e233362008-03-12 22:19:41 +0000741 VRBase = MRI.createVirtualRegister(SRC);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000742 }
743
744 // Add def, source, and subreg index
Chris Lattner8019f412007-12-30 00:41:17 +0000745 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambe24f8f12007-07-26 08:12:07 +0000746 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
Chris Lattnerfec65d52007-12-30 00:51:11 +0000747 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000748 BB->push_back(MI);
Christopher Lambc9298232008-03-16 03:12:01 +0000749 } else if (Opc == TargetInstrInfo::INSERT_SUBREG ||
750 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000751 SDOperand N0 = Node->getOperand(0);
752 SDOperand N1 = Node->getOperand(1);
753 SDOperand N2 = Node->getOperand(2);
754 unsigned SubReg = getVR(N1, VRBaseMap);
755 unsigned SubIdx = cast<ConstantSDNode>(N2)->getValue();
Christopher Lambe24f8f12007-07-26 08:12:07 +0000756
Christopher Lambe24f8f12007-07-26 08:12:07 +0000757
758 // Figure out the register class to create for the destreg.
759 const TargetRegisterClass *TRC = 0;
760 if (VRBase) {
Evan Cheng9e233362008-03-12 22:19:41 +0000761 TRC = MRI.getRegClass(VRBase);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000762 } else {
Evan Cheng9e233362008-03-12 22:19:41 +0000763 TRC = getSuperregRegisterClass(MRI.getRegClass(SubReg), SubIdx,
Christopher Lambe24f8f12007-07-26 08:12:07 +0000764 Node->getValueType(0));
765 assert(TRC && "Couldn't determine register class for insert_subreg");
Evan Cheng9e233362008-03-12 22:19:41 +0000766 VRBase = MRI.createVirtualRegister(TRC); // Create the reg
Christopher Lambe24f8f12007-07-26 08:12:07 +0000767 }
768
Christopher Lambc9298232008-03-16 03:12:01 +0000769 // Create the insert_subreg or subreg_to_reg machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000770 MachineInstr *MI = BuildMI(TII->get(Opc));
Chris Lattner8019f412007-12-30 00:41:17 +0000771 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000772
Christopher Lambc9298232008-03-16 03:12:01 +0000773 // If creating a subreg_to_reg, then the first input operand
774 // is an implicit value immediate, otherwise it's a register
775 if (Opc == TargetInstrInfo::SUBREG_TO_REG) {
776 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000777 MI->addOperand(MachineOperand::CreateImm(SD->getValue()));
Christopher Lambc9298232008-03-16 03:12:01 +0000778 } else
Christopher Lamb1fab4a62008-03-11 10:09:17 +0000779 AddOperand(MI, N0, 0, 0, VRBaseMap);
780 // Add the subregster being inserted
781 AddOperand(MI, N1, 0, 0, VRBaseMap);
Chris Lattnerfec65d52007-12-30 00:51:11 +0000782 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000783 BB->push_back(MI);
Christopher Lambe24f8f12007-07-26 08:12:07 +0000784 } else
Christopher Lambc9298232008-03-16 03:12:01 +0000785 assert(0 && "Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Christopher Lambe24f8f12007-07-26 08:12:07 +0000786
787 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,0), VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +0000788 isNew = isNew; // Silence compiler warning.
Christopher Lambe24f8f12007-07-26 08:12:07 +0000789 assert(isNew && "Node emitted out of order - early");
790}
791
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000792/// EmitNode - Generate machine code for an node and needed dependencies.
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000793///
Dan Gohman4c8c8302008-06-21 15:52:51 +0000794void ScheduleDAG::EmitNode(SDNode *Node, bool IsClone,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000795 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000796 // If machine instruction
797 if (Node->isTargetOpcode()) {
798 unsigned Opc = Node->getTargetOpcode();
Christopher Lambe24f8f12007-07-26 08:12:07 +0000799
800 // Handle subreg insert/extract specially
801 if (Opc == TargetInstrInfo::EXTRACT_SUBREG ||
Christopher Lambc9298232008-03-16 03:12:01 +0000802 Opc == TargetInstrInfo::INSERT_SUBREG ||
803 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lambe24f8f12007-07-26 08:12:07 +0000804 EmitSubregNode(Node, VRBaseMap);
805 return;
806 }
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000807
808 if (Opc == TargetInstrInfo::IMPLICIT_DEF)
809 // We want a unique VR for each IMPLICIT_DEF use.
810 return;
Christopher Lambe24f8f12007-07-26 08:12:07 +0000811
Chris Lattner749c6f62008-01-07 07:27:27 +0000812 const TargetInstrDesc &II = TII->get(Opc);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000813 unsigned NumResults = CountResults(Node);
814 unsigned NodeOperands = CountOperands(Node);
Dan Gohman42a77882008-02-16 00:36:48 +0000815 unsigned MemOperandsEnd = ComputeMemOperandsEnd(Node);
Chris Lattner349c4952008-01-07 03:13:06 +0000816 bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
817 II.getImplicitDefs() != 0;
Chris Lattnerda8abb02005-09-01 18:44:10 +0000818#ifndef NDEBUG
Evan Cheng50871242008-05-14 20:07:51 +0000819 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner349c4952008-01-07 03:13:06 +0000820 assert((II.getNumOperands() == NumMIOperands ||
Chris Lattner8f707e12008-01-07 05:19:29 +0000821 HasPhysRegOuts || II.isVariadic()) &&
Chris Lattner2d973e42005-08-18 20:07:59 +0000822 "#operands for dag node doesn't match .td file!");
Chris Lattnerca6aa2f2005-08-19 01:01:34 +0000823#endif
Chris Lattner2d973e42005-08-18 20:07:59 +0000824
825 // Create the new machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000826 MachineInstr *MI = BuildMI(II);
Chris Lattner2d973e42005-08-18 20:07:59 +0000827
828 // Add result register values for things that are defined by this
829 // instruction.
Evan Chengaf825c82007-07-10 07:08:32 +0000830 if (NumResults)
Evan Cheng84097472007-08-02 00:28:15 +0000831 CreateVirtualRegisters(Node, MI, II, VRBaseMap);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000832
833 // Emit all of the actual operands of this instruction, adding them to the
834 // instruction as appropriate.
Chris Lattnered18b682006-02-24 18:54:03 +0000835 for (unsigned i = 0; i != NodeOperands; ++i)
Chris Lattner349c4952008-01-07 03:13:06 +0000836 AddOperand(MI, Node->getOperand(i), i+II.getNumDefs(), &II, VRBaseMap);
Evan Cheng13d41b92006-05-12 01:58:24 +0000837
Dan Gohman69de1932008-02-06 22:27:42 +0000838 // Emit all of the memory operands of this instruction
Dan Gohman42a77882008-02-16 00:36:48 +0000839 for (unsigned i = NodeOperands; i != MemOperandsEnd; ++i)
Dan Gohman69de1932008-02-06 22:27:42 +0000840 AddMemOperand(MI, cast<MemOperandSDNode>(Node->getOperand(i))->MO);
841
Evan Cheng13d41b92006-05-12 01:58:24 +0000842 // Commute node if it has been determined to be profitable.
843 if (CommuteSet.count(Node)) {
844 MachineInstr *NewMI = TII->commuteInstruction(MI);
845 if (NewMI == 0)
Bill Wendling832171c2006-12-07 20:04:42 +0000846 DOUT << "Sched: COMMUTING FAILED!\n";
Evan Cheng13d41b92006-05-12 01:58:24 +0000847 else {
Bill Wendling832171c2006-12-07 20:04:42 +0000848 DOUT << "Sched: COMMUTED TO: " << *NewMI;
Evan Cheng4c6f2f92006-05-31 18:03:39 +0000849 if (MI != NewMI) {
850 delete MI;
851 MI = NewMI;
852 }
Evan Cheng643afa52008-02-28 07:40:24 +0000853 ++NumCommutes;
Evan Cheng13d41b92006-05-12 01:58:24 +0000854 }
855 }
856
Evan Cheng1b08bbc2008-02-01 09:10:45 +0000857 if (II.usesCustomDAGSchedInsertionHook())
Evan Cheng6b2cf282008-01-30 19:35:32 +0000858 // Insert this instruction into the basic block using a target
859 // specific inserter which may returns a new basic block.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000860 BB = TLI->EmitInstrWithCustomInserter(MI, BB);
Evan Cheng6b2cf282008-01-30 19:35:32 +0000861 else
862 BB->push_back(MI);
Evan Cheng84097472007-08-02 00:28:15 +0000863
864 // Additional results must be an physical register def.
865 if (HasPhysRegOuts) {
Chris Lattner349c4952008-01-07 03:13:06 +0000866 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
867 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Evan Cheng33d55952007-08-02 05:29:38 +0000868 if (Node->hasAnyUseOfValue(i))
Dan Gohman4c8c8302008-06-21 15:52:51 +0000869 EmitCopyFromReg(Node, i, IsClone, Reg, VRBaseMap);
Evan Cheng84097472007-08-02 00:28:15 +0000870 }
871 }
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000872 } else {
873 switch (Node->getOpcode()) {
874 default:
Jim Laskey16d42c62006-07-11 18:25:13 +0000875#ifndef NDEBUG
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000876 Node->dump(&DAG);
Jim Laskey16d42c62006-07-11 18:25:13 +0000877#endif
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000878 assert(0 && "This target-independent node should have been selected!");
Dan Gohman80792f32008-04-15 01:22:18 +0000879 break;
880 case ISD::EntryToken:
881 assert(0 && "EntryToken should have been excluded from the schedule!");
882 break;
883 case ISD::TokenFactor: // fall thru
Jim Laskey1ee29252007-01-26 14:34:52 +0000884 case ISD::LABEL:
Evan Chenga844bde2008-02-02 04:07:54 +0000885 case ISD::DECLARE:
Dan Gohman69de1932008-02-06 22:27:42 +0000886 case ISD::SRCVALUE:
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000887 break;
888 case ISD::CopyToReg: {
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000889 unsigned SrcReg;
890 SDOperand SrcVal = Node->getOperand(2);
891 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
892 SrcReg = R->getReg();
Evan Cheng489a87c2007-01-05 20:59:06 +0000893 else
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000894 SrcReg = getVR(SrcVal, VRBaseMap);
895
Chris Lattnera4176522005-10-30 18:54:27 +0000896 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000897 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
898 break;
899
900 const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
901 // Get the register classes of the src/dst.
902 if (TargetRegisterInfo::isVirtualRegister(SrcReg))
Evan Cheng9e233362008-03-12 22:19:41 +0000903 SrcTRC = MRI.getRegClass(SrcReg);
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000904 else
Evan Cheng676dd7c2008-03-11 07:19:34 +0000905 SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000906
907 if (TargetRegisterInfo::isVirtualRegister(DestReg))
Evan Cheng9e233362008-03-12 22:19:41 +0000908 DstTRC = MRI.getRegClass(DestReg);
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000909 else
Evan Cheng676dd7c2008-03-11 07:19:34 +0000910 DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
911 Node->getOperand(1).getValueType());
Chris Lattnerf30e1cf2008-03-09 09:15:31 +0000912 TII->copyRegToReg(*BB, BB->end(), DestReg, SrcReg, DstTRC, SrcTRC);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000913 break;
914 }
915 case ISD::CopyFromReg: {
916 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Dan Gohman4c8c8302008-06-21 15:52:51 +0000917 EmitCopyFromReg(Node, 0, IsClone, SrcReg, VRBaseMap);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000918 break;
919 }
Chris Lattneracc43bf2006-01-26 23:28:04 +0000920 case ISD::INLINEASM: {
921 unsigned NumOps = Node->getNumOperands();
922 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
923 --NumOps; // Ignore the flag operand.
924
925 // Create the inline asm machine instruction.
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000926 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::INLINEASM));
Chris Lattneracc43bf2006-01-26 23:28:04 +0000927
928 // Add the asm string as an external symbol operand.
929 const char *AsmStr =
930 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
Chris Lattnerfec65d52007-12-30 00:51:11 +0000931 MI->addOperand(MachineOperand::CreateES(AsmStr));
Chris Lattneracc43bf2006-01-26 23:28:04 +0000932
933 // Add all of the operand registers to the instruction.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000934 for (unsigned i = 2; i != NumOps;) {
935 unsigned Flags = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
Chris Lattnerfd6d2822006-02-24 19:18:20 +0000936 unsigned NumVals = Flags >> 3;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000937
Chris Lattnerfec65d52007-12-30 00:51:11 +0000938 MI->addOperand(MachineOperand::CreateImm(Flags));
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000939 ++i; // Skip the ID value.
940
941 switch (Flags & 7) {
Chris Lattneracc43bf2006-01-26 23:28:04 +0000942 default: assert(0 && "Bad flags!");
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000943 case 1: // Use of register.
Chris Lattnerfd6d2822006-02-24 19:18:20 +0000944 for (; NumVals; --NumVals, ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000945 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner8019f412007-12-30 00:41:17 +0000946 MI->addOperand(MachineOperand::CreateReg(Reg, false));
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000947 }
Chris Lattnerdc19b702006-02-04 02:26:14 +0000948 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000949 case 2: // Def of register.
Chris Lattnerfd6d2822006-02-24 19:18:20 +0000950 for (; NumVals; --NumVals, ++i) {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000951 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner8019f412007-12-30 00:41:17 +0000952 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000953 }
Chris Lattnerdc19b702006-02-04 02:26:14 +0000954 break;
Chris Lattnerdc19b702006-02-04 02:26:14 +0000955 case 3: { // Immediate.
Chris Lattner7df31dc2007-08-25 00:53:07 +0000956 for (; NumVals; --NumVals, ++i) {
957 if (ConstantSDNode *CS =
958 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Chris Lattner8019f412007-12-30 00:41:17 +0000959 MI->addOperand(MachineOperand::CreateImm(CS->getValue()));
Dale Johanneseneb57ea72007-11-05 21:20:28 +0000960 } else if (GlobalAddressSDNode *GA =
961 dyn_cast<GlobalAddressSDNode>(Node->getOperand(i))) {
Chris Lattnerfec65d52007-12-30 00:51:11 +0000962 MI->addOperand(MachineOperand::CreateGA(GA->getGlobal(),
963 GA->getOffset()));
Dale Johanneseneb57ea72007-11-05 21:20:28 +0000964 } else {
Chris Lattnerfec65d52007-12-30 00:51:11 +0000965 BasicBlockSDNode *BB =cast<BasicBlockSDNode>(Node->getOperand(i));
966 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
Chris Lattner7df31dc2007-08-25 00:53:07 +0000967 }
Chris Lattnerefa46ce2006-10-31 20:01:56 +0000968 }
Chris Lattnerdc19b702006-02-04 02:26:14 +0000969 break;
970 }
Chris Lattnerfd6d2822006-02-24 19:18:20 +0000971 case 4: // Addressing mode.
972 // The addressing mode has been selected, just add all of the
973 // operands to the machine instruction.
974 for (; NumVals; --NumVals, ++i)
Chris Lattnerdf375062006-03-10 07:25:12 +0000975 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
Chris Lattnerfd6d2822006-02-24 19:18:20 +0000976 break;
Chris Lattnerdc19b702006-02-04 02:26:14 +0000977 }
Chris Lattneracc43bf2006-01-26 23:28:04 +0000978 }
Evan Cheng8a50f1f2008-04-03 16:36:07 +0000979 BB->push_back(MI);
Chris Lattneracc43bf2006-01-26 23:28:04 +0000980 break;
981 }
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000982 }
983 }
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000984}
985
Chris Lattnera93dfcd2006-03-05 23:51:47 +0000986void ScheduleDAG::EmitNoop() {
987 TII->insertNoop(*BB, BB->end());
988}
989
Chris Lattnerd9c4c452008-03-09 07:51:01 +0000990void ScheduleDAG::EmitCrossRCCopy(SUnit *SU,
991 DenseMap<SUnit*, unsigned> &VRBaseMap) {
Evan Cheng42d60272007-09-26 21:36:17 +0000992 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
993 I != E; ++I) {
994 if (I->isCtrl) continue; // ignore chain preds
995 if (!I->Dep->Node) {
996 // Copy to physical register.
997 DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->Dep);
998 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
999 // Find the destination physical register.
1000 unsigned Reg = 0;
1001 for (SUnit::const_succ_iterator II = SU->Succs.begin(),
1002 EE = SU->Succs.end(); II != EE; ++II) {
1003 if (I->Reg) {
1004 Reg = I->Reg;
1005 break;
1006 }
1007 }
1008 assert(I->Reg && "Unknown physical register!");
Owen Andersond10fd972007-12-31 06:32:00 +00001009 TII->copyRegToReg(*BB, BB->end(), Reg, VRI->second,
Evan Cheng42d60272007-09-26 21:36:17 +00001010 SU->CopyDstRC, SU->CopySrcRC);
1011 } else {
1012 // Copy from physical register.
1013 assert(I->Reg && "Unknown physical register!");
Evan Cheng9e233362008-03-12 22:19:41 +00001014 unsigned VRBase = MRI.createVirtualRegister(SU->CopyDstRC);
Evan Cheng42d60272007-09-26 21:36:17 +00001015 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase));
Evan Cheng97e60d92008-05-14 21:08:07 +00001016 isNew = isNew; // Silence compiler warning.
Evan Cheng42d60272007-09-26 21:36:17 +00001017 assert(isNew && "Node emitted out of order - early");
Owen Andersond10fd972007-12-31 06:32:00 +00001018 TII->copyRegToReg(*BB, BB->end(), VRBase, I->Reg,
Evan Cheng42d60272007-09-26 21:36:17 +00001019 SU->CopyDstRC, SU->CopySrcRC);
1020 }
1021 break;
1022 }
1023}
1024
Evan Cheng9e233362008-03-12 22:19:41 +00001025/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
1026/// physical register has only a single copy use, then coalesced the copy
Evan Chengdb2d7732008-03-14 00:14:55 +00001027/// if possible.
1028void ScheduleDAG::EmitLiveInCopy(MachineBasicBlock *MBB,
1029 MachineBasicBlock::iterator &InsertPos,
1030 unsigned VirtReg, unsigned PhysReg,
1031 const TargetRegisterClass *RC,
1032 DenseMap<MachineInstr*, unsigned> &CopyRegMap){
Evan Cheng9e233362008-03-12 22:19:41 +00001033 unsigned NumUses = 0;
1034 MachineInstr *UseMI = NULL;
1035 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
1036 UE = MRI.use_end(); UI != UE; ++UI) {
1037 UseMI = &*UI;
1038 if (++NumUses > 1)
1039 break;
1040 }
1041
1042 // If the number of uses is not one, or the use is not a move instruction,
Evan Chengdb2d7732008-03-14 00:14:55 +00001043 // don't coalesce. Also, only coalesce away a virtual register to virtual
1044 // register copy.
1045 bool Coalesced = false;
Evan Cheng9e233362008-03-12 22:19:41 +00001046 unsigned SrcReg, DstReg;
Evan Chengdb2d7732008-03-14 00:14:55 +00001047 if (NumUses == 1 &&
1048 TII->isMoveInstr(*UseMI, SrcReg, DstReg) &&
1049 TargetRegisterInfo::isVirtualRegister(DstReg)) {
1050 VirtReg = DstReg;
1051 Coalesced = true;
Evan Cheng9e233362008-03-12 22:19:41 +00001052 }
1053
Evan Chengdb2d7732008-03-14 00:14:55 +00001054 // Now find an ideal location to insert the copy.
1055 MachineBasicBlock::iterator Pos = InsertPos;
1056 while (Pos != MBB->begin()) {
1057 MachineInstr *PrevMI = prior(Pos);
1058 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
1059 // copyRegToReg might emit multiple instructions to do a copy.
1060 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
1061 if (CopyDstReg && !TRI->regsOverlap(CopyDstReg, PhysReg))
1062 // This is what the BB looks like right now:
1063 // r1024 = mov r0
1064 // ...
1065 // r1 = mov r1024
1066 //
1067 // We want to insert "r1025 = mov r1". Inserting this copy below the
1068 // move to r1024 makes it impossible for that move to be coalesced.
1069 //
1070 // r1025 = mov r1
1071 // r1024 = mov r0
1072 // ...
1073 // r1 = mov 1024
1074 // r2 = mov 1025
1075 break; // Woot! Found a good location.
1076 --Pos;
1077 }
1078
1079 TII->copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
1080 CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
1081 if (Coalesced) {
Evan Cheng9e233362008-03-12 22:19:41 +00001082 if (&*InsertPos == UseMI) ++InsertPos;
1083 MBB->erase(UseMI);
Evan Cheng9e233362008-03-12 22:19:41 +00001084 }
Evan Cheng9e233362008-03-12 22:19:41 +00001085}
1086
1087/// EmitLiveInCopies - If this is the first basic block in the function,
1088/// and if it has live ins that need to be copied into vregs, emit the
1089/// copies into the top of the block.
1090void ScheduleDAG::EmitLiveInCopies(MachineBasicBlock *MBB) {
Evan Chengdb2d7732008-03-14 00:14:55 +00001091 DenseMap<MachineInstr*, unsigned> CopyRegMap;
Evan Cheng9e233362008-03-12 22:19:41 +00001092 MachineBasicBlock::iterator InsertPos = MBB->begin();
1093 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1094 E = MRI.livein_end(); LI != E; ++LI)
1095 if (LI->second) {
1096 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Chengdb2d7732008-03-14 00:14:55 +00001097 EmitLiveInCopy(MBB, InsertPos, LI->second, LI->first, RC, CopyRegMap);
Evan Cheng9e233362008-03-12 22:19:41 +00001098 }
1099}
1100
Evan Chenge165a782006-05-11 23:55:42 +00001101/// EmitSchedule - Emit the machine code in scheduled order.
1102void ScheduleDAG::EmitSchedule() {
Evan Cheng9e233362008-03-12 22:19:41 +00001103 bool isEntryBB = &MF->front() == BB;
1104
1105 if (isEntryBB && !SchedLiveInCopies) {
1106 // If this is the first basic block in the function, and if it has live ins
1107 // that need to be copied into vregs, emit the copies into the top of the
1108 // block before emitting the code for the block.
1109 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1110 E = MRI.livein_end(); LI != E; ++LI)
Evan Cheng9efce632007-09-26 06:25:56 +00001111 if (LI->second) {
Evan Cheng9e233362008-03-12 22:19:41 +00001112 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Cheng6b2cf282008-01-30 19:35:32 +00001113 TII->copyRegToReg(*MF->begin(), MF->begin()->end(), LI->second,
Evan Cheng9efce632007-09-26 06:25:56 +00001114 LI->first, RC, RC);
1115 }
Chris Lattner96645412006-05-16 06:10:58 +00001116 }
Evan Cheng9e233362008-03-12 22:19:41 +00001117
Chris Lattner96645412006-05-16 06:10:58 +00001118 // Finally, emit the code for all of the scheduled instructions.
Roman Levenstein9cac5252008-04-16 16:15:27 +00001119 DenseMap<SDOperand, unsigned> VRBaseMap;
Evan Cheng42d60272007-09-26 21:36:17 +00001120 DenseMap<SUnit*, unsigned> CopyVRBaseMap;
Evan Chenge165a782006-05-11 23:55:42 +00001121 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001122 SUnit *SU = Sequence[i];
1123 if (!SU) {
Evan Chenge165a782006-05-11 23:55:42 +00001124 // Null SUnit* is a noop.
1125 EmitNoop();
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001126 continue;
Evan Chenge165a782006-05-11 23:55:42 +00001127 }
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001128 for (unsigned j = 0, ee = SU->FlaggedNodes.size(); j != ee; ++j)
Dan Gohman4c8c8302008-06-21 15:52:51 +00001129 EmitNode(SU->FlaggedNodes[j], SU->OrigNode != SU, VRBaseMap);
Evan Cheng8a50f1f2008-04-03 16:36:07 +00001130 if (!SU->Node)
1131 EmitCrossRCCopy(SU, CopyVRBaseMap);
1132 else
Dan Gohman4c8c8302008-06-21 15:52:51 +00001133 EmitNode(SU->Node, SU->OrigNode != SU, VRBaseMap);
Evan Chenge165a782006-05-11 23:55:42 +00001134 }
Evan Cheng9e233362008-03-12 22:19:41 +00001135
1136 if (isEntryBB && SchedLiveInCopies)
1137 EmitLiveInCopies(MF->begin());
Evan Chenge165a782006-05-11 23:55:42 +00001138}
1139
1140/// dump - dump the schedule.
1141void ScheduleDAG::dumpSchedule() const {
1142 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
1143 if (SUnit *SU = Sequence[i])
1144 SU->dump(&DAG);
1145 else
Bill Wendling832171c2006-12-07 20:04:42 +00001146 cerr << "**** NOOP ****\n";
Evan Chenge165a782006-05-11 23:55:42 +00001147 }
1148}
1149
1150
Evan Chenga9c20912006-01-21 02:32:06 +00001151/// Run - perform scheduling.
1152///
1153MachineBasicBlock *ScheduleDAG::Run() {
Evan Chenga9c20912006-01-21 02:32:06 +00001154 Schedule();
1155 return BB;
Chris Lattnerd32b2362005-08-18 18:45:24 +00001156}
Evan Cheng4ef10862006-01-23 07:01:07 +00001157
Evan Chenge165a782006-05-11 23:55:42 +00001158/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
1159/// a group of nodes flagged together.
1160void SUnit::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00001161 cerr << "SU(" << NodeNum << "): ";
Evan Cheng42d60272007-09-26 21:36:17 +00001162 if (Node)
1163 Node->dump(G);
1164 else
1165 cerr << "CROSS RC COPY ";
Bill Wendling832171c2006-12-07 20:04:42 +00001166 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001167 if (FlaggedNodes.size() != 0) {
1168 for (unsigned i = 0, e = FlaggedNodes.size(); i != e; i++) {
Bill Wendling832171c2006-12-07 20:04:42 +00001169 cerr << " ";
Evan Chenge165a782006-05-11 23:55:42 +00001170 FlaggedNodes[i]->dump(G);
Bill Wendling832171c2006-12-07 20:04:42 +00001171 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001172 }
1173 }
1174}
Evan Cheng4ef10862006-01-23 07:01:07 +00001175
Evan Chenge165a782006-05-11 23:55:42 +00001176void SUnit::dumpAll(const SelectionDAG *G) const {
1177 dump(G);
1178
Bill Wendling832171c2006-12-07 20:04:42 +00001179 cerr << " # preds left : " << NumPredsLeft << "\n";
1180 cerr << " # succs left : " << NumSuccsLeft << "\n";
Bill Wendling832171c2006-12-07 20:04:42 +00001181 cerr << " Latency : " << Latency << "\n";
1182 cerr << " Depth : " << Depth << "\n";
1183 cerr << " Height : " << Height << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001184
1185 if (Preds.size() != 0) {
Bill Wendling832171c2006-12-07 20:04:42 +00001186 cerr << " Predecessors:\n";
Chris Lattner228a18e2006-08-17 00:09:56 +00001187 for (SUnit::const_succ_iterator I = Preds.begin(), E = Preds.end();
1188 I != E; ++I) {
Evan Cheng713a98d2007-09-19 01:38:40 +00001189 if (I->isCtrl)
Bill Wendling832171c2006-12-07 20:04:42 +00001190 cerr << " ch #";
Evan Chenge165a782006-05-11 23:55:42 +00001191 else
Bill Wendling832171c2006-12-07 20:04:42 +00001192 cerr << " val #";
Evan Chenga6fb1b62007-09-25 01:54:36 +00001193 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1194 if (I->isSpecial)
1195 cerr << " *";
1196 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001197 }
1198 }
1199 if (Succs.size() != 0) {
Bill Wendling832171c2006-12-07 20:04:42 +00001200 cerr << " Successors:\n";
Chris Lattner228a18e2006-08-17 00:09:56 +00001201 for (SUnit::const_succ_iterator I = Succs.begin(), E = Succs.end();
1202 I != E; ++I) {
Evan Cheng713a98d2007-09-19 01:38:40 +00001203 if (I->isCtrl)
Bill Wendling832171c2006-12-07 20:04:42 +00001204 cerr << " ch #";
Evan Chenge165a782006-05-11 23:55:42 +00001205 else
Bill Wendling832171c2006-12-07 20:04:42 +00001206 cerr << " val #";
Evan Chenga6fb1b62007-09-25 01:54:36 +00001207 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1208 if (I->isSpecial)
1209 cerr << " *";
1210 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001211 }
1212 }
Bill Wendling832171c2006-12-07 20:04:42 +00001213 cerr << "\n";
Evan Chenge165a782006-05-11 23:55:42 +00001214}