blob: 33436be4aa2e267f99c95914a1b532d2f5d88080 [file] [log] [blame]
Vikram S. Adve8b6d2452001-09-18 12:50:40 +00001// $Id$
2//***************************************************************************
3// File:
4// SchedGraph.cpp
5//
6// Purpose:
7// Scheduling graph based on SSA graph plus extra dependence edges
8// capturing dependences due to machine resources (machine registers,
9// CC registers, and any others).
10//
11// History:
12// 7/20/01 - Vikram Adve - Created
13//**************************************************************************/
Vikram S. Adve78ef1392001-08-28 23:06:02 +000014
Chris Lattner46cbff62001-09-14 16:56:32 +000015#include "SchedGraph.h"
Vikram S. Adve78ef1392001-08-28 23:06:02 +000016#include "llvm/InstrTypes.h"
17#include "llvm/Instruction.h"
18#include "llvm/BasicBlock.h"
19#include "llvm/Method.h"
Vikram S. Adve78ef1392001-08-28 23:06:02 +000020#include "llvm/CodeGen/MachineInstr.h"
Vikram S. Adve85b46d62001-10-17 23:53:16 +000021#include "llvm/CodeGen/InstrSelection.h"
Vikram S. Adve8b6d2452001-09-18 12:50:40 +000022#include "llvm/Target/MachineInstrInfo.h"
23#include "llvm/Target/MachineRegInfo.h"
Chris Lattnerc83e9542001-09-07 21:21:03 +000024#include "llvm/Support/StringExtras.h"
Chris Lattnerb00c5822001-10-02 03:41:24 +000025#include "llvm/iOther.h"
Chris Lattnerc83e9542001-09-07 21:21:03 +000026#include <algorithm>
Vikram S. Advec352d2c2001-11-05 04:04:23 +000027#include <hash_map>
28#include <vector>
Vikram S. Adve78ef1392001-08-28 23:06:02 +000029
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000030
31//*********************** Internal Data Structures *************************/
32
Vikram S. Advec352d2c2001-11-05 04:04:23 +000033// The following two types need to be classes, not typedefs, so we can use
34// opaque declarations in SchedGraph.h
35//
36struct RefVec: public vector< pair<SchedGraphNode*, int> > {
37 typedef vector< pair<SchedGraphNode*, int> >:: iterator iterator;
38 typedef vector< pair<SchedGraphNode*, int> >::const_iterator const_iterator;
39};
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000040
Chris Lattner80c685f2001-10-13 06:51:01 +000041struct RegToRefVecMap: public hash_map<int, RefVec> {
Vikram S. Advec352d2c2001-11-05 04:04:23 +000042 typedef hash_map<int, RefVec>:: iterator iterator;
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000043 typedef hash_map<int, RefVec>::const_iterator const_iterator;
44};
45
Vikram S. Advec352d2c2001-11-05 04:04:23 +000046struct ValueToDefVecMap: public hash_map<const Instruction*, RefVec> {
47 typedef hash_map<const Instruction*, RefVec>:: iterator iterator;
48 typedef hash_map<const Instruction*, RefVec>::const_iterator const_iterator;
49};
50
Vikram S. Adve78ef1392001-08-28 23:06:02 +000051//
52// class SchedGraphEdge
53//
54
55/*ctor*/
56SchedGraphEdge::SchedGraphEdge(SchedGraphNode* _src,
57 SchedGraphNode* _sink,
58 SchedGraphEdgeDepType _depType,
Vikram S. Advea93bbac2001-10-28 21:43:33 +000059 unsigned int _depOrderType,
Vikram S. Adve78ef1392001-08-28 23:06:02 +000060 int _minDelay)
61 : src(_src),
62 sink(_sink),
63 depType(_depType),
64 depOrderType(_depOrderType),
Chris Lattner80c685f2001-10-13 06:51:01 +000065 minDelay((_minDelay >= 0)? _minDelay : _src->getLatency()),
66 val(NULL)
Vikram S. Adve78ef1392001-08-28 23:06:02 +000067{
68 src->addOutEdge(this);
69 sink->addInEdge(this);
70}
71
72
73/*ctor*/
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000074SchedGraphEdge::SchedGraphEdge(SchedGraphNode* _src,
75 SchedGraphNode* _sink,
76 const Value* _val,
Vikram S. Advea93bbac2001-10-28 21:43:33 +000077 unsigned int _depOrderType,
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000078 int _minDelay)
Vikram S. Adve78ef1392001-08-28 23:06:02 +000079 : src(_src),
80 sink(_sink),
81 depType(DefUseDep),
82 depOrderType(_depOrderType),
Chris Lattner80c685f2001-10-13 06:51:01 +000083 minDelay((_minDelay >= 0)? _minDelay : _src->getLatency()),
84 val(_val)
Vikram S. Adve78ef1392001-08-28 23:06:02 +000085{
86 src->addOutEdge(this);
87 sink->addInEdge(this);
88}
89
90
91/*ctor*/
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000092SchedGraphEdge::SchedGraphEdge(SchedGraphNode* _src,
93 SchedGraphNode* _sink,
94 unsigned int _regNum,
Vikram S. Advea93bbac2001-10-28 21:43:33 +000095 unsigned int _depOrderType,
Vikram S. Adve5316f8f2001-09-30 23:36:58 +000096 int _minDelay)
Vikram S. Adve78ef1392001-08-28 23:06:02 +000097 : src(_src),
98 sink(_sink),
99 depType(MachineRegister),
100 depOrderType(_depOrderType),
101 minDelay((_minDelay >= 0)? _minDelay : _src->getLatency()),
102 machineRegNum(_regNum)
103{
104 src->addOutEdge(this);
105 sink->addInEdge(this);
106}
107
108
109/*ctor*/
110SchedGraphEdge::SchedGraphEdge(SchedGraphNode* _src,
111 SchedGraphNode* _sink,
112 ResourceId _resourceId,
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000113 int _minDelay)
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000114 : src(_src),
115 sink(_sink),
116 depType(MachineResource),
117 depOrderType(NonDataDep),
118 minDelay((_minDelay >= 0)? _minDelay : _src->getLatency()),
119 resourceId(_resourceId)
120{
121 src->addOutEdge(this);
122 sink->addInEdge(this);
123}
124
Vikram S. Adve8b6d2452001-09-18 12:50:40 +0000125/*dtor*/
126SchedGraphEdge::~SchedGraphEdge()
127{
128}
129
Chris Lattnerc83e9542001-09-07 21:21:03 +0000130void SchedGraphEdge::dump(int indent=0) const {
131 printIndent(indent); cout << *this;
132}
133
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000134
135//
136// class SchedGraphNode
137//
138
139/*ctor*/
140SchedGraphNode::SchedGraphNode(unsigned int _nodeId,
141 const Instruction* _instr,
142 const MachineInstr* _minstr,
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000143 int indexInBB,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000144 const TargetMachine& target)
145 : nodeId(_nodeId),
146 instr(_instr),
147 minstr(_minstr),
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000148 origIndexInBB(indexInBB),
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000149 latency(0)
150{
151 if (minstr)
152 {
153 MachineOpCode mopCode = minstr->getOpCode();
154 latency = target.getInstrInfo().hasResultInterlock(mopCode)
155 ? target.getInstrInfo().minLatency(mopCode)
156 : target.getInstrInfo().maxLatency(mopCode);
157 }
158}
159
160
161/*dtor*/
162SchedGraphNode::~SchedGraphNode()
163{
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000164}
165
Chris Lattnerc83e9542001-09-07 21:21:03 +0000166void SchedGraphNode::dump(int indent=0) const {
167 printIndent(indent); cout << *this;
168}
169
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000170
171inline void
172SchedGraphNode::addInEdge(SchedGraphEdge* edge)
173{
174 inEdges.push_back(edge);
175}
176
177
178inline void
179SchedGraphNode::addOutEdge(SchedGraphEdge* edge)
180{
181 outEdges.push_back(edge);
182}
183
184inline void
185SchedGraphNode::removeInEdge(const SchedGraphEdge* edge)
186{
187 assert(edge->getSink() == this);
Vikram S. Adve8b6d2452001-09-18 12:50:40 +0000188
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000189 for (iterator I = beginInEdges(); I != endInEdges(); ++I)
190 if ((*I) == edge)
191 {
192 inEdges.erase(I);
193 break;
194 }
195}
196
197inline void
198SchedGraphNode::removeOutEdge(const SchedGraphEdge* edge)
199{
200 assert(edge->getSrc() == this);
Vikram S. Adve8b6d2452001-09-18 12:50:40 +0000201
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000202 for (iterator I = beginOutEdges(); I != endOutEdges(); ++I)
203 if ((*I) == edge)
204 {
205 outEdges.erase(I);
206 break;
207 }
208}
209
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000210
211//
212// class SchedGraph
213//
214
215
216/*ctor*/
217SchedGraph::SchedGraph(const BasicBlock* bb,
218 const TargetMachine& target)
219{
220 bbVec.push_back(bb);
221 this->buildGraph(target);
222}
223
224
225/*dtor*/
226SchedGraph::~SchedGraph()
227{
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000228 for (iterator I=begin(); I != end(); ++I)
Vikram S. Adve8b6d2452001-09-18 12:50:40 +0000229 {
230 SchedGraphNode* node = (*I).second;
231
232 // for each node, delete its out-edges
233 for (SchedGraphNode::iterator I = node->beginOutEdges();
234 I != node->endOutEdges(); ++I)
235 delete *I;
236
237 // then delete the node itself.
238 delete node;
239 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000240}
241
242
243void
244SchedGraph::dump() const
245{
246 cout << " Sched Graph for Basic Blocks: ";
247 for (unsigned i=0, N=bbVec.size(); i < N; i++)
248 {
249 cout << (bbVec[i]->hasName()? bbVec[i]->getName() : "block")
250 << " (" << bbVec[i] << ")"
251 << ((i == N-1)? "" : ", ");
252 }
253
254 cout << endl << endl << " Actual Root nodes : ";
255 for (unsigned i=0, N=graphRoot->outEdges.size(); i < N; i++)
256 cout << graphRoot->outEdges[i]->getSink()->getNodeId()
257 << ((i == N-1)? "" : ", ");
258
259 cout << endl << " Graph Nodes:" << endl;
260 for (const_iterator I=begin(); I != end(); ++I)
261 cout << endl << * (*I).second;
262
263 cout << endl;
264}
265
266
267void
Vikram S. Adve8b6d2452001-09-18 12:50:40 +0000268SchedGraph::eraseIncomingEdges(SchedGraphNode* node, bool addDummyEdges)
269{
270 // Delete and disconnect all in-edges for the node
271 for (SchedGraphNode::iterator I = node->beginInEdges();
272 I != node->endInEdges(); ++I)
273 {
274 SchedGraphNode* srcNode = (*I)->getSrc();
275 srcNode->removeOutEdge(*I);
276 delete *I;
277
278 if (addDummyEdges &&
279 srcNode != getRoot() &&
280 srcNode->beginOutEdges() == srcNode->endOutEdges())
281 { // srcNode has no more out edges, so add an edge to dummy EXIT node
282 assert(node != getLeaf() && "Adding edge that was just removed?");
283 (void) new SchedGraphEdge(srcNode, getLeaf(),
284 SchedGraphEdge::CtrlDep, SchedGraphEdge::NonDataDep, 0);
285 }
286 }
287
288 node->inEdges.clear();
289}
290
291void
292SchedGraph::eraseOutgoingEdges(SchedGraphNode* node, bool addDummyEdges)
293{
294 // Delete and disconnect all out-edges for the node
295 for (SchedGraphNode::iterator I = node->beginOutEdges();
296 I != node->endOutEdges(); ++I)
297 {
298 SchedGraphNode* sinkNode = (*I)->getSink();
299 sinkNode->removeInEdge(*I);
300 delete *I;
301
302 if (addDummyEdges &&
303 sinkNode != getLeaf() &&
304 sinkNode->beginInEdges() == sinkNode->endInEdges())
305 { //sinkNode has no more in edges, so add an edge from dummy ENTRY node
306 assert(node != getRoot() && "Adding edge that was just removed?");
307 (void) new SchedGraphEdge(getRoot(), sinkNode,
308 SchedGraphEdge::CtrlDep, SchedGraphEdge::NonDataDep, 0);
309 }
310 }
311
312 node->outEdges.clear();
313}
314
315void
316SchedGraph::eraseIncidentEdges(SchedGraphNode* node, bool addDummyEdges)
317{
318 this->eraseIncomingEdges(node, addDummyEdges);
319 this->eraseOutgoingEdges(node, addDummyEdges);
320}
321
322
323void
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000324SchedGraph::addDummyEdges()
325{
326 assert(graphRoot->outEdges.size() == 0);
327
328 for (const_iterator I=begin(); I != end(); ++I)
329 {
330 SchedGraphNode* node = (*I).second;
331 assert(node != graphRoot && node != graphLeaf);
332 if (node->beginInEdges() == node->endInEdges())
333 (void) new SchedGraphEdge(graphRoot, node, SchedGraphEdge::CtrlDep,
334 SchedGraphEdge::NonDataDep, 0);
335 if (node->beginOutEdges() == node->endOutEdges())
336 (void) new SchedGraphEdge(node, graphLeaf, SchedGraphEdge::CtrlDep,
337 SchedGraphEdge::NonDataDep, 0);
338 }
339}
340
341
342void
343SchedGraph::addCDEdges(const TerminatorInst* term,
344 const TargetMachine& target)
345{
346 const MachineInstrInfo& mii = target.getInstrInfo();
347 MachineCodeForVMInstr& termMvec = term->getMachineInstrVec();
348
349 // Find the first branch instr in the sequence of machine instrs for term
350 //
351 unsigned first = 0;
352 while (! mii.isBranch(termMvec[first]->getOpCode()))
353 ++first;
354 assert(first < termMvec.size() &&
355 "No branch instructions for BR? Ok, but weird! Delete assertion.");
356 if (first == termMvec.size())
357 return;
358
359 SchedGraphNode* firstBrNode = this->getGraphNodeForInstr(termMvec[first]);
360
361 // Add CD edges from each instruction in the sequence to the
362 // *last preceding* branch instr. in the sequence
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000363 // Use a latency of 0 because we only need to prevent out-of-order issue.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000364 //
365 for (int i = (int) termMvec.size()-1; i > (int) first; i--)
366 {
367 SchedGraphNode* toNode = this->getGraphNodeForInstr(termMvec[i]);
368 assert(toNode && "No node for instr generated for branch?");
369
370 for (int j = i-1; j >= 0; j--)
371 if (mii.isBranch(termMvec[j]->getOpCode()))
372 {
373 SchedGraphNode* brNode = this->getGraphNodeForInstr(termMvec[j]);
374 assert(brNode && "No node for instr generated for branch?");
375 (void) new SchedGraphEdge(brNode, toNode, SchedGraphEdge::CtrlDep,
376 SchedGraphEdge::NonDataDep, 0);
377 break; // only one incoming edge is enough
378 }
379 }
380
381 // Add CD edges from each instruction preceding the first branch
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000382 // to the first branch. Use a latency of 0 as above.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000383 //
384 for (int i = first-1; i >= 0; i--)
385 {
386 SchedGraphNode* fromNode = this->getGraphNodeForInstr(termMvec[i]);
387 assert(fromNode && "No node for instr generated for branch?");
388 (void) new SchedGraphEdge(fromNode, firstBrNode, SchedGraphEdge::CtrlDep,
389 SchedGraphEdge::NonDataDep, 0);
390 }
391
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000392 // Now add CD edges to the first branch instruction in the sequence from
393 // all preceding instructions in the basic block. Use 0 latency again.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000394 //
395 const BasicBlock* bb = term->getParent();
396 for (BasicBlock::const_iterator II = bb->begin(); II != bb->end(); ++II)
397 {
398 if ((*II) == (const Instruction*) term) // special case, handled above
399 continue;
400
401 assert(! (*II)->isTerminator() && "Two terminators in basic block?");
402
403 const MachineCodeForVMInstr& mvec = (*II)->getMachineInstrVec();
404 for (unsigned i=0, N=mvec.size(); i < N; i++)
405 {
406 SchedGraphNode* fromNode = this->getGraphNodeForInstr(mvec[i]);
407 if (fromNode == NULL)
408 continue; // dummy instruction, e.g., PHI
409
410 (void) new SchedGraphEdge(fromNode, firstBrNode,
411 SchedGraphEdge::CtrlDep,
412 SchedGraphEdge::NonDataDep, 0);
413
414 // If we find any other machine instructions (other than due to
415 // the terminator) that also have delay slots, add an outgoing edge
416 // from the instruction to the instructions in the delay slots.
417 //
418 unsigned d = mii.getNumDelaySlots(mvec[i]->getOpCode());
419 assert(i+d < N && "Insufficient delay slots for instruction?");
420
421 for (unsigned j=1; j <= d; j++)
422 {
423 SchedGraphNode* toNode = this->getGraphNodeForInstr(mvec[i+j]);
424 assert(toNode && "No node for machine instr in delay slot?");
425 (void) new SchedGraphEdge(fromNode, toNode,
426 SchedGraphEdge::CtrlDep,
427 SchedGraphEdge::NonDataDep, 0);
428 }
429 }
430 }
431}
432
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000433static const int SG_LOAD_REF = 0;
434static const int SG_STORE_REF = 1;
435static const int SG_CALL_REF = 2;
436
437static const unsigned int SG_DepOrderArray[][3] = {
438 { SchedGraphEdge::NonDataDep,
439 SchedGraphEdge::AntiDep,
440 SchedGraphEdge::AntiDep },
441 { SchedGraphEdge::TrueDep,
442 SchedGraphEdge::OutputDep,
443 SchedGraphEdge::TrueDep | SchedGraphEdge::OutputDep },
444 { SchedGraphEdge::TrueDep,
445 SchedGraphEdge::AntiDep | SchedGraphEdge::OutputDep,
446 SchedGraphEdge::TrueDep | SchedGraphEdge::AntiDep
447 | SchedGraphEdge::OutputDep }
448};
449
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000450
Vikram S. Advee64574c2001-11-08 05:20:23 +0000451// Add a dependence edge between every pair of machine load/store/call
452// instructions, where at least one is a store or a call.
453// Use latency 1 just to ensure that memory operations are ordered;
454// latency does not otherwise matter (true dependences enforce that).
455//
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000456void
Vikram S. Advee64574c2001-11-08 05:20:23 +0000457SchedGraph::addMemEdges(const vector<SchedGraphNode*>& memNodeVec,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000458 const TargetMachine& target)
459{
460 const MachineInstrInfo& mii = target.getInstrInfo();
461
Vikram S. Advee64574c2001-11-08 05:20:23 +0000462 // Instructions in memNodeVec are in execution order within the basic block,
463 // so simply look at all pairs <memNodeVec[i], memNodeVec[j: j > i]>.
464 //
465 for (unsigned im=0, NM=memNodeVec.size(); im < NM; im++)
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000466 {
Vikram S. Advee64574c2001-11-08 05:20:23 +0000467 MachineOpCode fromOpCode = memNodeVec[im]->getOpCode();
468 int fromType = mii.isCall(fromOpCode)? SG_CALL_REF
469 : mii.isLoad(fromOpCode)? SG_LOAD_REF
470 : SG_STORE_REF;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000471 for (unsigned jm=im+1; jm < NM; jm++)
472 {
Vikram S. Advee64574c2001-11-08 05:20:23 +0000473 MachineOpCode toOpCode = memNodeVec[jm]->getOpCode();
474 int toType = mii.isCall(toOpCode)? SG_CALL_REF
475 : mii.isLoad(toOpCode)? SG_LOAD_REF
476 : SG_STORE_REF;
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000477
Vikram S. Advee64574c2001-11-08 05:20:23 +0000478 if (fromType != SG_LOAD_REF || toType != SG_LOAD_REF)
479 (void) new SchedGraphEdge(memNodeVec[im], memNodeVec[jm],
480 SchedGraphEdge::MemoryDep,
481 SG_DepOrderArray[fromType][toType], 1);
482 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000483 }
Vikram S. Advee64574c2001-11-08 05:20:23 +0000484}
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000485
Vikram S. Advee64574c2001-11-08 05:20:23 +0000486// Add edges from/to CC reg instrs to/from call instrs.
487// Essentially this prevents anything that sets or uses a CC reg from being
488// reordered w.r.t. a call.
489// Use a latency of 0 because we only need to prevent out-of-order issue,
490// like with control dependences.
491//
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000492void
Vikram S. Advee64574c2001-11-08 05:20:23 +0000493SchedGraph::addCallCCEdges(const vector<SchedGraphNode*>& memNodeVec,
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000494 MachineCodeForBasicBlock& bbMvec,
495 const TargetMachine& target)
496{
497 const MachineInstrInfo& mii = target.getInstrInfo();
498 vector<SchedGraphNode*> callNodeVec;
499
Vikram S. Advee64574c2001-11-08 05:20:23 +0000500 // Find the call instruction nodes and put them in a vector.
501 for (unsigned im=0, NM=memNodeVec.size(); im < NM; im++)
502 if (mii.isCall(memNodeVec[im]->getOpCode()))
503 callNodeVec.push_back(memNodeVec[im]);
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000504
Vikram S. Advee64574c2001-11-08 05:20:23 +0000505 // Now walk the entire basic block, looking for CC instructions *and*
506 // call instructions, and keep track of the order of the instructions.
507 // Use the call node vec to quickly find earlier and later call nodes
508 // relative to the current CC instruction.
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000509 //
510 int lastCallNodeIdx = -1;
511 for (unsigned i=0, N=bbMvec.size(); i < N; i++)
512 if (mii.isCall(bbMvec[i]->getOpCode()))
513 {
514 ++lastCallNodeIdx;
515 for ( ; lastCallNodeIdx < (int)callNodeVec.size(); ++lastCallNodeIdx)
516 if (callNodeVec[lastCallNodeIdx]->getMachineInstr() == bbMvec[i])
517 break;
518 assert(lastCallNodeIdx < (int)callNodeVec.size() && "Missed Call?");
519 }
520 else if (mii.isCCInstr(bbMvec[i]->getOpCode()))
521 { // Add incoming/outgoing edges from/to preceding/later calls
522 SchedGraphNode* ccNode = this->getGraphNodeForInstr(bbMvec[i]);
523 int j=0;
524 for ( ; j <= lastCallNodeIdx; j++)
525 (void) new SchedGraphEdge(callNodeVec[j], ccNode,
526 MachineCCRegsRID, 0);
527 for ( ; j < (int) callNodeVec.size(); j++)
528 (void) new SchedGraphEdge(ccNode, callNodeVec[j],
529 MachineCCRegsRID, 0);
530 }
531}
532
533
534void
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000535SchedGraph::addMachineRegEdges(RegToRefVecMap& regToRefVecMap,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000536 const TargetMachine& target)
537{
538 assert(bbVec.size() == 1 && "Only handling a single basic block here");
539
540 // This assumes that such hardwired registers are never allocated
541 // to any LLVM value (since register allocation happens later), i.e.,
542 // any uses or defs of this register have been made explicit!
543 // Also assumes that two registers with different numbers are
544 // not aliased!
545 //
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000546 for (RegToRefVecMap::iterator I = regToRefVecMap.begin();
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000547 I != regToRefVecMap.end(); ++I)
548 {
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000549 int regNum = (*I).first;
550 RefVec& regRefVec = (*I).second;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000551
552 // regRefVec is ordered by control flow order in the basic block
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000553 for (unsigned i=0; i < regRefVec.size(); ++i)
554 {
555 SchedGraphNode* node = regRefVec[i].first;
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000556 unsigned int opNum = regRefVec[i].second;
557 bool isDef = node->getMachineInstr()->operandIsDefined(opNum);
558
559 for (unsigned p=0; p < i; ++p)
560 {
561 SchedGraphNode* prevNode = regRefVec[p].first;
562 if (prevNode != node)
563 {
564 unsigned int prevOpNum = regRefVec[p].second;
565 bool prevIsDef =
566 prevNode->getMachineInstr()->operandIsDefined(prevOpNum);
567
568 if (isDef)
569 new SchedGraphEdge(prevNode, node, regNum,
570 (prevIsDef)? SchedGraphEdge::OutputDep
571 : SchedGraphEdge::AntiDep);
572 else if (prevIsDef)
573 new SchedGraphEdge(prevNode, node, regNum,
574 SchedGraphEdge::TrueDep);
575 }
576 }
577 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000578 }
579}
580
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000581
582void
583SchedGraph::addSSAEdge(SchedGraphNode* destNode,
584 const RefVec& defVec,
585 const Value* defValue,
586 const TargetMachine& target)
587{
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000588 // Add edges from all def nodes that are before destNode in the BB.
589 // BIGTIME FIXME:
590 // We could probably add non-SSA edges here too! But I'll do that later.
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000591 for (RefVec::const_iterator I=defVec.begin(), E=defVec.end(); I != E; ++I)
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000592 if ((*I).first->getOrigIndexInBB() < destNode->getOrigIndexInBB())
593 (void) new SchedGraphEdge((*I).first, destNode, defValue);
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000594}
595
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000596
597void
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000598SchedGraph::addEdgesForInstruction(const MachineInstr& minstr,
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000599 const ValueToDefVecMap& valueToDefVecMap,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000600 const TargetMachine& target)
601{
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000602 SchedGraphNode* node = this->getGraphNodeForInstr(&minstr);
603 if (node == NULL)
604 return;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000605
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000606 assert(node->getInstr() && "Should be no dummy nodes here!");
Vikram S. Adve85b46d62001-10-17 23:53:16 +0000607 const Instruction* instr = node->getInstr();
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000608
609 // Add edges for all operands of the machine instruction.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000610 //
611 for (unsigned i=0, numOps=minstr.getNumOperands(); i < numOps; i++)
612 {
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000613 // ignore def operands here
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000614 if (minstr.operandIsDefined(i))
615 continue;
616
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000617 const MachineOperand& mop = minstr.getOperand(i);
618
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000619 switch(mop.getOperandType())
620 {
621 case MachineOperand::MO_VirtualRegister:
622 case MachineOperand::MO_CCRegister:
Vikram S. Adve85b46d62001-10-17 23:53:16 +0000623 if (const Instruction* srcI =
624 dyn_cast_or_null<Instruction>(mop.getVRegValue()))
625 {
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000626 ValueToDefVecMap::const_iterator I = valueToDefVecMap.find(srcI);
627 if (I != valueToDefVecMap.end())
628 addSSAEdge(node, (*I).second, mop.getVRegValue(), target);
Vikram S. Adve85b46d62001-10-17 23:53:16 +0000629 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000630 break;
631
632 case MachineOperand::MO_MachineRegister:
633 break;
634
635 case MachineOperand::MO_SignExtendedImmed:
636 case MachineOperand::MO_UnextendedImmed:
637 case MachineOperand::MO_PCRelativeDisp:
638 break; // nothing to do for immediate fields
639
640 default:
641 assert(0 && "Unknown machine operand type in SchedGraph builder");
642 break;
643 }
644 }
Vikram S. Adve8d0ffa52001-10-11 04:22:45 +0000645
646 // Add edges for values implicitly used by the machine instruction.
647 // Examples include function arguments to a Call instructions or the return
648 // value of a Ret instruction.
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000649 //
Vikram S. Adve8d0ffa52001-10-11 04:22:45 +0000650 for (unsigned i=0, N=minstr.getNumImplicitRefs(); i < N; ++i)
651 if (! minstr.implicitRefIsDefined(i))
Vikram S. Adve85b46d62001-10-17 23:53:16 +0000652 if (const Instruction* srcI =
653 dyn_cast_or_null<Instruction>(minstr.getImplicitRef(i)))
654 {
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000655 ValueToDefVecMap::const_iterator I = valueToDefVecMap.find(srcI);
656 if (I != valueToDefVecMap.end())
657 addSSAEdge(node, (*I).second, minstr.getImplicitRef(i), target);
Vikram S. Adve85b46d62001-10-17 23:53:16 +0000658 }
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000659}
660
661
662void
663SchedGraph::addNonSSAEdgesForValue(const Instruction* instr,
664 const TargetMachine& target)
665{
Chris Lattnerb00c5822001-10-02 03:41:24 +0000666 if (isa<PHINode>(instr))
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000667 return;
668
669 MachineCodeForVMInstr& mvec = instr->getMachineInstrVec();
670 const MachineInstrInfo& mii = target.getInstrInfo();
671 RefVec refVec;
672
673 for (unsigned i=0, N=mvec.size(); i < N; i++)
674 for (int o=0, N = mii.getNumOperands(mvec[i]->getOpCode()); o < N; o++)
675 {
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000676 const MachineOperand& mop = mvec[i]->getOperand(o);
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000677
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000678 if ((mop.getOperandType() == MachineOperand::MO_VirtualRegister ||
679 mop.getOperandType() == MachineOperand::MO_CCRegister)
680 && mop.getVRegValue() == (Value*) instr)
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000681 {
682 // this operand is a definition or use of value `instr'
683 SchedGraphNode* node = this->getGraphNodeForInstr(mvec[i]);
684 assert(node && "No node for machine instruction in this BB?");
685 refVec.push_back(make_pair(node, o));
686 }
687 }
688
689 // refVec is ordered by control flow order of the machine instructions
690 for (unsigned i=0; i < refVec.size(); ++i)
691 {
692 SchedGraphNode* node = refVec[i].first;
693 unsigned int opNum = refVec[i].second;
694 bool isDef = node->getMachineInstr()->operandIsDefined(opNum);
695
696 if (isDef)
697 // add output and/or anti deps to this definition
698 for (unsigned p=0; p < i; ++p)
699 {
700 SchedGraphNode* prevNode = refVec[p].first;
701 if (prevNode != node)
702 {
703 bool prevIsDef = prevNode->getMachineInstr()->
704 operandIsDefined(refVec[p].second);
705 new SchedGraphEdge(prevNode, node, SchedGraphEdge::DefUseDep,
706 (prevIsDef)? SchedGraphEdge::OutputDep
707 : SchedGraphEdge::AntiDep);
708 }
709 }
710 }
711}
712
713
714void
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000715SchedGraph::findDefUseInfoAtInstr(const TargetMachine& target,
716 SchedGraphNode* node,
Vikram S. Advee64574c2001-11-08 05:20:23 +0000717 vector<SchedGraphNode*>& memNodeVec,
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000718 RegToRefVecMap& regToRefVecMap,
719 ValueToDefVecMap& valueToDefVecMap)
720{
721 const MachineInstrInfo& mii = target.getInstrInfo();
722
Vikram S. Advee64574c2001-11-08 05:20:23 +0000723
724 MachineOpCode opCode = node->getOpCode();
725 if (mii.isLoad(opCode) || mii.isStore(opCode) || mii.isCall(opCode))
726 memNodeVec.push_back(node);
727
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000728 // Collect the register references and value defs. for explicit operands
729 //
730 const MachineInstr& minstr = * node->getMachineInstr();
731 for (int i=0, numOps = (int) minstr.getNumOperands(); i < numOps; i++)
732 {
733 const MachineOperand& mop = minstr.getOperand(i);
734
735 // if this references a register other than the hardwired
736 // "zero" register, record the reference.
737 if (mop.getOperandType() == MachineOperand::MO_MachineRegister)
738 {
739 int regNum = mop.getMachineRegNum();
740 if (regNum != target.getRegInfo().getZeroRegNum())
Vikram S. Advee64574c2001-11-08 05:20:23 +0000741 regToRefVecMap[mop.getMachineRegNum()].push_back(make_pair(node,
742 i));
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000743 continue; // nothing more to do
744 }
745
746 // ignore all other non-def operands
747 if (! minstr.operandIsDefined(i))
748 continue;
749
750 // We must be defining a value.
751 assert((mop.getOperandType() == MachineOperand::MO_VirtualRegister ||
752 mop.getOperandType() == MachineOperand::MO_CCRegister)
753 && "Do not expect any other kind of operand to be defined!");
754
755 const Instruction* defInstr = cast<Instruction>(mop.getVRegValue());
756 valueToDefVecMap[defInstr].push_back(make_pair(node, i));
757 }
Vikram S. Advee64574c2001-11-08 05:20:23 +0000758
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000759 //
760 // Collect value defs. for implicit operands. The interface to extract
761 // them assumes they must be virtual registers!
762 //
763 for (int i=0, N = (int) minstr.getNumImplicitRefs(); i < N; ++i)
764 if (minstr.implicitRefIsDefined(i))
765 if (const Instruction* defInstr =
766 dyn_cast_or_null<Instruction>(minstr.getImplicitRef(i)))
767 {
768 valueToDefVecMap[defInstr].push_back(make_pair(node, -i));
769 }
770}
771
772
773void
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000774SchedGraph::buildNodesforBB(const TargetMachine& target,
775 const BasicBlock* bb,
776 vector<SchedGraphNode*>& memNodeVec,
777 RegToRefVecMap& regToRefVecMap,
778 ValueToDefVecMap& valueToDefVecMap)
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000779{
780 const MachineInstrInfo& mii = target.getInstrInfo();
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000781 int origIndexInBB = 0;
782
783 // Build graph nodes for each VM instruction and gather def/use info.
784 // Do both those together in a single pass over all machine instructions.
785 for (BasicBlock::const_iterator II = bb->begin(); II != bb->end(); ++II)
786 {
787 const Instruction *instr = *II;
788 const MachineCodeForVMInstr& mvec = instr->getMachineInstrVec();
789 for (unsigned i=0; i < mvec.size(); i++)
790 if (! mii.isDummyPhiInstr(mvec[i]->getOpCode()))
791 {
792 SchedGraphNode* node = new SchedGraphNode(getNumNodes(), instr,
793 mvec[i], origIndexInBB++, target);
794 this->noteGraphNodeForInstr(mvec[i], node);
795
796 // Remember all register references and value defs
797 findDefUseInfoAtInstr(target, node,
798 memNodeVec, regToRefVecMap,valueToDefVecMap);
799 }
800 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000801}
802
803
804void
805SchedGraph::buildGraph(const TargetMachine& target)
806{
807 const MachineInstrInfo& mii = target.getInstrInfo();
808 const BasicBlock* bb = bbVec[0];
809
810 assert(bbVec.size() == 1 && "Only handling a single basic block here");
811
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000812 // Use this data structure to note all machine operands that compute
813 // ordinary LLVM values. These must be computed defs (i.e., instructions).
814 // Note that there may be multiple machine instructions that define
815 // each Value.
816 ValueToDefVecMap valueToDefVecMap;
817
Vikram S. Advee64574c2001-11-08 05:20:23 +0000818 // Use this data structure to note all memory instructions.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000819 // We use this to add memory dependence edges without a second full walk.
820 //
Vikram S. Advee64574c2001-11-08 05:20:23 +0000821 // vector<const Instruction*> memVec;
822 vector<SchedGraphNode*> memNodeVec;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000823
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000824 // Use this data structure to note any uses or definitions of
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000825 // machine registers so we can add edges for those later without
826 // extra passes over the nodes.
827 // The vector holds an ordered list of references to the machine reg,
828 // ordered according to control-flow order. This only works for a
829 // single basic block, hence the assertion. Each reference is identified
830 // by the pair: <node, operand-number>.
831 //
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000832 RegToRefVecMap regToRefVecMap;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000833
834 // Make a dummy root node. We'll add edges to the real roots later.
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000835 graphRoot = new SchedGraphNode(0, NULL, NULL, -1, target);
836 graphLeaf = new SchedGraphNode(1, NULL, NULL, -1, target);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000837
838 //----------------------------------------------------------------
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000839 // First add nodes for all the machine instructions in the basic block
840 // because this greatly simplifies identifying which edges to add.
841 // Do this one VM instruction at a time since the SchedGraphNode needs that.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000842 // Also, remember the load/store instructions to add memory deps later.
843 //----------------------------------------------------------------
844
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000845 buildNodesforBB(target, bb, memNodeVec, regToRefVecMap, valueToDefVecMap);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000846
847 //----------------------------------------------------------------
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000848 // Now add edges for the following (all are incoming edges except (4)):
849 // (1) operands of the machine instruction, including hidden operands
850 // (2) machine register dependences
851 // (3) memory load/store dependences
852 // (3) other resource dependences for the machine instruction, if any
853 // (4) output dependences when multiple machine instructions define the
854 // same value; all must have been generated from a single VM instrn
855 // (5) control dependences to branch instructions generated for the
856 // terminator instruction of the BB. Because of delay slots and
857 // 2-way conditional branches, multiple CD edges are needed
858 // (see addCDEdges for details).
859 // Also, note any uses or defs of machine registers.
860 //
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000861 //----------------------------------------------------------------
862
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000863 MachineCodeForBasicBlock& bbMvec = bb->getMachineInstrVec();
864
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000865 // First, add edges to the terminator instruction of the basic block.
866 this->addCDEdges(bb->getTerminator(), target);
867
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000868 // Then add memory dep edges: store->load, load->store, and store->store.
869 // Call instructions are treated as both load and store.
Vikram S. Advee64574c2001-11-08 05:20:23 +0000870 this->addMemEdges(memNodeVec, target);
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000871
872 // Then add edges between call instructions and CC set/use instructions
Vikram S. Advee64574c2001-11-08 05:20:23 +0000873 this->addCallCCEdges(memNodeVec, bbMvec, target);
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000874
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000875 // Then add incoming def-use (SSA) edges for each machine instruction.
Vikram S. Advea93bbac2001-10-28 21:43:33 +0000876 for (unsigned i=0, N=bbMvec.size(); i < N; i++)
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000877 addEdgesForInstruction(*bbMvec[i], valueToDefVecMap, target);
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000878
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000879 // Then add non-SSA edges for all VM instructions in the block.
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000880 // We assume that all machine instructions that define a value are
881 // generated from the VM instruction corresponding to that value.
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000882 // TODO: This could probably be done much more efficiently.
Vikram S. Adve5316f8f2001-09-30 23:36:58 +0000883 for (BasicBlock::const_iterator II = bb->begin(); II != bb->end(); ++II)
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000884 this->addNonSSAEdgesForValue(*II, target);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000885
886 // Then add edges for dependences on machine registers
887 this->addMachineRegEdges(regToRefVecMap, target);
888
889 // Finally, add edges from the dummy root and to dummy leaf
890 this->addDummyEdges();
891}
892
893
894//
895// class SchedGraphSet
896//
897
898/*ctor*/
899SchedGraphSet::SchedGraphSet(const Method* _method,
900 const TargetMachine& target) :
901 method(_method)
902{
903 buildGraphsForMethod(method, target);
904}
905
906
907/*dtor*/
908SchedGraphSet::~SchedGraphSet()
909{
910 // delete all the graphs
911 for (iterator I=begin(); I != end(); ++I)
912 delete (*I).second;
913}
914
915
916void
917SchedGraphSet::dump() const
918{
919 cout << "======== Sched graphs for method `"
920 << (method->hasName()? method->getName() : "???")
921 << "' ========" << endl << endl;
922
923 for (const_iterator I=begin(); I != end(); ++I)
924 (*I).second->dump();
925
926 cout << endl << "====== End graphs for method `"
927 << (method->hasName()? method->getName() : "")
928 << "' ========" << endl << endl;
929}
930
931
932void
933SchedGraphSet::buildGraphsForMethod(const Method *method,
934 const TargetMachine& target)
935{
936 for (Method::const_iterator BI = method->begin(); BI != method->end(); ++BI)
937 {
938 SchedGraph* graph = new SchedGraph(*BI, target);
939 this->noteGraphForBlock(*BI, graph);
940 }
941}
942
943
944
945ostream&
946operator<<(ostream& os, const SchedGraphEdge& edge)
947{
948 os << "edge [" << edge.src->getNodeId() << "] -> ["
949 << edge.sink->getNodeId() << "] : ";
950
951 switch(edge.depType) {
952 case SchedGraphEdge::CtrlDep: os<< "Control Dep"; break;
953 case SchedGraphEdge::DefUseDep: os<< "Reg Value " << edge.val; break;
954 case SchedGraphEdge::MemoryDep: os<< "Mem Value " << edge.val; break;
955 case SchedGraphEdge::MachineRegister: os<< "Reg " <<edge.machineRegNum;break;
956 case SchedGraphEdge::MachineResource: os<<"Resource "<<edge.resourceId;break;
957 default: assert(0); break;
958 }
959
960 os << " : delay = " << edge.minDelay << endl;
961
962 return os;
963}
964
965ostream&
966operator<<(ostream& os, const SchedGraphNode& node)
967{
968 printIndent(4, os);
969 os << "Node " << node.nodeId << " : "
970 << "latency = " << node.latency << endl;
971
972 printIndent(6, os);
973
974 if (node.getMachineInstr() == NULL)
975 os << "(Dummy node)" << endl;
976 else
977 {
978 os << *node.getMachineInstr() << endl;
979
980 printIndent(6, os);
981 os << node.inEdges.size() << " Incoming Edges:" << endl;
982 for (unsigned i=0, N=node.inEdges.size(); i < N; i++)
983 {
984 printIndent(8, os);
985 os << * node.inEdges[i];
986 }
987
988 printIndent(6, os);
989 os << node.outEdges.size() << " Outgoing Edges:" << endl;
990 for (unsigned i=0, N=node.outEdges.size(); i < N; i++)
991 {
992 printIndent(8, os);
993 os << * node.outEdges[i];
994 }
995 }
996
997 return os;
998}