blob: d61a0982c32ea25081619270c7a73f96a7d3f74c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===---- ScheduleDAG.cpp - Implement the ScheduleDAG class ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements a simple two pass scheduler. The first pass attempts to push
11// backward any lengthy instructions and critical paths. The second pass packs
12// instructions into semi-optimal time slots.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "pre-RA-sched"
Nate Begemane2ba64f2008-02-14 08:57:00 +000017#include "llvm/Constants.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/Type.h"
19#include "llvm/CodeGen/ScheduleDAG.h"
20#include "llvm/CodeGen/MachineConstantPool.h"
21#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng19da42d2008-04-03 16:36:07 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/Target/TargetData.h"
25#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetLowering.h"
Evan Cheng7f6ade32008-02-28 07:40:24 +000028#include "llvm/ADT/Statistic.h"
Evan Cheng8725a112008-03-12 22:19:41 +000029#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/Support/Debug.h"
31#include "llvm/Support/MathExtras.h"
32using namespace llvm;
33
Evan Cheng7f6ade32008-02-28 07:40:24 +000034STATISTIC(NumCommutes, "Number of instructions commuted");
35
Evan Cheng8725a112008-03-12 22:19:41 +000036namespace {
37 static cl::opt<bool>
38 SchedLiveInCopies("schedule-livein-copies",
39 cl::desc("Schedule copies of livein registers"),
40 cl::init(false));
41}
42
Chris Lattner1b989192007-12-31 04:13:23 +000043ScheduleDAG::ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
44 const TargetMachine &tm)
Evan Cheng8725a112008-03-12 22:19:41 +000045 : DAG(dag), BB(bb), TM(tm), MRI(BB->getParent()->getRegInfo()) {
Evan Cheng19da42d2008-04-03 16:36:07 +000046 TII = TM.getInstrInfo();
47 MF = &DAG.getMachineFunction();
48 TRI = TM.getRegisterInfo();
49 TLI = &DAG.getTargetLoweringInfo();
50 ConstPool = BB->getParent()->getConstantPool();
Chris Lattner1b989192007-12-31 04:13:23 +000051}
Evan Cheng93f143e2007-09-25 01:54:36 +000052
Evan Cheng93f143e2007-09-25 01:54:36 +000053/// CheckForPhysRegDependency - Check if the dependency between def and use of
54/// a specified operand is a physical register dependency. If so, returns the
55/// register and the cost of copying the register.
56static void CheckForPhysRegDependency(SDNode *Def, SDNode *Use, unsigned Op,
Dan Gohman1e57df32008-02-10 18:45:23 +000057 const TargetRegisterInfo *TRI,
Evan Cheng93f143e2007-09-25 01:54:36 +000058 const TargetInstrInfo *TII,
59 unsigned &PhysReg, int &Cost) {
60 if (Op != 2 || Use->getOpcode() != ISD::CopyToReg)
61 return;
62
63 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +000064 if (TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng93f143e2007-09-25 01:54:36 +000065 return;
66
67 unsigned ResNo = Use->getOperand(2).ResNo;
68 if (Def->isTargetOpcode()) {
Chris Lattner5b930372008-01-07 07:27:27 +000069 const TargetInstrDesc &II = TII->get(Def->getTargetOpcode());
Chris Lattner0c2a4f32008-01-07 03:13:06 +000070 if (ResNo >= II.getNumDefs() &&
71 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
Evan Cheng93f143e2007-09-25 01:54:36 +000072 PhysReg = Reg;
73 const TargetRegisterClass *RC =
Evan Cheng14cc83f2008-03-11 07:19:34 +000074 TRI->getPhysicalRegisterRegClass(Reg, Def->getValueType(ResNo));
Evan Cheng93f143e2007-09-25 01:54:36 +000075 Cost = RC->getCopyCost();
76 }
77 }
78}
79
80SUnit *ScheduleDAG::Clone(SUnit *Old) {
81 SUnit *SU = NewSUnit(Old->Node);
Dan Gohmanab162912008-06-21 15:52:51 +000082 SU->OrigNode = Old->OrigNode;
Dan Gohmanb100d802008-03-10 23:48:14 +000083 SU->FlaggedNodes = Old->FlaggedNodes;
Evan Cheng93f143e2007-09-25 01:54:36 +000084 SU->Latency = Old->Latency;
85 SU->isTwoAddress = Old->isTwoAddress;
86 SU->isCommutable = Old->isCommutable;
Evan Chengba597da2007-09-28 22:32:30 +000087 SU->hasPhysRegDefs = Old->hasPhysRegDefs;
Evan Cheng93f143e2007-09-25 01:54:36 +000088 return SU;
89}
90
Evan Chengdd3f8b92007-10-05 01:39:18 +000091
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092/// BuildSchedUnits - Build SUnits from the selection dag that we are input.
93/// This SUnit graph is similar to the SelectionDAG, but represents flagged
94/// together nodes with a single SUnit.
95void ScheduleDAG::BuildSchedUnits() {
96 // Reserve entries in the vector for each of the SUnits we are creating. This
97 // ensure that reallocation of the vector won't happen, so SUnit*'s won't get
98 // invalidated.
Dan Gohman17495de2008-06-20 17:15:19 +000099 SUnits.reserve(DAG.allnodes_size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101 for (SelectionDAG::allnodes_iterator NI = DAG.allnodes_begin(),
102 E = DAG.allnodes_end(); NI != E; ++NI) {
103 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate.
104 continue;
105
106 // If this node has already been processed, stop now.
Dan Gohmanab162912008-06-21 15:52:51 +0000107 if (SUnitMap.count(NI)) continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108
109 SUnit *NodeSUnit = NewSUnit(NI);
110
111 // See if anything is flagged to this node, if so, add them to flagged
112 // nodes. Nodes can have at most one flag input and one flag output. Flags
113 // are required the be the last operand and result of a node.
114
115 // Scan up, adding flagged preds to FlaggedNodes.
116 SDNode *N = NI;
117 if (N->getNumOperands() &&
118 N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Flag) {
119 do {
120 N = N->getOperand(N->getNumOperands()-1).Val;
121 NodeSUnit->FlaggedNodes.push_back(N);
Dan Gohmanab162912008-06-21 15:52:51 +0000122 bool isNew = SUnitMap.insert(std::make_pair(N, NodeSUnit));
123 isNew = isNew;
124 assert(isNew && "Node already inserted!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 } while (N->getNumOperands() &&
126 N->getOperand(N->getNumOperands()-1).getValueType()== MVT::Flag);
127 std::reverse(NodeSUnit->FlaggedNodes.begin(),
128 NodeSUnit->FlaggedNodes.end());
129 }
130
131 // Scan down, adding this node and any flagged succs to FlaggedNodes if they
132 // have a user of the flag operand.
133 N = NI;
134 while (N->getValueType(N->getNumValues()-1) == MVT::Flag) {
135 SDOperand FlagVal(N, N->getNumValues()-1);
136
137 // There are either zero or one users of the Flag result.
138 bool HasFlagUse = false;
139 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
140 UI != E; ++UI)
Roman Levenstein05650fd2008-04-07 10:06:32 +0000141 if (FlagVal.isOperandOf(UI->getUser())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 HasFlagUse = true;
143 NodeSUnit->FlaggedNodes.push_back(N);
Dan Gohmanab162912008-06-21 15:52:51 +0000144 bool isNew = SUnitMap.insert(std::make_pair(N, NodeSUnit));
145 isNew = isNew;
146 assert(isNew && "Node already inserted!");
Roman Levenstein05650fd2008-04-07 10:06:32 +0000147 N = UI->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 break;
149 }
150 if (!HasFlagUse) break;
151 }
152
153 // Now all flagged nodes are in FlaggedNodes and N is the bottom-most node.
154 // Update the SUnit
155 NodeSUnit->Node = N;
Dan Gohmanab162912008-06-21 15:52:51 +0000156 bool isNew = SUnitMap.insert(std::make_pair(N, NodeSUnit));
157 isNew = isNew;
158 assert(isNew && "Node already inserted!");
Evan Chengdd3f8b92007-10-05 01:39:18 +0000159
160 ComputeLatency(NodeSUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 }
162
163 // Pass 2: add the preds, succs, etc.
164 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) {
165 SUnit *SU = &SUnits[su];
166 SDNode *MainNode = SU->Node;
167
168 if (MainNode->isTargetOpcode()) {
169 unsigned Opc = MainNode->getTargetOpcode();
Chris Lattner5b930372008-01-07 07:27:27 +0000170 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000171 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
Evan Cheng93f143e2007-09-25 01:54:36 +0000172 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 SU->isTwoAddress = true;
174 break;
175 }
176 }
Chris Lattnerd8529ab2008-01-07 06:42:05 +0000177 if (TID.isCommutable())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 SU->isCommutable = true;
179 }
180
181 // Find all predecessors and successors of the group.
182 // Temporarily add N to make code simpler.
183 SU->FlaggedNodes.push_back(MainNode);
184
185 for (unsigned n = 0, e = SU->FlaggedNodes.size(); n != e; ++n) {
186 SDNode *N = SU->FlaggedNodes[n];
Evan Chengba597da2007-09-28 22:32:30 +0000187 if (N->isTargetOpcode() &&
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000188 TII->get(N->getTargetOpcode()).getImplicitDefs() &&
189 CountResults(N) > TII->get(N->getTargetOpcode()).getNumDefs())
Evan Chengba597da2007-09-28 22:32:30 +0000190 SU->hasPhysRegDefs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191
192 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
193 SDNode *OpN = N->getOperand(i).Val;
194 if (isPassiveNode(OpN)) continue; // Not scheduled.
Dan Gohmanab162912008-06-21 15:52:51 +0000195 SUnit *OpSU = SUnitMap[OpN];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 assert(OpSU && "Node has no SUnit!");
197 if (OpSU == SU) continue; // In the same group.
198
Duncan Sands92c43912008-06-06 12:08:01 +0000199 MVT OpVT = N->getOperand(i).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200 assert(OpVT != MVT::Flag && "Flagged nodes should be in same sunit!");
201 bool isChain = OpVT == MVT::Other;
Evan Cheng93f143e2007-09-25 01:54:36 +0000202
203 unsigned PhysReg = 0;
204 int Cost = 1;
205 // Determine if this is a physical register dependency.
Dan Gohman1e57df32008-02-10 18:45:23 +0000206 CheckForPhysRegDependency(OpN, N, i, TRI, TII, PhysReg, Cost);
Evan Cheng93f143e2007-09-25 01:54:36 +0000207 SU->addPred(OpSU, isChain, false, PhysReg, Cost);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 }
209 }
210
211 // Remove MainNode from FlaggedNodes again.
212 SU->FlaggedNodes.pop_back();
213 }
214
215 return;
216}
217
Evan Chengdd3f8b92007-10-05 01:39:18 +0000218void ScheduleDAG::ComputeLatency(SUnit *SU) {
219 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
220
221 // Compute the latency for the node. We use the sum of the latencies for
222 // all nodes flagged together into this SUnit.
223 if (InstrItins.isEmpty()) {
224 // No latency information.
225 SU->Latency = 1;
226 } else {
227 SU->Latency = 0;
228 if (SU->Node->isTargetOpcode()) {
Chris Lattner3d54fcd2008-01-07 02:46:03 +0000229 unsigned SchedClass =
230 TII->get(SU->Node->getTargetOpcode()).getSchedClass();
Dan Gohman12300e12008-03-25 21:45:14 +0000231 const InstrStage *S = InstrItins.begin(SchedClass);
232 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengdd3f8b92007-10-05 01:39:18 +0000233 for (; S != E; ++S)
234 SU->Latency += S->Cycles;
235 }
236 for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i) {
237 SDNode *FNode = SU->FlaggedNodes[i];
238 if (FNode->isTargetOpcode()) {
Chris Lattner3d54fcd2008-01-07 02:46:03 +0000239 unsigned SchedClass =TII->get(FNode->getTargetOpcode()).getSchedClass();
Dan Gohman12300e12008-03-25 21:45:14 +0000240 const InstrStage *S = InstrItins.begin(SchedClass);
241 const InstrStage *E = InstrItins.end(SchedClass);
Evan Chengdd3f8b92007-10-05 01:39:18 +0000242 for (; S != E; ++S)
243 SU->Latency += S->Cycles;
244 }
245 }
246 }
247}
248
Roman Levenstein1db9b822008-03-04 11:19:43 +0000249/// CalculateDepths - compute depths using algorithms for the longest
250/// paths in the DAG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251void ScheduleDAG::CalculateDepths() {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000252 unsigned DAGSize = SUnits.size();
253 std::vector<unsigned> InDegree(DAGSize);
254 std::vector<SUnit*> WorkList;
255 WorkList.reserve(DAGSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256
Roman Levenstein1db9b822008-03-04 11:19:43 +0000257 // Initialize the data structures
258 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
259 SUnit *SU = &SUnits[i];
260 int NodeNum = SU->NodeNum;
261 unsigned Degree = SU->Preds.size();
262 InDegree[NodeNum] = Degree;
263 SU->Depth = 0;
264
265 // Is it a node without dependencies?
266 if (Degree == 0) {
267 assert(SU->Preds.empty() && "SUnit should have no predecessors");
268 // Collect leaf nodes
269 WorkList.push_back(SU);
270 }
271 }
272
273 // Process nodes in the topological order
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 while (!WorkList.empty()) {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000275 SUnit *SU = WorkList.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 WorkList.pop_back();
Roman Levenstein1db9b822008-03-04 11:19:43 +0000277 unsigned &SUDepth = SU->Depth;
278
279 // Use dynamic programming:
280 // When current node is being processed, all of its dependencies
281 // are already processed.
282 // So, just iterate over all predecessors and take the longest path
283 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
284 I != E; ++I) {
285 unsigned PredDepth = I->Dep->Depth;
286 if (PredDepth+1 > SUDepth) {
287 SUDepth = PredDepth + 1;
288 }
289 }
290
291 // Update InDegrees of all nodes depending on current SUnit
292 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
293 I != E; ++I) {
294 SUnit *SU = I->Dep;
295 if (!--InDegree[SU->NodeNum])
296 // If all dependencies of the node are processed already,
297 // then the longest path for the node can be computed now
298 WorkList.push_back(SU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 }
300 }
301}
302
Roman Levenstein1db9b822008-03-04 11:19:43 +0000303/// CalculateHeights - compute heights using algorithms for the longest
304/// paths in the DAG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305void ScheduleDAG::CalculateHeights() {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000306 unsigned DAGSize = SUnits.size();
307 std::vector<unsigned> InDegree(DAGSize);
308 std::vector<SUnit*> WorkList;
309 WorkList.reserve(DAGSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310
Roman Levenstein1db9b822008-03-04 11:19:43 +0000311 // Initialize the data structures
312 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
313 SUnit *SU = &SUnits[i];
314 int NodeNum = SU->NodeNum;
315 unsigned Degree = SU->Succs.size();
316 InDegree[NodeNum] = Degree;
317 SU->Height = 0;
318
319 // Is it a node without dependencies?
320 if (Degree == 0) {
321 assert(SU->Succs.empty() && "Something wrong");
322 assert(WorkList.empty() && "Should be empty");
323 // Collect leaf nodes
324 WorkList.push_back(SU);
325 }
326 }
327
328 // Process nodes in the topological order
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329 while (!WorkList.empty()) {
Roman Levenstein1db9b822008-03-04 11:19:43 +0000330 SUnit *SU = WorkList.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331 WorkList.pop_back();
Roman Levenstein1db9b822008-03-04 11:19:43 +0000332 unsigned &SUHeight = SU->Height;
333
334 // Use dynamic programming:
335 // When current node is being processed, all of its dependencies
336 // are already processed.
337 // So, just iterate over all successors and take the longest path
338 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
339 I != E; ++I) {
340 unsigned SuccHeight = I->Dep->Height;
341 if (SuccHeight+1 > SUHeight) {
342 SUHeight = SuccHeight + 1;
343 }
344 }
345
346 // Update InDegrees of all nodes depending on current SUnit
347 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
348 I != E; ++I) {
349 SUnit *SU = I->Dep;
350 if (!--InDegree[SU->NodeNum])
351 // If all dependencies of the node are processed already,
352 // then the longest path for the node can be computed now
353 WorkList.push_back(SU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354 }
355 }
356}
357
358/// CountResults - The results of target nodes have register or immediate
359/// operands first, then an optional chain, and optional flag operands (which do
Dan Gohman0256f1e2008-02-11 19:00:03 +0000360/// not go into the resulting MachineInstr).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361unsigned ScheduleDAG::CountResults(SDNode *Node) {
362 unsigned N = Node->getNumValues();
363 while (N && Node->getValueType(N - 1) == MVT::Flag)
364 --N;
365 if (N && Node->getValueType(N - 1) == MVT::Other)
366 --N; // Skip over chain result.
367 return N;
368}
369
Dan Gohman12a9c082008-02-06 22:27:42 +0000370/// CountOperands - The inputs to target nodes have any actual inputs first,
Dan Gohmance256462008-02-16 00:36:48 +0000371/// followed by special operands that describe memory references, then an
372/// optional chain operand, then flag operands. Compute the number of
373/// actual operands that will go into the resulting MachineInstr.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374unsigned ScheduleDAG::CountOperands(SDNode *Node) {
Dan Gohmance256462008-02-16 00:36:48 +0000375 unsigned N = ComputeMemOperandsEnd(Node);
Dan Gohman206208c2008-02-11 19:00:34 +0000376 while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
Dan Gohman1fad9e62008-04-07 19:35:22 +0000377 --N; // Ignore MEMOPERAND nodes
Dan Gohman12a9c082008-02-06 22:27:42 +0000378 return N;
379}
380
Dan Gohmance256462008-02-16 00:36:48 +0000381/// ComputeMemOperandsEnd - Find the index one past the last MemOperandSDNode
382/// operand
383unsigned ScheduleDAG::ComputeMemOperandsEnd(SDNode *Node) {
Dan Gohman12a9c082008-02-06 22:27:42 +0000384 unsigned N = Node->getNumOperands();
385 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
386 --N;
387 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
388 --N; // Ignore chain if it exists.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 return N;
390}
391
392static const TargetRegisterClass *getInstrOperandRegClass(
Dan Gohman1e57df32008-02-10 18:45:23 +0000393 const TargetRegisterInfo *TRI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 const TargetInstrInfo *TII,
Chris Lattner5b930372008-01-07 07:27:27 +0000395 const TargetInstrDesc &II,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 unsigned Op) {
Chris Lattner5b930372008-01-07 07:27:27 +0000397 if (Op >= II.getNumOperands()) {
398 assert(II.isVariadic() && "Invalid operand # of instruction");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 return NULL;
400 }
Chris Lattner5b930372008-01-07 07:27:27 +0000401 if (II.OpInfo[Op].isLookupPtrRegClass())
Chris Lattnereeedb482008-01-07 02:39:19 +0000402 return TII->getPointerRegClass();
Dan Gohman1e57df32008-02-10 18:45:23 +0000403 return TRI->getRegClass(II.OpInfo[Op].RegClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404}
405
Evan Cheng93f143e2007-09-25 01:54:36 +0000406void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
Dan Gohmanab162912008-06-21 15:52:51 +0000407 bool IsClone, unsigned SrcReg,
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000408 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng26639782007-08-02 00:28:15 +0000409 unsigned VRBase = 0;
Dan Gohman1e57df32008-02-10 18:45:23 +0000410 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Cheng26639782007-08-02 00:28:15 +0000411 // Just use the input register directly!
Dan Gohmanab162912008-06-21 15:52:51 +0000412 if (IsClone)
Evan Cheng93f143e2007-09-25 01:54:36 +0000413 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng26639782007-08-02 00:28:15 +0000414 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo),SrcReg));
Evan Chenga6fe65a2008-05-14 21:08:07 +0000415 isNew = isNew; // Silence compiler warning.
Evan Cheng26639782007-08-02 00:28:15 +0000416 assert(isNew && "Node emitted out of order - early");
417 return;
418 }
419
420 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
421 // the CopyToReg'd destination register instead of creating a new vreg.
Evan Cheng93f143e2007-09-25 01:54:36 +0000422 bool MatchReg = true;
Evan Cheng26639782007-08-02 00:28:15 +0000423 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
424 UI != E; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +0000425 SDNode *Use = UI->getUser();
Evan Cheng93f143e2007-09-25 01:54:36 +0000426 bool Match = true;
Evan Cheng26639782007-08-02 00:28:15 +0000427 if (Use->getOpcode() == ISD::CopyToReg &&
428 Use->getOperand(2).Val == Node &&
429 Use->getOperand(2).ResNo == ResNo) {
430 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000431 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Evan Cheng26639782007-08-02 00:28:15 +0000432 VRBase = DestReg;
Evan Cheng93f143e2007-09-25 01:54:36 +0000433 Match = false;
434 } else if (DestReg != SrcReg)
435 Match = false;
436 } else {
437 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
438 SDOperand Op = Use->getOperand(i);
Evan Cheng4f0345c2007-12-14 08:25:15 +0000439 if (Op.Val != Node || Op.ResNo != ResNo)
Evan Cheng93f143e2007-09-25 01:54:36 +0000440 continue;
Duncan Sands92c43912008-06-06 12:08:01 +0000441 MVT VT = Node->getValueType(Op.ResNo);
Evan Cheng93f143e2007-09-25 01:54:36 +0000442 if (VT != MVT::Other && VT != MVT::Flag)
443 Match = false;
Evan Cheng26639782007-08-02 00:28:15 +0000444 }
445 }
Evan Cheng93f143e2007-09-25 01:54:36 +0000446 MatchReg &= Match;
447 if (VRBase)
448 break;
Evan Cheng26639782007-08-02 00:28:15 +0000449 }
450
Chris Lattnere6fdb062008-03-09 08:49:15 +0000451 const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
Evan Cheng14cc83f2008-03-11 07:19:34 +0000452 SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, Node->getValueType(ResNo));
Chris Lattnere6fdb062008-03-09 08:49:15 +0000453
Evan Cheng93f143e2007-09-25 01:54:36 +0000454 // Figure out the register class to create for the destreg.
Chris Lattnere6fdb062008-03-09 08:49:15 +0000455 if (VRBase) {
Evan Cheng8725a112008-03-12 22:19:41 +0000456 DstRC = MRI.getRegClass(VRBase);
Chris Lattnere6fdb062008-03-09 08:49:15 +0000457 } else {
Evan Cheng19da42d2008-04-03 16:36:07 +0000458 DstRC = TLI->getRegClassFor(Node->getValueType(ResNo));
Chris Lattnere6fdb062008-03-09 08:49:15 +0000459 }
Evan Cheng93f143e2007-09-25 01:54:36 +0000460
461 // If all uses are reading from the src physical register and copying the
462 // register is either impossible or very expensive, then don't create a copy.
Chris Lattnere6fdb062008-03-09 08:49:15 +0000463 if (MatchReg && SrcRC->getCopyCost() < 0) {
Evan Cheng93f143e2007-09-25 01:54:36 +0000464 VRBase = SrcReg;
465 } else {
Evan Cheng26639782007-08-02 00:28:15 +0000466 // Create the reg, emit the copy.
Evan Cheng8725a112008-03-12 22:19:41 +0000467 VRBase = MRI.createVirtualRegister(DstRC);
Chris Lattnere6fdb062008-03-09 08:49:15 +0000468 TII->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, DstRC, SrcRC);
Evan Cheng26639782007-08-02 00:28:15 +0000469 }
Evan Cheng26639782007-08-02 00:28:15 +0000470
Dan Gohmanab162912008-06-21 15:52:51 +0000471 if (IsClone)
Evan Cheng93f143e2007-09-25 01:54:36 +0000472 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng26639782007-08-02 00:28:15 +0000473 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo), VRBase));
Evan Chenga6fe65a2008-05-14 21:08:07 +0000474 isNew = isNew; // Silence compiler warning.
Evan Cheng26639782007-08-02 00:28:15 +0000475 assert(isNew && "Node emitted out of order - early");
476}
477
Evan Cheng19da42d2008-04-03 16:36:07 +0000478/// getDstOfCopyToRegUse - If the only use of the specified result number of
479/// node is a CopyToReg, return its destination register. Return 0 otherwise.
480unsigned ScheduleDAG::getDstOfOnlyCopyToRegUse(SDNode *Node,
481 unsigned ResNo) const {
482 if (!Node->hasOneUse())
483 return 0;
484
Roman Levenstein05650fd2008-04-07 10:06:32 +0000485 SDNode *Use = Node->use_begin()->getUser();
Evan Cheng19da42d2008-04-03 16:36:07 +0000486 if (Use->getOpcode() == ISD::CopyToReg &&
487 Use->getOperand(2).Val == Node &&
488 Use->getOperand(2).ResNo == ResNo) {
489 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
490 if (TargetRegisterInfo::isVirtualRegister(Reg))
491 return Reg;
492 }
493 return 0;
494}
495
Evan Cheng3c0eda52008-03-15 00:03:38 +0000496void ScheduleDAG::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
Evan Cheng19da42d2008-04-03 16:36:07 +0000497 const TargetInstrDesc &II,
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000498 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng19da42d2008-04-03 16:36:07 +0000499 assert(Node->getTargetOpcode() != TargetInstrInfo::IMPLICIT_DEF &&
500 "IMPLICIT_DEF should have been handled as a special case elsewhere!");
501
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000502 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 // If the specific node value is only used by a CopyToReg and the dest reg
504 // is a vreg, use the CopyToReg'd destination register instead of creating
505 // a new vreg.
506 unsigned VRBase = 0;
507 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
508 UI != E; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +0000509 SDNode *Use = UI->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 if (Use->getOpcode() == ISD::CopyToReg &&
511 Use->getOperand(2).Val == Node &&
512 Use->getOperand(2).ResNo == i) {
513 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000514 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 VRBase = Reg;
Chris Lattner63ab1f22007-12-30 00:41:17 +0000516 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 break;
518 }
519 }
520 }
521
Evan Cheng26639782007-08-02 00:28:15 +0000522 // Create the result registers for this node and add the result regs to
523 // the machine instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 if (VRBase == 0) {
Evan Cheng19da42d2008-04-03 16:36:07 +0000525 const TargetRegisterClass *RC = getInstrOperandRegClass(TRI, TII, II, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 assert(RC && "Isn't a register operand!");
Evan Cheng8725a112008-03-12 22:19:41 +0000527 VRBase = MRI.createVirtualRegister(RC);
Chris Lattner63ab1f22007-12-30 00:41:17 +0000528 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 }
530
531 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,i), VRBase));
Evan Chenga6fe65a2008-05-14 21:08:07 +0000532 isNew = isNew; // Silence compiler warning.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 assert(isNew && "Node emitted out of order - early");
534 }
535}
536
537/// getVR - Return the virtual register corresponding to the specified result
538/// of the specified node.
Evan Cheng19da42d2008-04-03 16:36:07 +0000539unsigned ScheduleDAG::getVR(SDOperand Op,
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000540 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Evan Cheng19da42d2008-04-03 16:36:07 +0000541 if (Op.isTargetOpcode() &&
542 Op.getTargetOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
543 // Add an IMPLICIT_DEF instruction before every use.
544 unsigned VReg = getDstOfOnlyCopyToRegUse(Op.Val, Op.ResNo);
545 // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
546 // does not include operand register class info.
547 if (!VReg) {
548 const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
549 VReg = MRI.createVirtualRegister(RC);
550 }
551 BuildMI(BB, TII->get(TargetInstrInfo::IMPLICIT_DEF), VReg);
552 return VReg;
553 }
554
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000555 DenseMap<SDOperand, unsigned>::iterator I = VRBaseMap.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
557 return I->second;
558}
559
560
561/// AddOperand - Add the specified operand to the specified machine instr. II
562/// specifies the instruction information for the node, and IIOpNum is the
563/// operand number (in the II) that we are adding. IIOpNum and II are used for
564/// assertions only.
565void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
566 unsigned IIOpNum,
Chris Lattner5b930372008-01-07 07:27:27 +0000567 const TargetInstrDesc *II,
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000568 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 if (Op.isTargetOpcode()) {
570 // Note that this case is redundant with the final else block, but we
571 // include it because it is the most common and it makes the logic
572 // simpler here.
573 assert(Op.getValueType() != MVT::Other &&
574 Op.getValueType() != MVT::Flag &&
575 "Chain and flag operands should occur at end of operand list!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 // Get/emit the operand.
577 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner5b930372008-01-07 07:27:27 +0000578 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng19da42d2008-04-03 16:36:07 +0000579 bool isOptDef = IIOpNum < TID.getNumOperands() &&
580 TID.OpInfo[IIOpNum].isOptionalDef();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000581 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582
583 // Verify that it is right.
Dan Gohman1e57df32008-02-10 18:45:23 +0000584 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000585#ifndef NDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 if (II) {
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000587 // There may be no register class for this operand if it is a variadic
588 // argument (RC will be NULL in this case). In this case, we just assume
589 // the regclass is ok.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 const TargetRegisterClass *RC =
Dan Gohman1e57df32008-02-10 18:45:23 +0000591 getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
Chris Lattner92d51282008-03-11 03:14:42 +0000592 assert((RC || II->isVariadic()) && "Expected reg class info!");
Evan Cheng8725a112008-03-12 22:19:41 +0000593 const TargetRegisterClass *VRC = MRI.getRegClass(VReg);
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000594 if (RC && VRC != RC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 cerr << "Register class of operand and regclass of use don't agree!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596 cerr << "Operand = " << IIOpNum << "\n";
597 cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n";
598 cerr << "MI = "; MI->print(cerr);
599 cerr << "VReg = " << VReg << "\n";
600 cerr << "VReg RegClass size = " << VRC->getSize()
601 << ", align = " << VRC->getAlignment() << "\n";
602 cerr << "Expected RegClass size = " << RC->getSize()
603 << ", align = " << RC->getAlignment() << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 cerr << "Fatal error, aborting.\n";
605 abort();
606 }
607 }
Chris Lattnerc3d37ab2008-03-11 00:59:28 +0000608#endif
Chris Lattner8dfd3122007-12-30 00:51:11 +0000609 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000610 MI->addOperand(MachineOperand::CreateImm(C->getValue()));
Nate Begemane2ba64f2008-02-14 08:57:00 +0000611 } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
Chris Lattner5e0610f2008-04-20 00:41:09 +0000612 ConstantFP *CFP = ConstantFP::get(F->getValueAPF());
Nate Begemane2ba64f2008-02-14 08:57:00 +0000613 MI->addOperand(MachineOperand::CreateFPImm(CFP));
Chris Lattner8dfd3122007-12-30 00:51:11 +0000614 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000615 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Chris Lattner8dfd3122007-12-30 00:51:11 +0000616 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
617 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(),TGA->getOffset()));
618 } else if (BasicBlockSDNode *BB = dyn_cast<BasicBlockSDNode>(Op)) {
619 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
620 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
621 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
622 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
623 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex()));
624 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 int Offset = CP->getOffset();
626 unsigned Align = CP->getAlignment();
627 const Type *Type = CP->getType();
628 // MachineConstantPool wants an explicit alignment.
629 if (Align == 0) {
630 Align = TM.getTargetData()->getPreferredTypeAlignmentShift(Type);
631 if (Align == 0) {
632 // Alignment of vector types. FIXME!
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000633 Align = TM.getTargetData()->getABITypeSize(Type);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 Align = Log2_64(Align);
635 }
636 }
637
638 unsigned Idx;
639 if (CP->isMachineConstantPoolEntry())
640 Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align);
641 else
642 Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000643 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
644 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
645 MI->addOperand(MachineOperand::CreateES(ES->getSymbol()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646 } else {
647 assert(Op.getValueType() != MVT::Other &&
648 Op.getValueType() != MVT::Flag &&
649 "Chain and flag operands should occur at end of operand list!");
650 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner63ab1f22007-12-30 00:41:17 +0000651 MI->addOperand(MachineOperand::CreateReg(VReg, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652
Chris Lattnere6fdb062008-03-09 08:49:15 +0000653 // Verify that it is right. Note that the reg class of the physreg and the
654 // vreg don't necessarily need to match, but the target copy insertion has
655 // to be able to handle it. This handles things like copies from ST(0) to
656 // an FP vreg on x86.
Dan Gohman1e57df32008-02-10 18:45:23 +0000657 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Chris Lattner92d51282008-03-11 03:14:42 +0000658 if (II && !II->isVariadic()) {
Chris Lattnere6fdb062008-03-09 08:49:15 +0000659 assert(getInstrOperandRegClass(TRI, TII, *II, IIOpNum) &&
660 "Don't have operand info for this instruction!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661 }
662 }
663
664}
665
Dan Gohman1fad9e62008-04-07 19:35:22 +0000666void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MachineMemOperand &MO) {
Dan Gohman12a9c082008-02-06 22:27:42 +0000667 MI->addMemOperand(MO);
668}
669
Christopher Lambe95328d2007-07-26 08:12:07 +0000670// Returns the Register Class of a subregister
671static const TargetRegisterClass *getSubRegisterRegClass(
672 const TargetRegisterClass *TRC,
673 unsigned SubIdx) {
674 // Pick the register class of the subregister
Dan Gohman1e57df32008-02-10 18:45:23 +0000675 TargetRegisterInfo::regclass_iterator I =
676 TRC->subregclasses_begin() + SubIdx-1;
Christopher Lambe95328d2007-07-26 08:12:07 +0000677 assert(I < TRC->subregclasses_end() &&
678 "Invalid subregister index for register class");
679 return *I;
680}
681
682static const TargetRegisterClass *getSuperregRegisterClass(
683 const TargetRegisterClass *TRC,
684 unsigned SubIdx,
Duncan Sands92c43912008-06-06 12:08:01 +0000685 MVT VT) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000686 // Pick the register class of the superegister for this type
Dan Gohman1e57df32008-02-10 18:45:23 +0000687 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
Christopher Lambe95328d2007-07-26 08:12:07 +0000688 E = TRC->superregclasses_end(); I != E; ++I)
689 if ((*I)->hasType(VT) && getSubRegisterRegClass(*I, SubIdx) == TRC)
690 return *I;
691 assert(false && "Couldn't find the register class");
692 return 0;
693}
694
695/// EmitSubregNode - Generate machine code for subreg nodes.
696///
697void ScheduleDAG::EmitSubregNode(SDNode *Node,
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000698 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000699 unsigned VRBase = 0;
700 unsigned Opc = Node->getTargetOpcode();
Christopher Lamb76d72da2008-03-16 03:12:01 +0000701
702 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
703 // the CopyToReg'd destination register instead of creating a new vreg.
704 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
705 UI != E; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +0000706 SDNode *Use = UI->getUser();
Christopher Lamb76d72da2008-03-16 03:12:01 +0000707 if (Use->getOpcode() == ISD::CopyToReg &&
708 Use->getOperand(2).Val == Node) {
709 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
710 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
711 VRBase = DestReg;
712 break;
Christopher Lambe95328d2007-07-26 08:12:07 +0000713 }
714 }
Christopher Lamb76d72da2008-03-16 03:12:01 +0000715 }
716
717 if (Opc == TargetInstrInfo::EXTRACT_SUBREG) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000718 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
Christopher Lambe95328d2007-07-26 08:12:07 +0000719
Christopher Lambe95328d2007-07-26 08:12:07 +0000720 // Create the extract_subreg machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000721 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::EXTRACT_SUBREG));
Christopher Lambe95328d2007-07-26 08:12:07 +0000722
723 // Figure out the register class to create for the destreg.
724 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Evan Cheng8725a112008-03-12 22:19:41 +0000725 const TargetRegisterClass *TRC = MRI.getRegClass(VReg);
Christopher Lambe95328d2007-07-26 08:12:07 +0000726 const TargetRegisterClass *SRC = getSubRegisterRegClass(TRC, SubIdx);
727
728 if (VRBase) {
729 // Grab the destination register
Evan Chengaaa364e2008-05-14 20:07:51 +0000730#ifndef NDEBUG
Evan Cheng8725a112008-03-12 22:19:41 +0000731 const TargetRegisterClass *DRC = MRI.getRegClass(VRBase);
Christopher Lambe08d9ec2008-01-31 07:09:08 +0000732 assert(SRC && DRC && SRC == DRC &&
Christopher Lambe95328d2007-07-26 08:12:07 +0000733 "Source subregister and destination must have the same class");
Evan Chengaaa364e2008-05-14 20:07:51 +0000734#endif
Christopher Lambe95328d2007-07-26 08:12:07 +0000735 } else {
736 // Create the reg
Christopher Lambe08d9ec2008-01-31 07:09:08 +0000737 assert(SRC && "Couldn't find source register class");
Evan Cheng8725a112008-03-12 22:19:41 +0000738 VRBase = MRI.createVirtualRegister(SRC);
Christopher Lambe95328d2007-07-26 08:12:07 +0000739 }
740
741 // Add def, source, and subreg index
Chris Lattner63ab1f22007-12-30 00:41:17 +0000742 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambe95328d2007-07-26 08:12:07 +0000743 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000744 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng19da42d2008-04-03 16:36:07 +0000745 BB->push_back(MI);
Christopher Lamb76d72da2008-03-16 03:12:01 +0000746 } else if (Opc == TargetInstrInfo::INSERT_SUBREG ||
747 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000748 SDOperand N0 = Node->getOperand(0);
749 SDOperand N1 = Node->getOperand(1);
750 SDOperand N2 = Node->getOperand(2);
751 unsigned SubReg = getVR(N1, VRBaseMap);
752 unsigned SubIdx = cast<ConstantSDNode>(N2)->getValue();
Christopher Lambe95328d2007-07-26 08:12:07 +0000753
Christopher Lambe95328d2007-07-26 08:12:07 +0000754
755 // Figure out the register class to create for the destreg.
756 const TargetRegisterClass *TRC = 0;
757 if (VRBase) {
Evan Cheng8725a112008-03-12 22:19:41 +0000758 TRC = MRI.getRegClass(VRBase);
Christopher Lambe95328d2007-07-26 08:12:07 +0000759 } else {
Evan Cheng8725a112008-03-12 22:19:41 +0000760 TRC = getSuperregRegisterClass(MRI.getRegClass(SubReg), SubIdx,
Christopher Lambe95328d2007-07-26 08:12:07 +0000761 Node->getValueType(0));
762 assert(TRC && "Couldn't determine register class for insert_subreg");
Evan Cheng8725a112008-03-12 22:19:41 +0000763 VRBase = MRI.createVirtualRegister(TRC); // Create the reg
Christopher Lambe95328d2007-07-26 08:12:07 +0000764 }
765
Christopher Lamb76d72da2008-03-16 03:12:01 +0000766 // Create the insert_subreg or subreg_to_reg machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000767 MachineInstr *MI = BuildMI(TII->get(Opc));
Chris Lattner63ab1f22007-12-30 00:41:17 +0000768 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000769
Christopher Lamb76d72da2008-03-16 03:12:01 +0000770 // If creating a subreg_to_reg, then the first input operand
771 // is an implicit value immediate, otherwise it's a register
772 if (Opc == TargetInstrInfo::SUBREG_TO_REG) {
773 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000774 MI->addOperand(MachineOperand::CreateImm(SD->getValue()));
Christopher Lamb76d72da2008-03-16 03:12:01 +0000775 } else
Christopher Lambd0c8eaa2008-03-11 10:09:17 +0000776 AddOperand(MI, N0, 0, 0, VRBaseMap);
777 // Add the subregster being inserted
778 AddOperand(MI, N1, 0, 0, VRBaseMap);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000779 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Evan Cheng19da42d2008-04-03 16:36:07 +0000780 BB->push_back(MI);
Christopher Lambe95328d2007-07-26 08:12:07 +0000781 } else
Christopher Lamb76d72da2008-03-16 03:12:01 +0000782 assert(0 && "Node is not insert_subreg, extract_subreg, or subreg_to_reg");
Christopher Lambe95328d2007-07-26 08:12:07 +0000783
784 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,0), VRBase));
Evan Chenga6fe65a2008-05-14 21:08:07 +0000785 isNew = isNew; // Silence compiler warning.
Christopher Lambe95328d2007-07-26 08:12:07 +0000786 assert(isNew && "Node emitted out of order - early");
787}
788
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789/// EmitNode - Generate machine code for an node and needed dependencies.
790///
Dan Gohmanab162912008-06-21 15:52:51 +0000791void ScheduleDAG::EmitNode(SDNode *Node, bool IsClone,
Roman Levenstein98b8fcb2008-04-16 16:15:27 +0000792 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000793 // If machine instruction
794 if (Node->isTargetOpcode()) {
795 unsigned Opc = Node->getTargetOpcode();
Christopher Lambe95328d2007-07-26 08:12:07 +0000796
797 // Handle subreg insert/extract specially
798 if (Opc == TargetInstrInfo::EXTRACT_SUBREG ||
Christopher Lamb76d72da2008-03-16 03:12:01 +0000799 Opc == TargetInstrInfo::INSERT_SUBREG ||
800 Opc == TargetInstrInfo::SUBREG_TO_REG) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000801 EmitSubregNode(Node, VRBaseMap);
802 return;
803 }
Evan Cheng19da42d2008-04-03 16:36:07 +0000804
805 if (Opc == TargetInstrInfo::IMPLICIT_DEF)
806 // We want a unique VR for each IMPLICIT_DEF use.
807 return;
Christopher Lambe95328d2007-07-26 08:12:07 +0000808
Chris Lattner5b930372008-01-07 07:27:27 +0000809 const TargetInstrDesc &II = TII->get(Opc);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810 unsigned NumResults = CountResults(Node);
811 unsigned NodeOperands = CountOperands(Node);
Dan Gohmance256462008-02-16 00:36:48 +0000812 unsigned MemOperandsEnd = ComputeMemOperandsEnd(Node);
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000813 bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
814 II.getImplicitDefs() != 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815#ifndef NDEBUG
Evan Chengaaa364e2008-05-14 20:07:51 +0000816 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000817 assert((II.getNumOperands() == NumMIOperands ||
Chris Lattner2fb37c02008-01-07 05:19:29 +0000818 HasPhysRegOuts || II.isVariadic()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819 "#operands for dag node doesn't match .td file!");
820#endif
821
822 // Create the new machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000823 MachineInstr *MI = BuildMI(II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824
825 // Add result register values for things that are defined by this
826 // instruction.
827 if (NumResults)
Evan Cheng26639782007-08-02 00:28:15 +0000828 CreateVirtualRegisters(Node, MI, II, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829
830 // Emit all of the actual operands of this instruction, adding them to the
831 // instruction as appropriate.
832 for (unsigned i = 0; i != NodeOperands; ++i)
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000833 AddOperand(MI, Node->getOperand(i), i+II.getNumDefs(), &II, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834
Dan Gohman12a9c082008-02-06 22:27:42 +0000835 // Emit all of the memory operands of this instruction
Dan Gohmance256462008-02-16 00:36:48 +0000836 for (unsigned i = NodeOperands; i != MemOperandsEnd; ++i)
Dan Gohman12a9c082008-02-06 22:27:42 +0000837 AddMemOperand(MI, cast<MemOperandSDNode>(Node->getOperand(i))->MO);
838
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 // Commute node if it has been determined to be profitable.
840 if (CommuteSet.count(Node)) {
841 MachineInstr *NewMI = TII->commuteInstruction(MI);
842 if (NewMI == 0)
843 DOUT << "Sched: COMMUTING FAILED!\n";
844 else {
845 DOUT << "Sched: COMMUTED TO: " << *NewMI;
846 if (MI != NewMI) {
847 delete MI;
848 MI = NewMI;
849 }
Evan Cheng7f6ade32008-02-28 07:40:24 +0000850 ++NumCommutes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 }
852 }
853
Evan Chenga53c40a2008-02-01 09:10:45 +0000854 if (II.usesCustomDAGSchedInsertionHook())
Evan Cheng2d373922008-01-30 19:35:32 +0000855 // Insert this instruction into the basic block using a target
856 // specific inserter which may returns a new basic block.
Evan Cheng19da42d2008-04-03 16:36:07 +0000857 BB = TLI->EmitInstrWithCustomInserter(MI, BB);
Evan Cheng2d373922008-01-30 19:35:32 +0000858 else
859 BB->push_back(MI);
Evan Cheng26639782007-08-02 00:28:15 +0000860
861 // Additional results must be an physical register def.
862 if (HasPhysRegOuts) {
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000863 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
864 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Evan Cheng0af04f72007-08-02 05:29:38 +0000865 if (Node->hasAnyUseOfValue(i))
Dan Gohmanab162912008-06-21 15:52:51 +0000866 EmitCopyFromReg(Node, i, IsClone, Reg, VRBaseMap);
Evan Cheng26639782007-08-02 00:28:15 +0000867 }
868 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 } else {
870 switch (Node->getOpcode()) {
871 default:
872#ifndef NDEBUG
873 Node->dump(&DAG);
874#endif
875 assert(0 && "This target-independent node should have been selected!");
Dan Gohmanb7ba05e2008-04-15 01:22:18 +0000876 break;
877 case ISD::EntryToken:
878 assert(0 && "EntryToken should have been excluded from the schedule!");
879 break;
880 case ISD::TokenFactor: // fall thru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881 case ISD::LABEL:
Evan Cheng2e28d622008-02-02 04:07:54 +0000882 case ISD::DECLARE:
Dan Gohman12a9c082008-02-06 22:27:42 +0000883 case ISD::SRCVALUE:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 break;
885 case ISD::CopyToReg: {
Chris Lattner0d128722008-03-09 09:15:31 +0000886 unsigned SrcReg;
887 SDOperand SrcVal = Node->getOperand(2);
888 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
889 SrcReg = R->getReg();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 else
Chris Lattner0d128722008-03-09 09:15:31 +0000891 SrcReg = getVR(SrcVal, VRBaseMap);
892
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000893 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Chris Lattner0d128722008-03-09 09:15:31 +0000894 if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
895 break;
896
897 const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
898 // Get the register classes of the src/dst.
899 if (TargetRegisterInfo::isVirtualRegister(SrcReg))
Evan Cheng8725a112008-03-12 22:19:41 +0000900 SrcTRC = MRI.getRegClass(SrcReg);
Chris Lattner0d128722008-03-09 09:15:31 +0000901 else
Evan Cheng14cc83f2008-03-11 07:19:34 +0000902 SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
Chris Lattner0d128722008-03-09 09:15:31 +0000903
904 if (TargetRegisterInfo::isVirtualRegister(DestReg))
Evan Cheng8725a112008-03-12 22:19:41 +0000905 DstTRC = MRI.getRegClass(DestReg);
Chris Lattner0d128722008-03-09 09:15:31 +0000906 else
Evan Cheng14cc83f2008-03-11 07:19:34 +0000907 DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
908 Node->getOperand(1).getValueType());
Chris Lattner0d128722008-03-09 09:15:31 +0000909 TII->copyRegToReg(*BB, BB->end(), DestReg, SrcReg, DstTRC, SrcTRC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 break;
911 }
912 case ISD::CopyFromReg: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000913 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Dan Gohmanab162912008-06-21 15:52:51 +0000914 EmitCopyFromReg(Node, 0, IsClone, SrcReg, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 break;
916 }
917 case ISD::INLINEASM: {
918 unsigned NumOps = Node->getNumOperands();
919 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
920 --NumOps; // Ignore the flag operand.
921
922 // Create the inline asm machine instruction.
Evan Cheng19da42d2008-04-03 16:36:07 +0000923 MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::INLINEASM));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924
925 // Add the asm string as an external symbol operand.
926 const char *AsmStr =
927 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
Chris Lattner8dfd3122007-12-30 00:51:11 +0000928 MI->addOperand(MachineOperand::CreateES(AsmStr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929
930 // Add all of the operand registers to the instruction.
931 for (unsigned i = 2; i != NumOps;) {
932 unsigned Flags = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
933 unsigned NumVals = Flags >> 3;
934
Chris Lattner8dfd3122007-12-30 00:51:11 +0000935 MI->addOperand(MachineOperand::CreateImm(Flags));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 ++i; // Skip the ID value.
937
938 switch (Flags & 7) {
939 default: assert(0 && "Bad flags!");
940 case 1: // Use of register.
941 for (; NumVals; --NumVals, ++i) {
942 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000943 MI->addOperand(MachineOperand::CreateReg(Reg, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000944 }
945 break;
946 case 2: // Def of register.
947 for (; NumVals; --NumVals, ++i) {
948 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000949 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000950 }
951 break;
952 case 3: { // Immediate.
Chris Lattner23544c12007-08-25 00:53:07 +0000953 for (; NumVals; --NumVals, ++i) {
954 if (ConstantSDNode *CS =
955 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000956 MI->addOperand(MachineOperand::CreateImm(CS->getValue()));
Dale Johannesencfb19e62007-11-05 21:20:28 +0000957 } else if (GlobalAddressSDNode *GA =
958 dyn_cast<GlobalAddressSDNode>(Node->getOperand(i))) {
Chris Lattner8dfd3122007-12-30 00:51:11 +0000959 MI->addOperand(MachineOperand::CreateGA(GA->getGlobal(),
960 GA->getOffset()));
Dale Johannesencfb19e62007-11-05 21:20:28 +0000961 } else {
Chris Lattner8dfd3122007-12-30 00:51:11 +0000962 BasicBlockSDNode *BB =cast<BasicBlockSDNode>(Node->getOperand(i));
963 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
Chris Lattner23544c12007-08-25 00:53:07 +0000964 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000965 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 break;
967 }
968 case 4: // Addressing mode.
969 // The addressing mode has been selected, just add all of the
970 // operands to the machine instruction.
971 for (; NumVals; --NumVals, ++i)
972 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
973 break;
974 }
975 }
Evan Cheng19da42d2008-04-03 16:36:07 +0000976 BB->push_back(MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 break;
978 }
979 }
980 }
981}
982
983void ScheduleDAG::EmitNoop() {
984 TII->insertNoop(*BB, BB->end());
985}
986
Chris Lattner4e15fcc2008-03-09 07:51:01 +0000987void ScheduleDAG::EmitCrossRCCopy(SUnit *SU,
988 DenseMap<SUnit*, unsigned> &VRBaseMap) {
Evan Cheng5ec4b762007-09-26 21:36:17 +0000989 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
990 I != E; ++I) {
991 if (I->isCtrl) continue; // ignore chain preds
992 if (!I->Dep->Node) {
993 // Copy to physical register.
994 DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->Dep);
995 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
996 // Find the destination physical register.
997 unsigned Reg = 0;
998 for (SUnit::const_succ_iterator II = SU->Succs.begin(),
999 EE = SU->Succs.end(); II != EE; ++II) {
1000 if (I->Reg) {
1001 Reg = I->Reg;
1002 break;
1003 }
1004 }
1005 assert(I->Reg && "Unknown physical register!");
Owen Anderson8f2c8932007-12-31 06:32:00 +00001006 TII->copyRegToReg(*BB, BB->end(), Reg, VRI->second,
Evan Cheng5ec4b762007-09-26 21:36:17 +00001007 SU->CopyDstRC, SU->CopySrcRC);
1008 } else {
1009 // Copy from physical register.
1010 assert(I->Reg && "Unknown physical register!");
Evan Cheng8725a112008-03-12 22:19:41 +00001011 unsigned VRBase = MRI.createVirtualRegister(SU->CopyDstRC);
Evan Cheng5ec4b762007-09-26 21:36:17 +00001012 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase));
Evan Chenga6fe65a2008-05-14 21:08:07 +00001013 isNew = isNew; // Silence compiler warning.
Evan Cheng5ec4b762007-09-26 21:36:17 +00001014 assert(isNew && "Node emitted out of order - early");
Owen Anderson8f2c8932007-12-31 06:32:00 +00001015 TII->copyRegToReg(*BB, BB->end(), VRBase, I->Reg,
Evan Cheng5ec4b762007-09-26 21:36:17 +00001016 SU->CopyDstRC, SU->CopySrcRC);
1017 }
1018 break;
1019 }
1020}
1021
Evan Cheng8725a112008-03-12 22:19:41 +00001022/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
1023/// physical register has only a single copy use, then coalesced the copy
Evan Chenga96f9642008-03-14 00:14:55 +00001024/// if possible.
1025void ScheduleDAG::EmitLiveInCopy(MachineBasicBlock *MBB,
1026 MachineBasicBlock::iterator &InsertPos,
1027 unsigned VirtReg, unsigned PhysReg,
1028 const TargetRegisterClass *RC,
1029 DenseMap<MachineInstr*, unsigned> &CopyRegMap){
Evan Cheng8725a112008-03-12 22:19:41 +00001030 unsigned NumUses = 0;
1031 MachineInstr *UseMI = NULL;
1032 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
1033 UE = MRI.use_end(); UI != UE; ++UI) {
1034 UseMI = &*UI;
1035 if (++NumUses > 1)
1036 break;
1037 }
1038
1039 // If the number of uses is not one, or the use is not a move instruction,
Evan Chenga96f9642008-03-14 00:14:55 +00001040 // don't coalesce. Also, only coalesce away a virtual register to virtual
1041 // register copy.
1042 bool Coalesced = false;
Evan Cheng8725a112008-03-12 22:19:41 +00001043 unsigned SrcReg, DstReg;
Evan Chenga96f9642008-03-14 00:14:55 +00001044 if (NumUses == 1 &&
1045 TII->isMoveInstr(*UseMI, SrcReg, DstReg) &&
1046 TargetRegisterInfo::isVirtualRegister(DstReg)) {
1047 VirtReg = DstReg;
1048 Coalesced = true;
Evan Cheng8725a112008-03-12 22:19:41 +00001049 }
1050
Evan Chenga96f9642008-03-14 00:14:55 +00001051 // Now find an ideal location to insert the copy.
1052 MachineBasicBlock::iterator Pos = InsertPos;
1053 while (Pos != MBB->begin()) {
1054 MachineInstr *PrevMI = prior(Pos);
1055 DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
1056 // copyRegToReg might emit multiple instructions to do a copy.
1057 unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
1058 if (CopyDstReg && !TRI->regsOverlap(CopyDstReg, PhysReg))
1059 // This is what the BB looks like right now:
1060 // r1024 = mov r0
1061 // ...
1062 // r1 = mov r1024
1063 //
1064 // We want to insert "r1025 = mov r1". Inserting this copy below the
1065 // move to r1024 makes it impossible for that move to be coalesced.
1066 //
1067 // r1025 = mov r1
1068 // r1024 = mov r0
1069 // ...
1070 // r1 = mov 1024
1071 // r2 = mov 1025
1072 break; // Woot! Found a good location.
1073 --Pos;
1074 }
1075
1076 TII->copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
1077 CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
1078 if (Coalesced) {
Evan Cheng8725a112008-03-12 22:19:41 +00001079 if (&*InsertPos == UseMI) ++InsertPos;
1080 MBB->erase(UseMI);
Evan Cheng8725a112008-03-12 22:19:41 +00001081 }
Evan Cheng8725a112008-03-12 22:19:41 +00001082}
1083
1084/// EmitLiveInCopies - If this is the first basic block in the function,
1085/// and if it has live ins that need to be copied into vregs, emit the
1086/// copies into the top of the block.
1087void ScheduleDAG::EmitLiveInCopies(MachineBasicBlock *MBB) {
Evan Chenga96f9642008-03-14 00:14:55 +00001088 DenseMap<MachineInstr*, unsigned> CopyRegMap;
Evan Cheng8725a112008-03-12 22:19:41 +00001089 MachineBasicBlock::iterator InsertPos = MBB->begin();
1090 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1091 E = MRI.livein_end(); LI != E; ++LI)
1092 if (LI->second) {
1093 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Chenga96f9642008-03-14 00:14:55 +00001094 EmitLiveInCopy(MBB, InsertPos, LI->second, LI->first, RC, CopyRegMap);
Evan Cheng8725a112008-03-12 22:19:41 +00001095 }
1096}
1097
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098/// EmitSchedule - Emit the machine code in scheduled order.
1099void ScheduleDAG::EmitSchedule() {
Evan Cheng8725a112008-03-12 22:19:41 +00001100 bool isEntryBB = &MF->front() == BB;
1101
1102 if (isEntryBB && !SchedLiveInCopies) {
1103 // If this is the first basic block in the function, and if it has live ins
1104 // that need to be copied into vregs, emit the copies into the top of the
1105 // block before emitting the code for the block.
1106 for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1107 E = MRI.livein_end(); LI != E; ++LI)
Evan Chengb3d91cf2007-09-26 06:25:56 +00001108 if (LI->second) {
Evan Cheng8725a112008-03-12 22:19:41 +00001109 const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
Evan Cheng2d373922008-01-30 19:35:32 +00001110 TII->copyRegToReg(*MF->begin(), MF->begin()->end(), LI->second,
Evan Chengb3d91cf2007-09-26 06:25:56 +00001111 LI->first, RC, RC);
1112 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 }
Evan Cheng8725a112008-03-12 22:19:41 +00001114
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001115 // Finally, emit the code for all of the scheduled instructions.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00001116 DenseMap<SDOperand, unsigned> VRBaseMap;
Evan Cheng5ec4b762007-09-26 21:36:17 +00001117 DenseMap<SUnit*, unsigned> CopyVRBaseMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
Evan Cheng19da42d2008-04-03 16:36:07 +00001119 SUnit *SU = Sequence[i];
1120 if (!SU) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121 // Null SUnit* is a noop.
1122 EmitNoop();
Evan Cheng19da42d2008-04-03 16:36:07 +00001123 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001124 }
Evan Cheng19da42d2008-04-03 16:36:07 +00001125 for (unsigned j = 0, ee = SU->FlaggedNodes.size(); j != ee; ++j)
Dan Gohmanab162912008-06-21 15:52:51 +00001126 EmitNode(SU->FlaggedNodes[j], SU->OrigNode != SU, VRBaseMap);
Evan Cheng19da42d2008-04-03 16:36:07 +00001127 if (!SU->Node)
1128 EmitCrossRCCopy(SU, CopyVRBaseMap);
1129 else
Dan Gohmanab162912008-06-21 15:52:51 +00001130 EmitNode(SU->Node, SU->OrigNode != SU, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131 }
Evan Cheng8725a112008-03-12 22:19:41 +00001132
1133 if (isEntryBB && SchedLiveInCopies)
1134 EmitLiveInCopies(MF->begin());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135}
1136
1137/// dump - dump the schedule.
1138void ScheduleDAG::dumpSchedule() const {
1139 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
1140 if (SUnit *SU = Sequence[i])
1141 SU->dump(&DAG);
1142 else
1143 cerr << "**** NOOP ****\n";
1144 }
1145}
1146
1147
1148/// Run - perform scheduling.
1149///
1150MachineBasicBlock *ScheduleDAG::Run() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 Schedule();
1152 return BB;
1153}
1154
1155/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
1156/// a group of nodes flagged together.
1157void SUnit::dump(const SelectionDAG *G) const {
1158 cerr << "SU(" << NodeNum << "): ";
Evan Cheng5ec4b762007-09-26 21:36:17 +00001159 if (Node)
1160 Node->dump(G);
1161 else
1162 cerr << "CROSS RC COPY ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 cerr << "\n";
1164 if (FlaggedNodes.size() != 0) {
1165 for (unsigned i = 0, e = FlaggedNodes.size(); i != e; i++) {
1166 cerr << " ";
1167 FlaggedNodes[i]->dump(G);
1168 cerr << "\n";
1169 }
1170 }
1171}
1172
1173void SUnit::dumpAll(const SelectionDAG *G) const {
1174 dump(G);
1175
1176 cerr << " # preds left : " << NumPredsLeft << "\n";
1177 cerr << " # succs left : " << NumSuccsLeft << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001178 cerr << " Latency : " << Latency << "\n";
1179 cerr << " Depth : " << Depth << "\n";
1180 cerr << " Height : " << Height << "\n";
1181
1182 if (Preds.size() != 0) {
1183 cerr << " Predecessors:\n";
1184 for (SUnit::const_succ_iterator I = Preds.begin(), E = Preds.end();
1185 I != E; ++I) {
Evan Chenge7959472007-09-19 01:38:40 +00001186 if (I->isCtrl)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001187 cerr << " ch #";
1188 else
1189 cerr << " val #";
Evan Cheng93f143e2007-09-25 01:54:36 +00001190 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1191 if (I->isSpecial)
1192 cerr << " *";
1193 cerr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001194 }
1195 }
1196 if (Succs.size() != 0) {
1197 cerr << " Successors:\n";
1198 for (SUnit::const_succ_iterator I = Succs.begin(), E = Succs.end();
1199 I != E; ++I) {
Evan Chenge7959472007-09-19 01:38:40 +00001200 if (I->isCtrl)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201 cerr << " ch #";
1202 else
1203 cerr << " val #";
Evan Cheng93f143e2007-09-25 01:54:36 +00001204 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1205 if (I->isSpecial)
1206 cerr << " *";
1207 cerr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001208 }
1209 }
1210 cerr << "\n";
1211}