blob: a35c9ef7a23c092dd7a273dd047519e730799379 [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"
17#include "llvm/Type.h"
18#include "llvm/CodeGen/ScheduleDAG.h"
19#include "llvm/CodeGen/MachineConstantPool.h"
20#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner1b989192007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Target/TargetData.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetLowering.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Support/MathExtras.h"
28using namespace llvm;
29
Chris Lattner1b989192007-12-31 04:13:23 +000030ScheduleDAG::ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
31 const TargetMachine &tm)
32 : DAG(dag), BB(bb), TM(tm), RegInfo(BB->getParent()->getRegInfo()) {
33 TII = TM.getInstrInfo();
Evan Cheng2d373922008-01-30 19:35:32 +000034 MF = &DAG.getMachineFunction();
Dan Gohman1e57df32008-02-10 18:45:23 +000035 TRI = TM.getRegisterInfo();
Chris Lattner1b989192007-12-31 04:13:23 +000036 ConstPool = BB->getParent()->getConstantPool();
37}
Evan Cheng93f143e2007-09-25 01:54:36 +000038
Evan Cheng93f143e2007-09-25 01:54:36 +000039/// CheckForPhysRegDependency - Check if the dependency between def and use of
40/// a specified operand is a physical register dependency. If so, returns the
41/// register and the cost of copying the register.
42static void CheckForPhysRegDependency(SDNode *Def, SDNode *Use, unsigned Op,
Dan Gohman1e57df32008-02-10 18:45:23 +000043 const TargetRegisterInfo *TRI,
Evan Cheng93f143e2007-09-25 01:54:36 +000044 const TargetInstrInfo *TII,
45 unsigned &PhysReg, int &Cost) {
46 if (Op != 2 || Use->getOpcode() != ISD::CopyToReg)
47 return;
48
49 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +000050 if (TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng93f143e2007-09-25 01:54:36 +000051 return;
52
53 unsigned ResNo = Use->getOperand(2).ResNo;
54 if (Def->isTargetOpcode()) {
Chris Lattner5b930372008-01-07 07:27:27 +000055 const TargetInstrDesc &II = TII->get(Def->getTargetOpcode());
Chris Lattner0c2a4f32008-01-07 03:13:06 +000056 if (ResNo >= II.getNumDefs() &&
57 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
Evan Cheng93f143e2007-09-25 01:54:36 +000058 PhysReg = Reg;
59 const TargetRegisterClass *RC =
Dan Gohman1e57df32008-02-10 18:45:23 +000060 TRI->getPhysicalRegisterRegClass(Def->getValueType(ResNo), Reg);
Evan Cheng93f143e2007-09-25 01:54:36 +000061 Cost = RC->getCopyCost();
62 }
63 }
64}
65
66SUnit *ScheduleDAG::Clone(SUnit *Old) {
67 SUnit *SU = NewSUnit(Old->Node);
68 for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i)
69 SU->FlaggedNodes.push_back(SU->FlaggedNodes[i]);
70 SU->InstanceNo = SUnitMap[Old->Node].size();
71 SU->Latency = Old->Latency;
72 SU->isTwoAddress = Old->isTwoAddress;
73 SU->isCommutable = Old->isCommutable;
Evan Chengba597da2007-09-28 22:32:30 +000074 SU->hasPhysRegDefs = Old->hasPhysRegDefs;
Evan Cheng93f143e2007-09-25 01:54:36 +000075 SUnitMap[Old->Node].push_back(SU);
76 return SU;
77}
78
Evan Chengdd3f8b92007-10-05 01:39:18 +000079
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080/// BuildSchedUnits - Build SUnits from the selection dag that we are input.
81/// This SUnit graph is similar to the SelectionDAG, but represents flagged
82/// together nodes with a single SUnit.
83void ScheduleDAG::BuildSchedUnits() {
84 // Reserve entries in the vector for each of the SUnits we are creating. This
85 // ensure that reallocation of the vector won't happen, so SUnit*'s won't get
86 // invalidated.
87 SUnits.reserve(std::distance(DAG.allnodes_begin(), DAG.allnodes_end()));
88
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 for (SelectionDAG::allnodes_iterator NI = DAG.allnodes_begin(),
90 E = DAG.allnodes_end(); NI != E; ++NI) {
91 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate.
92 continue;
93
94 // If this node has already been processed, stop now.
Evan Cheng93f143e2007-09-25 01:54:36 +000095 if (SUnitMap[NI].size()) continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096
97 SUnit *NodeSUnit = NewSUnit(NI);
98
99 // See if anything is flagged to this node, if so, add them to flagged
100 // nodes. Nodes can have at most one flag input and one flag output. Flags
101 // are required the be the last operand and result of a node.
102
103 // Scan up, adding flagged preds to FlaggedNodes.
104 SDNode *N = NI;
105 if (N->getNumOperands() &&
106 N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Flag) {
107 do {
108 N = N->getOperand(N->getNumOperands()-1).Val;
109 NodeSUnit->FlaggedNodes.push_back(N);
Evan Cheng93f143e2007-09-25 01:54:36 +0000110 SUnitMap[N].push_back(NodeSUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 } while (N->getNumOperands() &&
112 N->getOperand(N->getNumOperands()-1).getValueType()== MVT::Flag);
113 std::reverse(NodeSUnit->FlaggedNodes.begin(),
114 NodeSUnit->FlaggedNodes.end());
115 }
116
117 // Scan down, adding this node and any flagged succs to FlaggedNodes if they
118 // have a user of the flag operand.
119 N = NI;
120 while (N->getValueType(N->getNumValues()-1) == MVT::Flag) {
121 SDOperand FlagVal(N, N->getNumValues()-1);
122
123 // There are either zero or one users of the Flag result.
124 bool HasFlagUse = false;
125 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
126 UI != E; ++UI)
127 if (FlagVal.isOperand(*UI)) {
128 HasFlagUse = true;
129 NodeSUnit->FlaggedNodes.push_back(N);
Evan Cheng93f143e2007-09-25 01:54:36 +0000130 SUnitMap[N].push_back(NodeSUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 N = *UI;
132 break;
133 }
134 if (!HasFlagUse) break;
135 }
136
137 // Now all flagged nodes are in FlaggedNodes and N is the bottom-most node.
138 // Update the SUnit
139 NodeSUnit->Node = N;
Evan Cheng93f143e2007-09-25 01:54:36 +0000140 SUnitMap[N].push_back(NodeSUnit);
Evan Chengdd3f8b92007-10-05 01:39:18 +0000141
142 ComputeLatency(NodeSUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 }
144
145 // Pass 2: add the preds, succs, etc.
146 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) {
147 SUnit *SU = &SUnits[su];
148 SDNode *MainNode = SU->Node;
149
150 if (MainNode->isTargetOpcode()) {
151 unsigned Opc = MainNode->getTargetOpcode();
Chris Lattner5b930372008-01-07 07:27:27 +0000152 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000153 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
Evan Cheng93f143e2007-09-25 01:54:36 +0000154 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 SU->isTwoAddress = true;
156 break;
157 }
158 }
Chris Lattnerd8529ab2008-01-07 06:42:05 +0000159 if (TID.isCommutable())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 SU->isCommutable = true;
161 }
162
163 // Find all predecessors and successors of the group.
164 // Temporarily add N to make code simpler.
165 SU->FlaggedNodes.push_back(MainNode);
166
167 for (unsigned n = 0, e = SU->FlaggedNodes.size(); n != e; ++n) {
168 SDNode *N = SU->FlaggedNodes[n];
Evan Chengba597da2007-09-28 22:32:30 +0000169 if (N->isTargetOpcode() &&
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000170 TII->get(N->getTargetOpcode()).getImplicitDefs() &&
171 CountResults(N) > TII->get(N->getTargetOpcode()).getNumDefs())
Evan Chengba597da2007-09-28 22:32:30 +0000172 SU->hasPhysRegDefs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173
174 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
175 SDNode *OpN = N->getOperand(i).Val;
176 if (isPassiveNode(OpN)) continue; // Not scheduled.
Evan Cheng93f143e2007-09-25 01:54:36 +0000177 SUnit *OpSU = SUnitMap[OpN].front();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 assert(OpSU && "Node has no SUnit!");
179 if (OpSU == SU) continue; // In the same group.
180
181 MVT::ValueType OpVT = N->getOperand(i).getValueType();
182 assert(OpVT != MVT::Flag && "Flagged nodes should be in same sunit!");
183 bool isChain = OpVT == MVT::Other;
Evan Cheng93f143e2007-09-25 01:54:36 +0000184
185 unsigned PhysReg = 0;
186 int Cost = 1;
187 // Determine if this is a physical register dependency.
Dan Gohman1e57df32008-02-10 18:45:23 +0000188 CheckForPhysRegDependency(OpN, N, i, TRI, TII, PhysReg, Cost);
Evan Cheng93f143e2007-09-25 01:54:36 +0000189 SU->addPred(OpSU, isChain, false, PhysReg, Cost);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 }
191 }
192
193 // Remove MainNode from FlaggedNodes again.
194 SU->FlaggedNodes.pop_back();
195 }
196
197 return;
198}
199
Evan Chengdd3f8b92007-10-05 01:39:18 +0000200void ScheduleDAG::ComputeLatency(SUnit *SU) {
201 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
202
203 // Compute the latency for the node. We use the sum of the latencies for
204 // all nodes flagged together into this SUnit.
205 if (InstrItins.isEmpty()) {
206 // No latency information.
207 SU->Latency = 1;
208 } else {
209 SU->Latency = 0;
210 if (SU->Node->isTargetOpcode()) {
Chris Lattner3d54fcd2008-01-07 02:46:03 +0000211 unsigned SchedClass =
212 TII->get(SU->Node->getTargetOpcode()).getSchedClass();
Evan Chengdd3f8b92007-10-05 01:39:18 +0000213 InstrStage *S = InstrItins.begin(SchedClass);
214 InstrStage *E = InstrItins.end(SchedClass);
215 for (; S != E; ++S)
216 SU->Latency += S->Cycles;
217 }
218 for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i) {
219 SDNode *FNode = SU->FlaggedNodes[i];
220 if (FNode->isTargetOpcode()) {
Chris Lattner3d54fcd2008-01-07 02:46:03 +0000221 unsigned SchedClass =TII->get(FNode->getTargetOpcode()).getSchedClass();
Evan Chengdd3f8b92007-10-05 01:39:18 +0000222 InstrStage *S = InstrItins.begin(SchedClass);
223 InstrStage *E = InstrItins.end(SchedClass);
224 for (; S != E; ++S)
225 SU->Latency += S->Cycles;
226 }
227 }
228 }
229}
230
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231void ScheduleDAG::CalculateDepths() {
232 std::vector<std::pair<SUnit*, unsigned> > WorkList;
233 for (unsigned i = 0, e = SUnits.size(); i != e; ++i)
Dan Gohman301f4052008-01-29 13:02:09 +0000234 if (SUnits[i].Preds.empty())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 WorkList.push_back(std::make_pair(&SUnits[i], 0U));
236
237 while (!WorkList.empty()) {
238 SUnit *SU = WorkList.back().first;
239 unsigned Depth = WorkList.back().second;
240 WorkList.pop_back();
241 if (SU->Depth == 0 || Depth > SU->Depth) {
242 SU->Depth = Depth;
243 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
244 I != E; ++I)
Evan Chenge7959472007-09-19 01:38:40 +0000245 WorkList.push_back(std::make_pair(I->Dep, Depth+1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 }
247 }
248}
249
250void ScheduleDAG::CalculateHeights() {
251 std::vector<std::pair<SUnit*, unsigned> > WorkList;
Evan Cheng93f143e2007-09-25 01:54:36 +0000252 SUnit *Root = SUnitMap[DAG.getRoot().Val].front();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253 WorkList.push_back(std::make_pair(Root, 0U));
254
255 while (!WorkList.empty()) {
256 SUnit *SU = WorkList.back().first;
257 unsigned Height = WorkList.back().second;
258 WorkList.pop_back();
259 if (SU->Height == 0 || Height > SU->Height) {
260 SU->Height = Height;
261 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
262 I != E; ++I)
Evan Chenge7959472007-09-19 01:38:40 +0000263 WorkList.push_back(std::make_pair(I->Dep, Height+1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 }
265 }
266}
267
268/// CountResults - The results of target nodes have register or immediate
269/// operands first, then an optional chain, and optional flag operands (which do
270/// not go into the machine instrs.)
271unsigned ScheduleDAG::CountResults(SDNode *Node) {
272 unsigned N = Node->getNumValues();
273 while (N && Node->getValueType(N - 1) == MVT::Flag)
274 --N;
275 if (N && Node->getValueType(N - 1) == MVT::Other)
276 --N; // Skip over chain result.
277 return N;
278}
279
Dan Gohman12a9c082008-02-06 22:27:42 +0000280/// CountOperands - The inputs to target nodes have any actual inputs first,
281/// followed by optional memory operands chain operand, then flag operands.
282/// Compute the number of actual operands that will go into the machine istr.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283unsigned ScheduleDAG::CountOperands(SDNode *Node) {
284 unsigned N = Node->getNumOperands();
285 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
286 --N;
287 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
288 --N; // Ignore chain if it exists.
Dan Gohman12a9c082008-02-06 22:27:42 +0000289 while (N && MemOperandSDNode::classof(Node->getOperand(N - 1).Val))
290 --N; // Ignore MemOperand nodes
291 return N;
292}
293
294/// CountMemOperands - Find the index of the last MemOperandSDNode operand
295unsigned ScheduleDAG::CountMemOperands(SDNode *Node) {
296 unsigned N = Node->getNumOperands();
297 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
298 --N;
299 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
300 --N; // Ignore chain if it exists.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 return N;
302}
303
304static const TargetRegisterClass *getInstrOperandRegClass(
Dan Gohman1e57df32008-02-10 18:45:23 +0000305 const TargetRegisterInfo *TRI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 const TargetInstrInfo *TII,
Chris Lattner5b930372008-01-07 07:27:27 +0000307 const TargetInstrDesc &II,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 unsigned Op) {
Chris Lattner5b930372008-01-07 07:27:27 +0000309 if (Op >= II.getNumOperands()) {
310 assert(II.isVariadic() && "Invalid operand # of instruction");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 return NULL;
312 }
Chris Lattner5b930372008-01-07 07:27:27 +0000313 if (II.OpInfo[Op].isLookupPtrRegClass())
Chris Lattnereeedb482008-01-07 02:39:19 +0000314 return TII->getPointerRegClass();
Dan Gohman1e57df32008-02-10 18:45:23 +0000315 return TRI->getRegClass(II.OpInfo[Op].RegClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316}
317
Evan Cheng93f143e2007-09-25 01:54:36 +0000318void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
319 unsigned InstanceNo, unsigned SrcReg,
Evan Cheng26639782007-08-02 00:28:15 +0000320 DenseMap<SDOperand, unsigned> &VRBaseMap) {
321 unsigned VRBase = 0;
Dan Gohman1e57df32008-02-10 18:45:23 +0000322 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Cheng26639782007-08-02 00:28:15 +0000323 // Just use the input register directly!
Evan Cheng93f143e2007-09-25 01:54:36 +0000324 if (InstanceNo > 0)
325 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng26639782007-08-02 00:28:15 +0000326 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo),SrcReg));
327 assert(isNew && "Node emitted out of order - early");
328 return;
329 }
330
331 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
332 // the CopyToReg'd destination register instead of creating a new vreg.
Evan Cheng93f143e2007-09-25 01:54:36 +0000333 bool MatchReg = true;
Evan Cheng26639782007-08-02 00:28:15 +0000334 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
335 UI != E; ++UI) {
336 SDNode *Use = *UI;
Evan Cheng93f143e2007-09-25 01:54:36 +0000337 bool Match = true;
Evan Cheng26639782007-08-02 00:28:15 +0000338 if (Use->getOpcode() == ISD::CopyToReg &&
339 Use->getOperand(2).Val == Node &&
340 Use->getOperand(2).ResNo == ResNo) {
341 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000342 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Evan Cheng26639782007-08-02 00:28:15 +0000343 VRBase = DestReg;
Evan Cheng93f143e2007-09-25 01:54:36 +0000344 Match = false;
345 } else if (DestReg != SrcReg)
346 Match = false;
347 } else {
348 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
349 SDOperand Op = Use->getOperand(i);
Evan Cheng4f0345c2007-12-14 08:25:15 +0000350 if (Op.Val != Node || Op.ResNo != ResNo)
Evan Cheng93f143e2007-09-25 01:54:36 +0000351 continue;
352 MVT::ValueType VT = Node->getValueType(Op.ResNo);
353 if (VT != MVT::Other && VT != MVT::Flag)
354 Match = false;
Evan Cheng26639782007-08-02 00:28:15 +0000355 }
356 }
Evan Cheng93f143e2007-09-25 01:54:36 +0000357 MatchReg &= Match;
358 if (VRBase)
359 break;
Evan Cheng26639782007-08-02 00:28:15 +0000360 }
361
Evan Cheng26639782007-08-02 00:28:15 +0000362 const TargetRegisterClass *TRC = 0;
Evan Cheng93f143e2007-09-25 01:54:36 +0000363 // Figure out the register class to create for the destreg.
364 if (VRBase)
Chris Lattner1b989192007-12-31 04:13:23 +0000365 TRC = RegInfo.getRegClass(VRBase);
Evan Cheng93f143e2007-09-25 01:54:36 +0000366 else
Dan Gohman1e57df32008-02-10 18:45:23 +0000367 TRC = TRI->getPhysicalRegisterRegClass(Node->getValueType(ResNo), SrcReg);
Evan Cheng93f143e2007-09-25 01:54:36 +0000368
369 // If all uses are reading from the src physical register and copying the
370 // register is either impossible or very expensive, then don't create a copy.
371 if (MatchReg && TRC->getCopyCost() < 0) {
372 VRBase = SrcReg;
373 } else {
Evan Cheng26639782007-08-02 00:28:15 +0000374 // Create the reg, emit the copy.
Chris Lattner1b989192007-12-31 04:13:23 +0000375 VRBase = RegInfo.createVirtualRegister(TRC);
Owen Anderson8f2c8932007-12-31 06:32:00 +0000376 TII->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, TRC, TRC);
Evan Cheng26639782007-08-02 00:28:15 +0000377 }
Evan Cheng26639782007-08-02 00:28:15 +0000378
Evan Cheng93f143e2007-09-25 01:54:36 +0000379 if (InstanceNo > 0)
380 VRBaseMap.erase(SDOperand(Node, ResNo));
Evan Cheng26639782007-08-02 00:28:15 +0000381 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo), VRBase));
382 assert(isNew && "Node emitted out of order - early");
383}
384
385void ScheduleDAG::CreateVirtualRegisters(SDNode *Node,
386 MachineInstr *MI,
Chris Lattner5b930372008-01-07 07:27:27 +0000387 const TargetInstrDesc &II,
Evan Cheng26639782007-08-02 00:28:15 +0000388 DenseMap<SDOperand, unsigned> &VRBaseMap) {
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000389 for (unsigned i = 0; i < II.getNumDefs(); ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 // If the specific node value is only used by a CopyToReg and the dest reg
391 // is a vreg, use the CopyToReg'd destination register instead of creating
392 // a new vreg.
393 unsigned VRBase = 0;
394 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
395 UI != E; ++UI) {
396 SDNode *Use = *UI;
397 if (Use->getOpcode() == ISD::CopyToReg &&
398 Use->getOperand(2).Val == Node &&
399 Use->getOperand(2).ResNo == i) {
400 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000401 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 VRBase = Reg;
Chris Lattner63ab1f22007-12-30 00:41:17 +0000403 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404 break;
405 }
406 }
407 }
408
Evan Cheng26639782007-08-02 00:28:15 +0000409 // Create the result registers for this node and add the result regs to
410 // the machine instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 if (VRBase == 0) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000412 const TargetRegisterClass *RC = getInstrOperandRegClass(TRI, TII, II, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 assert(RC && "Isn't a register operand!");
Chris Lattner1b989192007-12-31 04:13:23 +0000414 VRBase = RegInfo.createVirtualRegister(RC);
Chris Lattner63ab1f22007-12-30 00:41:17 +0000415 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 }
417
418 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,i), VRBase));
419 assert(isNew && "Node emitted out of order - early");
420 }
421}
422
423/// getVR - Return the virtual register corresponding to the specified result
424/// of the specified node.
425static unsigned getVR(SDOperand Op, DenseMap<SDOperand, unsigned> &VRBaseMap) {
426 DenseMap<SDOperand, unsigned>::iterator I = VRBaseMap.find(Op);
427 assert(I != VRBaseMap.end() && "Node emitted out of order - late");
428 return I->second;
429}
430
431
432/// AddOperand - Add the specified operand to the specified machine instr. II
433/// specifies the instruction information for the node, and IIOpNum is the
434/// operand number (in the II) that we are adding. IIOpNum and II are used for
435/// assertions only.
436void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
437 unsigned IIOpNum,
Chris Lattner5b930372008-01-07 07:27:27 +0000438 const TargetInstrDesc *II,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 DenseMap<SDOperand, unsigned> &VRBaseMap) {
440 if (Op.isTargetOpcode()) {
441 // Note that this case is redundant with the final else block, but we
442 // include it because it is the most common and it makes the logic
443 // simpler here.
444 assert(Op.getValueType() != MVT::Other &&
445 Op.getValueType() != MVT::Flag &&
446 "Chain and flag operands should occur at end of operand list!");
447
448 // Get/emit the operand.
449 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner5b930372008-01-07 07:27:27 +0000450 const TargetInstrDesc &TID = MI->getDesc();
451 bool isOptDef = (IIOpNum < TID.getNumOperands())
452 ? (TID.OpInfo[IIOpNum].isOptionalDef()) : false;
Chris Lattner63ab1f22007-12-30 00:41:17 +0000453 MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454
455 // Verify that it is right.
Dan Gohman1e57df32008-02-10 18:45:23 +0000456 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 if (II) {
458 const TargetRegisterClass *RC =
Dan Gohman1e57df32008-02-10 18:45:23 +0000459 getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 assert(RC && "Don't have operand info for this instruction!");
Chris Lattner1b989192007-12-31 04:13:23 +0000461 const TargetRegisterClass *VRC = RegInfo.getRegClass(VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462 if (VRC != RC) {
463 cerr << "Register class of operand and regclass of use don't agree!\n";
464#ifndef NDEBUG
465 cerr << "Operand = " << IIOpNum << "\n";
466 cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n";
467 cerr << "MI = "; MI->print(cerr);
468 cerr << "VReg = " << VReg << "\n";
469 cerr << "VReg RegClass size = " << VRC->getSize()
470 << ", align = " << VRC->getAlignment() << "\n";
471 cerr << "Expected RegClass size = " << RC->getSize()
472 << ", align = " << RC->getAlignment() << "\n";
473#endif
474 cerr << "Fatal error, aborting.\n";
475 abort();
476 }
477 }
Chris Lattner8dfd3122007-12-30 00:51:11 +0000478 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000479 MI->addOperand(MachineOperand::CreateImm(C->getValue()));
Chris Lattner8dfd3122007-12-30 00:51:11 +0000480 } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000481 MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
Chris Lattner8dfd3122007-12-30 00:51:11 +0000482 } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
483 MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(),TGA->getOffset()));
484 } else if (BasicBlockSDNode *BB = dyn_cast<BasicBlockSDNode>(Op)) {
485 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
486 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
487 MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
488 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
489 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex()));
490 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 int Offset = CP->getOffset();
492 unsigned Align = CP->getAlignment();
493 const Type *Type = CP->getType();
494 // MachineConstantPool wants an explicit alignment.
495 if (Align == 0) {
496 Align = TM.getTargetData()->getPreferredTypeAlignmentShift(Type);
497 if (Align == 0) {
498 // Alignment of vector types. FIXME!
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000499 Align = TM.getTargetData()->getABITypeSize(Type);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 Align = Log2_64(Align);
501 }
502 }
503
504 unsigned Idx;
505 if (CP->isMachineConstantPoolEntry())
506 Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align);
507 else
508 Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000509 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
510 } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
511 MI->addOperand(MachineOperand::CreateES(ES->getSymbol()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 } else {
513 assert(Op.getValueType() != MVT::Other &&
514 Op.getValueType() != MVT::Flag &&
515 "Chain and flag operands should occur at end of operand list!");
516 unsigned VReg = getVR(Op, VRBaseMap);
Chris Lattner63ab1f22007-12-30 00:41:17 +0000517 MI->addOperand(MachineOperand::CreateReg(VReg, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518
519 // Verify that it is right.
Dan Gohman1e57df32008-02-10 18:45:23 +0000520 assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521 if (II) {
522 const TargetRegisterClass *RC =
Dan Gohman1e57df32008-02-10 18:45:23 +0000523 getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 assert(RC && "Don't have operand info for this instruction!");
Chris Lattner1b989192007-12-31 04:13:23 +0000525 assert(RegInfo.getRegClass(VReg) == RC &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 "Register class of operand and regclass of use don't agree!");
527 }
528 }
529
530}
531
Dan Gohman12a9c082008-02-06 22:27:42 +0000532void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MemOperand &MO) {
533 MI->addMemOperand(MO);
534}
535
Christopher Lambe95328d2007-07-26 08:12:07 +0000536// Returns the Register Class of a subregister
537static const TargetRegisterClass *getSubRegisterRegClass(
538 const TargetRegisterClass *TRC,
539 unsigned SubIdx) {
540 // Pick the register class of the subregister
Dan Gohman1e57df32008-02-10 18:45:23 +0000541 TargetRegisterInfo::regclass_iterator I =
542 TRC->subregclasses_begin() + SubIdx-1;
Christopher Lambe95328d2007-07-26 08:12:07 +0000543 assert(I < TRC->subregclasses_end() &&
544 "Invalid subregister index for register class");
545 return *I;
546}
547
548static const TargetRegisterClass *getSuperregRegisterClass(
549 const TargetRegisterClass *TRC,
550 unsigned SubIdx,
551 MVT::ValueType VT) {
552 // Pick the register class of the superegister for this type
Dan Gohman1e57df32008-02-10 18:45:23 +0000553 for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
Christopher Lambe95328d2007-07-26 08:12:07 +0000554 E = TRC->superregclasses_end(); I != E; ++I)
555 if ((*I)->hasType(VT) && getSubRegisterRegClass(*I, SubIdx) == TRC)
556 return *I;
557 assert(false && "Couldn't find the register class");
558 return 0;
559}
560
561/// EmitSubregNode - Generate machine code for subreg nodes.
562///
563void ScheduleDAG::EmitSubregNode(SDNode *Node,
564 DenseMap<SDOperand, unsigned> &VRBaseMap) {
565 unsigned VRBase = 0;
566 unsigned Opc = Node->getTargetOpcode();
567 if (Opc == TargetInstrInfo::EXTRACT_SUBREG) {
568 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
569 // the CopyToReg'd destination register instead of creating a new vreg.
570 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
571 UI != E; ++UI) {
572 SDNode *Use = *UI;
573 if (Use->getOpcode() == ISD::CopyToReg &&
574 Use->getOperand(2).Val == Node) {
575 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000576 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000577 VRBase = DestReg;
578 break;
579 }
580 }
581 }
582
583 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
584
585 // TODO: If the node is a use of a CopyFromReg from a physical register
586 // fold the extract into the copy now
587
Christopher Lambe95328d2007-07-26 08:12:07 +0000588 // Create the extract_subreg machine instruction.
589 MachineInstr *MI =
590 new MachineInstr(BB, TII->get(TargetInstrInfo::EXTRACT_SUBREG));
591
592 // Figure out the register class to create for the destreg.
593 unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
Chris Lattner1b989192007-12-31 04:13:23 +0000594 const TargetRegisterClass *TRC = RegInfo.getRegClass(VReg);
Christopher Lambe95328d2007-07-26 08:12:07 +0000595 const TargetRegisterClass *SRC = getSubRegisterRegClass(TRC, SubIdx);
596
597 if (VRBase) {
598 // Grab the destination register
599 const TargetRegisterClass *DRC = 0;
Chris Lattner1b989192007-12-31 04:13:23 +0000600 DRC = RegInfo.getRegClass(VRBase);
Christopher Lambe08d9ec2008-01-31 07:09:08 +0000601 assert(SRC && DRC && SRC == DRC &&
Christopher Lambe95328d2007-07-26 08:12:07 +0000602 "Source subregister and destination must have the same class");
603 } else {
604 // Create the reg
Christopher Lambe08d9ec2008-01-31 07:09:08 +0000605 assert(SRC && "Couldn't find source register class");
Chris Lattner1b989192007-12-31 04:13:23 +0000606 VRBase = RegInfo.createVirtualRegister(SRC);
Christopher Lambe95328d2007-07-26 08:12:07 +0000607 }
608
609 // Add def, source, and subreg index
Chris Lattner63ab1f22007-12-30 00:41:17 +0000610 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambe95328d2007-07-26 08:12:07 +0000611 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000612 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Christopher Lambe95328d2007-07-26 08:12:07 +0000613
614 } else if (Opc == TargetInstrInfo::INSERT_SUBREG) {
615 assert((Node->getNumOperands() == 2 || Node->getNumOperands() == 3) &&
616 "Malformed insert_subreg node");
617 bool isUndefInput = (Node->getNumOperands() == 2);
618 unsigned SubReg = 0;
619 unsigned SubIdx = 0;
620
621 if (isUndefInput) {
622 SubReg = getVR(Node->getOperand(0), VRBaseMap);
623 SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
624 } else {
625 SubReg = getVR(Node->getOperand(1), VRBaseMap);
626 SubIdx = cast<ConstantSDNode>(Node->getOperand(2))->getValue();
627 }
628
Chris Lattnerb70e1512007-12-31 04:16:08 +0000629 // TODO: Add tracking info to MachineRegisterInfo of which vregs are subregs
Christopher Lambe95328d2007-07-26 08:12:07 +0000630 // to allow coalescing in the allocator
631
632 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
633 // the CopyToReg'd destination register instead of creating a new vreg.
634 // If the CopyToReg'd destination register is physical, then fold the
635 // insert into the copy
636 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
637 UI != E; ++UI) {
638 SDNode *Use = *UI;
639 if (Use->getOpcode() == ISD::CopyToReg &&
640 Use->getOperand(2).Val == Node) {
641 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000642 if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
Christopher Lambe95328d2007-07-26 08:12:07 +0000643 VRBase = DestReg;
644 break;
645 }
646 }
647 }
648
649 // Create the insert_subreg machine instruction.
650 MachineInstr *MI =
651 new MachineInstr(BB, TII->get(TargetInstrInfo::INSERT_SUBREG));
652
653 // Figure out the register class to create for the destreg.
654 const TargetRegisterClass *TRC = 0;
655 if (VRBase) {
Chris Lattner1b989192007-12-31 04:13:23 +0000656 TRC = RegInfo.getRegClass(VRBase);
Christopher Lambe95328d2007-07-26 08:12:07 +0000657 } else {
Chris Lattner1b989192007-12-31 04:13:23 +0000658 TRC = getSuperregRegisterClass(RegInfo.getRegClass(SubReg), SubIdx,
Christopher Lambe95328d2007-07-26 08:12:07 +0000659 Node->getValueType(0));
660 assert(TRC && "Couldn't determine register class for insert_subreg");
Chris Lattner1b989192007-12-31 04:13:23 +0000661 VRBase = RegInfo.createVirtualRegister(TRC); // Create the reg
Christopher Lambe95328d2007-07-26 08:12:07 +0000662 }
663
Chris Lattner63ab1f22007-12-30 00:41:17 +0000664 MI->addOperand(MachineOperand::CreateReg(VRBase, true));
Christopher Lambe95328d2007-07-26 08:12:07 +0000665 AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
666 if (!isUndefInput)
667 AddOperand(MI, Node->getOperand(1), 0, 0, VRBaseMap);
Chris Lattner8dfd3122007-12-30 00:51:11 +0000668 MI->addOperand(MachineOperand::CreateImm(SubIdx));
Christopher Lambe95328d2007-07-26 08:12:07 +0000669 } else
670 assert(0 && "Node is not a subreg insert or extract");
671
672 bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,0), VRBase));
673 assert(isNew && "Node emitted out of order - early");
674}
675
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676/// EmitNode - Generate machine code for an node and needed dependencies.
677///
Evan Cheng93f143e2007-09-25 01:54:36 +0000678void ScheduleDAG::EmitNode(SDNode *Node, unsigned InstanceNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 DenseMap<SDOperand, unsigned> &VRBaseMap) {
680 // If machine instruction
681 if (Node->isTargetOpcode()) {
682 unsigned Opc = Node->getTargetOpcode();
Christopher Lambe95328d2007-07-26 08:12:07 +0000683
684 // Handle subreg insert/extract specially
685 if (Opc == TargetInstrInfo::EXTRACT_SUBREG ||
686 Opc == TargetInstrInfo::INSERT_SUBREG) {
687 EmitSubregNode(Node, VRBaseMap);
688 return;
689 }
690
Chris Lattner5b930372008-01-07 07:27:27 +0000691 const TargetInstrDesc &II = TII->get(Opc);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692
693 unsigned NumResults = CountResults(Node);
694 unsigned NodeOperands = CountOperands(Node);
Dan Gohman12a9c082008-02-06 22:27:42 +0000695 unsigned NodeMemOperands = CountMemOperands(Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000697 bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
698 II.getImplicitDefs() != 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699#ifndef NDEBUG
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000700 assert((II.getNumOperands() == NumMIOperands ||
Chris Lattner2fb37c02008-01-07 05:19:29 +0000701 HasPhysRegOuts || II.isVariadic()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 "#operands for dag node doesn't match .td file!");
703#endif
704
705 // Create the new machine instruction.
706 MachineInstr *MI = new MachineInstr(II);
707
708 // Add result register values for things that are defined by this
709 // instruction.
710 if (NumResults)
Evan Cheng26639782007-08-02 00:28:15 +0000711 CreateVirtualRegisters(Node, MI, II, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712
713 // Emit all of the actual operands of this instruction, adding them to the
714 // instruction as appropriate.
715 for (unsigned i = 0; i != NodeOperands; ++i)
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000716 AddOperand(MI, Node->getOperand(i), i+II.getNumDefs(), &II, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717
Dan Gohman12a9c082008-02-06 22:27:42 +0000718 // Emit all of the memory operands of this instruction
719 for (unsigned i = NodeOperands; i != NodeMemOperands; ++i)
720 AddMemOperand(MI, cast<MemOperandSDNode>(Node->getOperand(i))->MO);
721
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 // Commute node if it has been determined to be profitable.
723 if (CommuteSet.count(Node)) {
724 MachineInstr *NewMI = TII->commuteInstruction(MI);
725 if (NewMI == 0)
726 DOUT << "Sched: COMMUTING FAILED!\n";
727 else {
728 DOUT << "Sched: COMMUTED TO: " << *NewMI;
729 if (MI != NewMI) {
730 delete MI;
731 MI = NewMI;
732 }
733 }
734 }
735
Evan Chenga53c40a2008-02-01 09:10:45 +0000736 if (II.usesCustomDAGSchedInsertionHook())
Evan Cheng2d373922008-01-30 19:35:32 +0000737 // Insert this instruction into the basic block using a target
738 // specific inserter which may returns a new basic block.
Evan Chenge637db12008-01-30 18:18:23 +0000739 BB = DAG.getTargetLoweringInfo().EmitInstrWithCustomInserter(MI, BB);
Evan Cheng2d373922008-01-30 19:35:32 +0000740 else
741 BB->push_back(MI);
Evan Cheng26639782007-08-02 00:28:15 +0000742
743 // Additional results must be an physical register def.
744 if (HasPhysRegOuts) {
Chris Lattner0c2a4f32008-01-07 03:13:06 +0000745 for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
746 unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
Evan Cheng0af04f72007-08-02 05:29:38 +0000747 if (Node->hasAnyUseOfValue(i))
Evan Cheng93f143e2007-09-25 01:54:36 +0000748 EmitCopyFromReg(Node, i, InstanceNo, Reg, VRBaseMap);
Evan Cheng26639782007-08-02 00:28:15 +0000749 }
750 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751 } else {
752 switch (Node->getOpcode()) {
753 default:
754#ifndef NDEBUG
755 Node->dump(&DAG);
756#endif
757 assert(0 && "This target-independent node should have been selected!");
758 case ISD::EntryToken: // fall thru
759 case ISD::TokenFactor:
760 case ISD::LABEL:
Evan Cheng2e28d622008-02-02 04:07:54 +0000761 case ISD::DECLARE:
Dan Gohman12a9c082008-02-06 22:27:42 +0000762 case ISD::SRCVALUE:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 break;
764 case ISD::CopyToReg: {
765 unsigned InReg;
766 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(2)))
767 InReg = R->getReg();
768 else
769 InReg = getVR(Node->getOperand(2), VRBaseMap);
770 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
771 if (InReg != DestReg) {// Coalesced away the copy?
772 const TargetRegisterClass *TRC = 0;
773 // Get the target register class
Dan Gohman1e57df32008-02-10 18:45:23 +0000774 if (TargetRegisterInfo::isVirtualRegister(InReg))
Chris Lattner1b989192007-12-31 04:13:23 +0000775 TRC = RegInfo.getRegClass(InReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776 else
Evan Cheng5ec4b762007-09-26 21:36:17 +0000777 TRC =
Dan Gohman1e57df32008-02-10 18:45:23 +0000778 TRI->getPhysicalRegisterRegClass(Node->getOperand(2).getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779 InReg);
Owen Anderson8f2c8932007-12-31 06:32:00 +0000780 TII->copyRegToReg(*BB, BB->end(), DestReg, InReg, TRC, TRC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000781 }
782 break;
783 }
784 case ISD::CopyFromReg: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Evan Cheng93f143e2007-09-25 01:54:36 +0000786 EmitCopyFromReg(Node, 0, InstanceNo, SrcReg, VRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787 break;
788 }
789 case ISD::INLINEASM: {
790 unsigned NumOps = Node->getNumOperands();
791 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
792 --NumOps; // Ignore the flag operand.
793
794 // Create the inline asm machine instruction.
795 MachineInstr *MI =
796 new MachineInstr(BB, TII->get(TargetInstrInfo::INLINEASM));
797
798 // Add the asm string as an external symbol operand.
799 const char *AsmStr =
800 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
Chris Lattner8dfd3122007-12-30 00:51:11 +0000801 MI->addOperand(MachineOperand::CreateES(AsmStr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802
803 // Add all of the operand registers to the instruction.
804 for (unsigned i = 2; i != NumOps;) {
805 unsigned Flags = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
806 unsigned NumVals = Flags >> 3;
807
Chris Lattner8dfd3122007-12-30 00:51:11 +0000808 MI->addOperand(MachineOperand::CreateImm(Flags));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 ++i; // Skip the ID value.
810
811 switch (Flags & 7) {
812 default: assert(0 && "Bad flags!");
813 case 1: // Use of register.
814 for (; NumVals; --NumVals, ++i) {
815 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000816 MI->addOperand(MachineOperand::CreateReg(Reg, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 }
818 break;
819 case 2: // Def of register.
820 for (; NumVals; --NumVals, ++i) {
821 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
Chris Lattner63ab1f22007-12-30 00:41:17 +0000822 MI->addOperand(MachineOperand::CreateReg(Reg, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000823 }
824 break;
825 case 3: { // Immediate.
Chris Lattner23544c12007-08-25 00:53:07 +0000826 for (; NumVals; --NumVals, ++i) {
827 if (ConstantSDNode *CS =
828 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Chris Lattner63ab1f22007-12-30 00:41:17 +0000829 MI->addOperand(MachineOperand::CreateImm(CS->getValue()));
Dale Johannesencfb19e62007-11-05 21:20:28 +0000830 } else if (GlobalAddressSDNode *GA =
831 dyn_cast<GlobalAddressSDNode>(Node->getOperand(i))) {
Chris Lattner8dfd3122007-12-30 00:51:11 +0000832 MI->addOperand(MachineOperand::CreateGA(GA->getGlobal(),
833 GA->getOffset()));
Dale Johannesencfb19e62007-11-05 21:20:28 +0000834 } else {
Chris Lattner8dfd3122007-12-30 00:51:11 +0000835 BasicBlockSDNode *BB =cast<BasicBlockSDNode>(Node->getOperand(i));
836 MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
Chris Lattner23544c12007-08-25 00:53:07 +0000837 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 break;
840 }
841 case 4: // Addressing mode.
842 // The addressing mode has been selected, just add all of the
843 // operands to the machine instruction.
844 for (; NumVals; --NumVals, ++i)
845 AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
846 break;
847 }
848 }
849 break;
850 }
851 }
852 }
853}
854
855void ScheduleDAG::EmitNoop() {
856 TII->insertNoop(*BB, BB->end());
857}
858
Evan Cheng5ec4b762007-09-26 21:36:17 +0000859void ScheduleDAG::EmitCrossRCCopy(SUnit *SU, DenseMap<SUnit*, unsigned> &VRBaseMap) {
860 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
861 I != E; ++I) {
862 if (I->isCtrl) continue; // ignore chain preds
863 if (!I->Dep->Node) {
864 // Copy to physical register.
865 DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->Dep);
866 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
867 // Find the destination physical register.
868 unsigned Reg = 0;
869 for (SUnit::const_succ_iterator II = SU->Succs.begin(),
870 EE = SU->Succs.end(); II != EE; ++II) {
871 if (I->Reg) {
872 Reg = I->Reg;
873 break;
874 }
875 }
876 assert(I->Reg && "Unknown physical register!");
Owen Anderson8f2c8932007-12-31 06:32:00 +0000877 TII->copyRegToReg(*BB, BB->end(), Reg, VRI->second,
Evan Cheng5ec4b762007-09-26 21:36:17 +0000878 SU->CopyDstRC, SU->CopySrcRC);
879 } else {
880 // Copy from physical register.
881 assert(I->Reg && "Unknown physical register!");
Chris Lattner1b989192007-12-31 04:13:23 +0000882 unsigned VRBase = RegInfo.createVirtualRegister(SU->CopyDstRC);
Evan Cheng5ec4b762007-09-26 21:36:17 +0000883 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase));
884 assert(isNew && "Node emitted out of order - early");
Owen Anderson8f2c8932007-12-31 06:32:00 +0000885 TII->copyRegToReg(*BB, BB->end(), VRBase, I->Reg,
Evan Cheng5ec4b762007-09-26 21:36:17 +0000886 SU->CopyDstRC, SU->CopySrcRC);
887 }
888 break;
889 }
890}
891
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892/// EmitSchedule - Emit the machine code in scheduled order.
893void ScheduleDAG::EmitSchedule() {
894 // If this is the first basic block in the function, and if it has live ins
895 // that need to be copied into vregs, emit the copies into the top of the
896 // block before emitting the code for the block.
Evan Cheng2d373922008-01-30 19:35:32 +0000897 if (&MF->front() == BB) {
Chris Lattner1b989192007-12-31 04:13:23 +0000898 for (MachineRegisterInfo::livein_iterator LI = RegInfo.livein_begin(),
899 E = RegInfo.livein_end(); LI != E; ++LI)
Evan Chengb3d91cf2007-09-26 06:25:56 +0000900 if (LI->second) {
Chris Lattner1b989192007-12-31 04:13:23 +0000901 const TargetRegisterClass *RC = RegInfo.getRegClass(LI->second);
Evan Cheng2d373922008-01-30 19:35:32 +0000902 TII->copyRegToReg(*MF->begin(), MF->begin()->end(), LI->second,
Evan Chengb3d91cf2007-09-26 06:25:56 +0000903 LI->first, RC, RC);
904 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 }
906
907
908 // Finally, emit the code for all of the scheduled instructions.
909 DenseMap<SDOperand, unsigned> VRBaseMap;
Evan Cheng5ec4b762007-09-26 21:36:17 +0000910 DenseMap<SUnit*, unsigned> CopyVRBaseMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
912 if (SUnit *SU = Sequence[i]) {
Evan Cheng93f143e2007-09-25 01:54:36 +0000913 for (unsigned j = 0, ee = SU->FlaggedNodes.size(); j != ee; ++j)
914 EmitNode(SU->FlaggedNodes[j], SU->InstanceNo, VRBaseMap);
Evan Cheng5ec4b762007-09-26 21:36:17 +0000915 if (SU->Node)
916 EmitNode(SU->Node, SU->InstanceNo, VRBaseMap);
917 else
918 EmitCrossRCCopy(SU, CopyVRBaseMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919 } else {
920 // Null SUnit* is a noop.
921 EmitNoop();
922 }
923 }
924}
925
926/// dump - dump the schedule.
927void ScheduleDAG::dumpSchedule() const {
928 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
929 if (SUnit *SU = Sequence[i])
930 SU->dump(&DAG);
931 else
932 cerr << "**** NOOP ****\n";
933 }
934}
935
936
937/// Run - perform scheduling.
938///
939MachineBasicBlock *ScheduleDAG::Run() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 Schedule();
941 return BB;
942}
943
944/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
945/// a group of nodes flagged together.
946void SUnit::dump(const SelectionDAG *G) const {
947 cerr << "SU(" << NodeNum << "): ";
Evan Cheng5ec4b762007-09-26 21:36:17 +0000948 if (Node)
949 Node->dump(G);
950 else
951 cerr << "CROSS RC COPY ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 cerr << "\n";
953 if (FlaggedNodes.size() != 0) {
954 for (unsigned i = 0, e = FlaggedNodes.size(); i != e; i++) {
955 cerr << " ";
956 FlaggedNodes[i]->dump(G);
957 cerr << "\n";
958 }
959 }
960}
961
962void SUnit::dumpAll(const SelectionDAG *G) const {
963 dump(G);
964
965 cerr << " # preds left : " << NumPredsLeft << "\n";
966 cerr << " # succs left : " << NumSuccsLeft << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 cerr << " Latency : " << Latency << "\n";
968 cerr << " Depth : " << Depth << "\n";
969 cerr << " Height : " << Height << "\n";
970
971 if (Preds.size() != 0) {
972 cerr << " Predecessors:\n";
973 for (SUnit::const_succ_iterator I = Preds.begin(), E = Preds.end();
974 I != E; ++I) {
Evan Chenge7959472007-09-19 01:38:40 +0000975 if (I->isCtrl)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 cerr << " ch #";
977 else
978 cerr << " val #";
Evan Cheng93f143e2007-09-25 01:54:36 +0000979 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
980 if (I->isSpecial)
981 cerr << " *";
982 cerr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983 }
984 }
985 if (Succs.size() != 0) {
986 cerr << " Successors:\n";
987 for (SUnit::const_succ_iterator I = Succs.begin(), E = Succs.end();
988 I != E; ++I) {
Evan Chenge7959472007-09-19 01:38:40 +0000989 if (I->isCtrl)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 cerr << " ch #";
991 else
992 cerr << " val #";
Evan Cheng93f143e2007-09-25 01:54:36 +0000993 cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
994 if (I->isSpecial)
995 cerr << " *";
996 cerr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997 }
998 }
999 cerr << "\n";
1000}