blob: aff5d4265dd3dc581034c29d6d7e3768f2eb7926 [file] [log] [blame]
Evan Chenga9c20912006-01-21 02:32:06 +00001//===---- ScheduleDAG.cpp - Implement the ScheduleDAG class ---------------===//
Chris Lattnerd32b2362005-08-18 18:45:24 +00002//
3// The LLVM Compiler Infrastructure
4//
Jim Laskey5a608dd2005-10-31 12:49:09 +00005// This file was developed by James M. Laskey and is distributed under the
Chris Lattnerd32b2362005-08-18 18:45:24 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Jim Laskeye6b90fb2005-09-26 21:57:04 +000010// This implements a simple two pass scheduler. The first pass attempts to push
11// backward any lengthy instructions and critical paths. The second pass packs
12// instructions into semi-optimal time slots.
Chris Lattnerd32b2362005-08-18 18:45:24 +000013//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "sched"
Chris Lattner5839bf22005-08-26 17:15:30 +000017#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner4ccd4062005-08-19 20:45:43 +000018#include "llvm/CodeGen/MachineFunction.h"
Evan Chenga9c20912006-01-21 02:32:06 +000019#include "llvm/CodeGen/ScheduleDAG.h"
Chris Lattner4ccd4062005-08-19 20:45:43 +000020#include "llvm/CodeGen/SSARegMap.h"
Chris Lattner2d973e42005-08-18 20:07:59 +000021#include "llvm/Target/TargetMachine.h"
22#include "llvm/Target/TargetInstrInfo.h"
Jim Laskey7d090f32005-11-04 04:05:35 +000023#include "llvm/Target/TargetInstrItineraries.h"
Chris Lattner025c39b2005-08-26 20:54:47 +000024#include "llvm/Target/TargetLowering.h"
Jim Laskeye6b90fb2005-09-26 21:57:04 +000025#include "llvm/Support/Debug.h"
26#include <iostream>
Chris Lattnerd32b2362005-08-18 18:45:24 +000027using namespace llvm;
28
Jim Laskeye6b90fb2005-09-26 21:57:04 +000029
30/// CountResults - The results of target nodes have register or immediate
31/// operands first, then an optional chain, and optional flag operands (which do
32/// not go into the machine instrs.)
Evan Chenga9c20912006-01-21 02:32:06 +000033static unsigned CountResults(SDNode *Node) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +000034 unsigned N = Node->getNumValues();
35 while (N && Node->getValueType(N - 1) == MVT::Flag)
Jim Laskeye6b90fb2005-09-26 21:57:04 +000036 --N;
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +000037 if (N && Node->getValueType(N - 1) == MVT::Other)
Jim Laskeye6b90fb2005-09-26 21:57:04 +000038 --N; // Skip over chain result.
39 return N;
40}
41
42/// CountOperands The inputs to target nodes have any actual inputs first,
43/// followed by an optional chain operand, then flag operands. Compute the
44/// number of actual operands that will go into the machine instr.
Evan Chenga9c20912006-01-21 02:32:06 +000045static unsigned CountOperands(SDNode *Node) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +000046 unsigned N = Node->getNumOperands();
47 while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
Jim Laskeye6b90fb2005-09-26 21:57:04 +000048 --N;
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +000049 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
Jim Laskeye6b90fb2005-09-26 21:57:04 +000050 --N; // Ignore chain if it exists.
51 return N;
52}
53
Evan Cheng4ef10862006-01-23 07:01:07 +000054/// PrepareNodeInfo - Set up the basic minimum node info for scheduling.
55///
56void ScheduleDAG::PrepareNodeInfo() {
57 // Allocate node information
58 Info = new NodeInfo[NodeCount];
59
60 unsigned i = 0;
61 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
62 E = DAG.allnodes_end(); I != E; ++I, ++i) {
63 // Fast reference to node schedule info
64 NodeInfo* NI = &Info[i];
65 // Set up map
66 Map[I] = NI;
67 // Set node
68 NI->Node = I;
69 // Set pending visit count
70 NI->setPending(I->use_size());
71 }
72}
73
74/// IdentifyGroups - Put flagged nodes into groups.
75///
76void ScheduleDAG::IdentifyGroups() {
77 for (unsigned i = 0, N = NodeCount; i < N; i++) {
78 NodeInfo* NI = &Info[i];
79 SDNode *Node = NI->Node;
80
81 // For each operand (in reverse to only look at flags)
82 for (unsigned N = Node->getNumOperands(); 0 < N--;) {
83 // Get operand
84 SDOperand Op = Node->getOperand(N);
85 // No more flags to walk
86 if (Op.getValueType() != MVT::Flag) break;
87 // Add to node group
88 NodeGroup::Add(getNI(Op.Val), NI);
Evan Chenge0a58322006-01-25 09:13:41 +000089 // Let everyone else know
Evan Cheng4ef10862006-01-23 07:01:07 +000090 HasGroups = true;
91 }
92 }
93}
94
95static unsigned CreateVirtualRegisters(MachineInstr *MI,
96 unsigned NumResults,
97 SSARegMap *RegMap,
98 const TargetInstrDescriptor &II) {
Jim Laskeye6b90fb2005-09-26 21:57:04 +000099 // Create the result registers for this node and add the result regs to
100 // the machine instruction.
101 const TargetOperandInfo *OpInfo = II.OpInfo;
102 unsigned ResultReg = RegMap->createVirtualRegister(OpInfo[0].RegClass);
103 MI->addRegOperand(ResultReg, MachineOperand::Def);
104 for (unsigned i = 1; i != NumResults; ++i) {
105 assert(OpInfo[i].RegClass && "Isn't a register operand!");
Chris Lattner505277a2005-10-01 07:45:09 +0000106 MI->addRegOperand(RegMap->createVirtualRegister(OpInfo[i].RegClass),
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000107 MachineOperand::Def);
108 }
109 return ResultReg;
110}
111
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000112/// EmitNode - Generate machine code for an node and needed dependencies.
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000113///
Evan Chenga9c20912006-01-21 02:32:06 +0000114void ScheduleDAG::EmitNode(NodeInfo *NI) {
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000115 unsigned VRBase = 0; // First virtual register for node
116 SDNode *Node = NI->Node;
Chris Lattner2d973e42005-08-18 20:07:59 +0000117
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000118 // If machine instruction
119 if (Node->isTargetOpcode()) {
120 unsigned Opc = Node->getTargetOpcode();
Evan Chenga9c20912006-01-21 02:32:06 +0000121 const TargetInstrDescriptor &II = TII->get(Opc);
Chris Lattner2d973e42005-08-18 20:07:59 +0000122
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000123 unsigned NumResults = CountResults(Node);
124 unsigned NodeOperands = CountOperands(Node);
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000125 unsigned NumMIOperands = NodeOperands + NumResults;
Chris Lattnerda8abb02005-09-01 18:44:10 +0000126#ifndef NDEBUG
Chris Lattner14b392a2005-08-24 22:02:41 +0000127 assert((unsigned(II.numOperands) == NumMIOperands || II.numOperands == -1)&&
Chris Lattner2d973e42005-08-18 20:07:59 +0000128 "#operands for dag node doesn't match .td file!");
Chris Lattnerca6aa2f2005-08-19 01:01:34 +0000129#endif
Chris Lattner2d973e42005-08-18 20:07:59 +0000130
131 // Create the new machine instruction.
Chris Lattner14b392a2005-08-24 22:02:41 +0000132 MachineInstr *MI = new MachineInstr(Opc, NumMIOperands, true, true);
Chris Lattner2d973e42005-08-18 20:07:59 +0000133
134 // Add result register values for things that are defined by this
135 // instruction.
Chris Lattnera4176522005-10-30 18:54:27 +0000136
137 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
138 // the CopyToReg'd destination register instead of creating a new vreg.
139 if (NumResults == 1) {
140 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
141 UI != E; ++UI) {
142 SDNode *Use = *UI;
143 if (Use->getOpcode() == ISD::CopyToReg &&
144 Use->getOperand(2).Val == Node) {
145 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
146 if (MRegisterInfo::isVirtualRegister(Reg)) {
147 VRBase = Reg;
148 MI->addRegOperand(Reg, MachineOperand::Def);
149 break;
150 }
151 }
152 }
153 }
154
155 // Otherwise, create new virtual registers.
156 if (NumResults && VRBase == 0)
Evan Cheng4ef10862006-01-23 07:01:07 +0000157 VRBase = CreateVirtualRegisters(MI, NumResults, RegMap, II);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000158
159 // Emit all of the actual operands of this instruction, adding them to the
160 // instruction as appropriate.
161 for (unsigned i = 0; i != NodeOperands; ++i) {
162 if (Node->getOperand(i).isTargetOpcode()) {
163 // Note that this case is redundant with the final else block, but we
164 // include it because it is the most common and it makes the logic
165 // simpler here.
166 assert(Node->getOperand(i).getValueType() != MVT::Other &&
167 Node->getOperand(i).getValueType() != MVT::Flag &&
168 "Chain and flag operands should occur at end of operand list!");
Chris Lattner505277a2005-10-01 07:45:09 +0000169
170 // Get/emit the operand.
171 unsigned VReg = getVR(Node->getOperand(i));
172 MI->addRegOperand(VReg, MachineOperand::Use);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000173
Chris Lattner505277a2005-10-01 07:45:09 +0000174 // Verify that it is right.
175 assert(MRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
176 assert(II.OpInfo[i+NumResults].RegClass &&
177 "Don't have operand info for this instruction!");
178 assert(RegMap->getRegClass(VReg) == II.OpInfo[i+NumResults].RegClass &&
179 "Register class of operand and regclass of use don't agree!");
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000180 } else if (ConstantSDNode *C =
181 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
182 MI->addZeroExtImm64Operand(C->getValue());
183 } else if (RegisterSDNode*R =
184 dyn_cast<RegisterSDNode>(Node->getOperand(i))) {
185 MI->addRegOperand(R->getReg(), MachineOperand::Use);
186 } else if (GlobalAddressSDNode *TGA =
187 dyn_cast<GlobalAddressSDNode>(Node->getOperand(i))) {
Evan Cheng61ca74b2005-11-30 02:04:11 +0000188 MI->addGlobalAddressOperand(TGA->getGlobal(), false, TGA->getOffset());
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000189 } else if (BasicBlockSDNode *BB =
190 dyn_cast<BasicBlockSDNode>(Node->getOperand(i))) {
191 MI->addMachineBasicBlockOperand(BB->getBasicBlock());
192 } else if (FrameIndexSDNode *FI =
193 dyn_cast<FrameIndexSDNode>(Node->getOperand(i))) {
194 MI->addFrameIndexOperand(FI->getIndex());
195 } else if (ConstantPoolSDNode *CP =
196 dyn_cast<ConstantPoolSDNode>(Node->getOperand(i))) {
Evan Chengb8973bd2006-01-31 22:23:14 +0000197 unsigned Idx = ConstPool->getConstantPoolIndex(CP->get(),
198 CP->getAlignment());
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000199 MI->addConstantPoolIndexOperand(Idx);
200 } else if (ExternalSymbolSDNode *ES =
201 dyn_cast<ExternalSymbolSDNode>(Node->getOperand(i))) {
202 MI->addExternalSymbolOperand(ES->getSymbol(), false);
203 } else {
204 assert(Node->getOperand(i).getValueType() != MVT::Other &&
205 Node->getOperand(i).getValueType() != MVT::Flag &&
206 "Chain and flag operands should occur at end of operand list!");
Chris Lattner505277a2005-10-01 07:45:09 +0000207 unsigned VReg = getVR(Node->getOperand(i));
208 MI->addRegOperand(VReg, MachineOperand::Use);
209
210 // Verify that it is right.
211 assert(MRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
212 assert(II.OpInfo[i+NumResults].RegClass &&
213 "Don't have operand info for this instruction!");
214 assert(RegMap->getRegClass(VReg) == II.OpInfo[i+NumResults].RegClass &&
215 "Register class of operand and regclass of use don't agree!");
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000216 }
217 }
218
219 // Now that we have emitted all operands, emit this instruction itself.
220 if ((II.Flags & M_USES_CUSTOM_DAG_SCHED_INSERTION) == 0) {
221 BB->insert(BB->end(), MI);
222 } else {
223 // Insert this instruction into the end of the basic block, potentially
224 // taking some custom action.
225 BB = DAG.getTargetLoweringInfo().InsertAtEndOfBasicBlock(MI, BB);
226 }
227 } else {
228 switch (Node->getOpcode()) {
229 default:
230 Node->dump();
231 assert(0 && "This target-independent node should have been selected!");
232 case ISD::EntryToken: // fall thru
233 case ISD::TokenFactor:
234 break;
235 case ISD::CopyToReg: {
Chris Lattnera4176522005-10-30 18:54:27 +0000236 unsigned InReg = getVR(Node->getOperand(2));
237 unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
238 if (InReg != DestReg) // Coallesced away the copy?
Evan Chenga9c20912006-01-21 02:32:06 +0000239 MRI->copyRegToReg(*BB, BB->end(), DestReg, InReg,
240 RegMap->getRegClass(InReg));
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000241 break;
242 }
243 case ISD::CopyFromReg: {
244 unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Chris Lattner089c25c2005-10-09 05:58:56 +0000245 if (MRegisterInfo::isVirtualRegister(SrcReg)) {
246 VRBase = SrcReg; // Just use the input register directly!
247 break;
248 }
249
Chris Lattnera4176522005-10-30 18:54:27 +0000250 // If the node is only used by a CopyToReg and the dest reg is a vreg, use
251 // the CopyToReg'd destination register instead of creating a new vreg.
252 for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
253 UI != E; ++UI) {
254 SDNode *Use = *UI;
255 if (Use->getOpcode() == ISD::CopyToReg &&
256 Use->getOperand(2).Val == Node) {
257 unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
258 if (MRegisterInfo::isVirtualRegister(DestReg)) {
259 VRBase = DestReg;
260 break;
261 }
262 }
263 }
264
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000265 // Figure out the register class to create for the destreg.
266 const TargetRegisterClass *TRC = 0;
Chris Lattnera4176522005-10-30 18:54:27 +0000267 if (VRBase) {
268 TRC = RegMap->getRegClass(VRBase);
269 } else {
Chris Lattner089c25c2005-10-09 05:58:56 +0000270
Chris Lattnera4176522005-10-30 18:54:27 +0000271 // Pick the register class of the right type that contains this physreg.
Evan Chenga9c20912006-01-21 02:32:06 +0000272 for (MRegisterInfo::regclass_iterator I = MRI->regclass_begin(),
273 E = MRI->regclass_end(); I != E; ++I)
Nate Begeman6510b222005-12-01 04:51:06 +0000274 if ((*I)->hasType(Node->getValueType(0)) &&
Chris Lattnera4176522005-10-30 18:54:27 +0000275 (*I)->contains(SrcReg)) {
276 TRC = *I;
277 break;
278 }
279 assert(TRC && "Couldn't find register class for reg copy!");
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000280
Chris Lattnera4176522005-10-30 18:54:27 +0000281 // Create the reg, emit the copy.
282 VRBase = RegMap->createVirtualRegister(TRC);
283 }
Evan Chenga9c20912006-01-21 02:32:06 +0000284 MRI->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, TRC);
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000285 break;
286 }
Chris Lattneracc43bf2006-01-26 23:28:04 +0000287 case ISD::INLINEASM: {
288 unsigned NumOps = Node->getNumOperands();
289 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
290 --NumOps; // Ignore the flag operand.
291
292 // Create the inline asm machine instruction.
293 MachineInstr *MI =
294 new MachineInstr(BB, TargetInstrInfo::INLINEASM, (NumOps-2)/2+1);
295
296 // Add the asm string as an external symbol operand.
297 const char *AsmStr =
298 cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
299 MI->addExternalSymbolOperand(AsmStr, false);
300
301 // Add all of the operand registers to the instruction.
302 for (unsigned i = 2; i != NumOps; i += 2) {
Chris Lattner6656dd12006-01-31 02:03:41 +0000303 unsigned Flags =cast<ConstantSDNode>(Node->getOperand(i+1))->getValue();
Chris Lattneracc43bf2006-01-26 23:28:04 +0000304 MachineOperand::UseType UseTy;
305 switch (Flags) {
306 default: assert(0 && "Bad flags!");
Chris Lattnerdc19b702006-02-04 02:26:14 +0000307 case 1: { // Use of register.
308 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
309 MI->addMachineRegOperand(Reg, MachineOperand::Use);
310 break;
Chris Lattneracc43bf2006-01-26 23:28:04 +0000311 }
Chris Lattnerdc19b702006-02-04 02:26:14 +0000312 case 2: { // Def of register.
313 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
314 MI->addMachineRegOperand(Reg, MachineOperand::Def);
315 break;
316 }
317 case 3: { // Immediate.
318 uint64_t Val = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
319 MI->addZeroExtImm64Operand(Val);
320 break;
321 }
322 }
Chris Lattneracc43bf2006-01-26 23:28:04 +0000323 }
324 break;
325 }
Jim Laskeyb6d4c2c2005-09-30 19:15:27 +0000326 }
327 }
328
329 assert(NI->VRBase == 0 && "Node emitted out of order - early");
330 NI->VRBase = VRBase;
331}
332
Evan Cheng4ef10862006-01-23 07:01:07 +0000333/// EmitAll - Emit all nodes in schedule sorted order.
334///
335void ScheduleDAG::EmitAll() {
336 // For each node in the ordering
337 for (unsigned i = 0, N = Ordering.size(); i < N; i++) {
338 // Get the scheduling info
339 NodeInfo *NI = Ordering[i];
340 if (NI->isInGroup()) {
341 NodeGroupIterator NGI(Ordering[i]);
342 while (NodeInfo *NI = NGI.next()) EmitNode(NI);
343 } else {
344 EmitNode(NI);
345 }
346 }
347}
348
349/// isFlagDefiner - Returns true if the node defines a flag result.
350static bool isFlagDefiner(SDNode *A) {
351 unsigned N = A->getNumValues();
352 return N && A->getValueType(N - 1) == MVT::Flag;
353}
354
355/// isFlagUser - Returns true if the node uses a flag result.
356///
357static bool isFlagUser(SDNode *A) {
358 unsigned N = A->getNumOperands();
359 return N && A->getOperand(N - 1).getValueType() == MVT::Flag;
360}
361
362/// printNI - Print node info.
363///
364void ScheduleDAG::printNI(std::ostream &O, NodeInfo *NI) const {
365#ifndef NDEBUG
366 SDNode *Node = NI->Node;
367 O << " "
368 << std::hex << Node << std::dec
369 << ", Lat=" << NI->Latency
370 << ", Slot=" << NI->Slot
371 << ", ARITY=(" << Node->getNumOperands() << ","
372 << Node->getNumValues() << ")"
373 << " " << Node->getOperationName(&DAG);
374 if (isFlagDefiner(Node)) O << "<#";
375 if (isFlagUser(Node)) O << ">#";
376#endif
377}
378
379/// printChanges - Hilight changes in order caused by scheduling.
380///
381void ScheduleDAG::printChanges(unsigned Index) const {
382#ifndef NDEBUG
383 // Get the ordered node count
384 unsigned N = Ordering.size();
385 // Determine if any changes
386 unsigned i = 0;
387 for (; i < N; i++) {
388 NodeInfo *NI = Ordering[i];
389 if (NI->Preorder != i) break;
390 }
391
392 if (i < N) {
393 std::cerr << Index << ". New Ordering\n";
394
395 for (i = 0; i < N; i++) {
396 NodeInfo *NI = Ordering[i];
397 std::cerr << " " << NI->Preorder << ". ";
398 printNI(std::cerr, NI);
399 std::cerr << "\n";
400 if (NI->isGroupDominator()) {
401 NodeGroup *Group = NI->Group;
402 for (NIIterator NII = Group->group_begin(), E = Group->group_end();
403 NII != E; NII++) {
404 std::cerr << " ";
405 printNI(std::cerr, *NII);
406 std::cerr << "\n";
407 }
408 }
409 }
410 } else {
411 std::cerr << Index << ". No Changes\n";
412 }
413#endif
414}
415
416/// print - Print ordering to specified output stream.
417///
418void ScheduleDAG::print(std::ostream &O) const {
419#ifndef NDEBUG
420 using namespace std;
421 O << "Ordering\n";
422 for (unsigned i = 0, N = Ordering.size(); i < N; i++) {
423 NodeInfo *NI = Ordering[i];
424 printNI(O, NI);
425 O << "\n";
426 if (NI->isGroupDominator()) {
427 NodeGroup *Group = NI->Group;
428 for (NIIterator NII = Group->group_begin(), E = Group->group_end();
429 NII != E; NII++) {
430 O << " ";
431 printNI(O, *NII);
432 O << "\n";
433 }
434 }
435 }
436#endif
437}
438
Evan Chenga9c20912006-01-21 02:32:06 +0000439void ScheduleDAG::dump(const char *tag) const {
440 std::cerr << tag; dump();
Jim Laskeyfab66f62005-10-12 18:29:35 +0000441}
442
Evan Chenga9c20912006-01-21 02:32:06 +0000443void ScheduleDAG::dump() const {
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000444 print(std::cerr);
445}
Jim Laskeye6b90fb2005-09-26 21:57:04 +0000446
Evan Chenga9c20912006-01-21 02:32:06 +0000447/// Run - perform scheduling.
448///
449MachineBasicBlock *ScheduleDAG::Run() {
450 TII = TM.getInstrInfo();
451 MRI = TM.getRegisterInfo();
452 RegMap = BB->getParent()->getSSARegMap();
453 ConstPool = BB->getParent()->getConstantPool();
Evan Cheng4ef10862006-01-23 07:01:07 +0000454
455 // Number the nodes
456 NodeCount = std::distance(DAG.allnodes_begin(), DAG.allnodes_end());
457 // Set up minimum info for scheduling
458 PrepareNodeInfo();
459 // Construct node groups for flagged nodes
460 IdentifyGroups();
461
Evan Chenga9c20912006-01-21 02:32:06 +0000462 Schedule();
463 return BB;
Chris Lattnerd32b2362005-08-18 18:45:24 +0000464}
Evan Cheng4ef10862006-01-23 07:01:07 +0000465
466
467/// CountInternalUses - Returns the number of edges between the two nodes.
468///
469static unsigned CountInternalUses(NodeInfo *D, NodeInfo *U) {
470 unsigned N = 0;
471 for (unsigned M = U->Node->getNumOperands(); 0 < M--;) {
472 SDOperand Op = U->Node->getOperand(M);
473 if (Op.Val == D->Node) N++;
474 }
475
476 return N;
477}
478
479//===----------------------------------------------------------------------===//
480/// Add - Adds a definer and user pair to a node group.
481///
482void NodeGroup::Add(NodeInfo *D, NodeInfo *U) {
483 // Get current groups
484 NodeGroup *DGroup = D->Group;
485 NodeGroup *UGroup = U->Group;
486 // If both are members of groups
487 if (DGroup && UGroup) {
488 // There may have been another edge connecting
489 if (DGroup == UGroup) return;
490 // Add the pending users count
491 DGroup->addPending(UGroup->getPending());
492 // For each member of the users group
493 NodeGroupIterator UNGI(U);
494 while (NodeInfo *UNI = UNGI.next() ) {
495 // Change the group
496 UNI->Group = DGroup;
497 // For each member of the definers group
498 NodeGroupIterator DNGI(D);
499 while (NodeInfo *DNI = DNGI.next() ) {
500 // Remove internal edges
501 DGroup->addPending(-CountInternalUses(DNI, UNI));
502 }
503 }
504 // Merge the two lists
505 DGroup->group_insert(DGroup->group_end(),
506 UGroup->group_begin(), UGroup->group_end());
507 } else if (DGroup) {
508 // Make user member of definers group
509 U->Group = DGroup;
510 // Add users uses to definers group pending
511 DGroup->addPending(U->Node->use_size());
512 // For each member of the definers group
513 NodeGroupIterator DNGI(D);
514 while (NodeInfo *DNI = DNGI.next() ) {
515 // Remove internal edges
516 DGroup->addPending(-CountInternalUses(DNI, U));
517 }
518 DGroup->group_push_back(U);
519 } else if (UGroup) {
520 // Make definer member of users group
521 D->Group = UGroup;
522 // Add definers uses to users group pending
523 UGroup->addPending(D->Node->use_size());
524 // For each member of the users group
525 NodeGroupIterator UNGI(U);
526 while (NodeInfo *UNI = UNGI.next() ) {
527 // Remove internal edges
528 UGroup->addPending(-CountInternalUses(D, UNI));
529 }
530 UGroup->group_insert(UGroup->group_begin(), D);
531 } else {
532 D->Group = U->Group = DGroup = new NodeGroup();
533 DGroup->addPending(D->Node->use_size() + U->Node->use_size() -
534 CountInternalUses(D, U));
535 DGroup->group_push_back(D);
536 DGroup->group_push_back(U);
537 }
538}