blob: 43d83336a57ec4517f0d338377197bbec0b567a6 [file] [log] [blame]
Dan Gohman84fbac52009-02-06 17:22:58 +00001//===---- ScheduleDAGSDNodes.h - SDNode Scheduling --------------*- C++ -*-===//
Dan Gohman343f0c02008-11-19 23:18:57 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ScheduleDAGSDNodes class, which implements
11// scheduling for an SDNode-based dependency graph.
12//
13//===----------------------------------------------------------------------===//
14
Dan Gohman84fbac52009-02-06 17:22:58 +000015#ifndef SCHEDULEDAGSDNODES_H
16#define SCHEDULEDAGSDNODES_H
Dan Gohman343f0c02008-11-19 23:18:57 +000017
18#include "llvm/CodeGen/ScheduleDAG.h"
19#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000020
21namespace llvm {
Dan Gohman983bbba2008-12-22 21:06:20 +000022 /// ScheduleDAGSDNodes - A ScheduleDAG for scheduling SDNode-based DAGs.
23 ///
24 /// Edges between SUnits are initially based on edges in the SelectionDAG,
25 /// and additional edges can be added by the schedulers as heuristics.
26 /// SDNodes such as Constants, Registers, and a few others that are not
27 /// interesting to schedulers are not allocated SUnits.
28 ///
29 /// SDNodes with MVT::Flag operands are grouped along with the flagged
30 /// nodes into a single SUnit so that they are scheduled together.
31 ///
32 /// SDNode-based scheduling graphs do not use SDep::Anti or SDep::Output
33 /// edges. Physical register dependence information is not carried in
34 /// the DAG and must be handled explicitly by schedulers.
35 ///
Dan Gohman343f0c02008-11-19 23:18:57 +000036 class ScheduleDAGSDNodes : public ScheduleDAG {
37 public:
Dan Gohman47ac0f02009-02-11 04:27:20 +000038 SelectionDAG *DAG; // DAG of the current basic block
39
Dan Gohman79ce2762009-01-15 19:20:50 +000040 explicit ScheduleDAGSDNodes(MachineFunction &mf);
Dan Gohman343f0c02008-11-19 23:18:57 +000041
42 virtual ~ScheduleDAGSDNodes() {}
43
Dan Gohman47ac0f02009-02-11 04:27:20 +000044 /// Run - perform scheduling.
45 ///
46 void Run(SelectionDAG *dag, MachineBasicBlock *bb,
47 MachineBasicBlock::iterator insertPos);
48
Dan Gohman343f0c02008-11-19 23:18:57 +000049 /// isPassiveNode - Return true if the node is a non-scheduled leaf.
50 ///
51 static bool isPassiveNode(SDNode *Node) {
52 if (isa<ConstantSDNode>(Node)) return true;
53 if (isa<ConstantFPSDNode>(Node)) return true;
54 if (isa<RegisterSDNode>(Node)) return true;
55 if (isa<GlobalAddressSDNode>(Node)) return true;
56 if (isa<BasicBlockSDNode>(Node)) return true;
57 if (isa<FrameIndexSDNode>(Node)) return true;
58 if (isa<ConstantPoolSDNode>(Node)) return true;
59 if (isa<JumpTableSDNode>(Node)) return true;
60 if (isa<ExternalSymbolSDNode>(Node)) return true;
Dan Gohman8c2b5252009-10-30 01:27:03 +000061 if (isa<BlockAddressSDNode>(Node)) return true;
Chris Lattnerdecc2672010-04-07 05:20:54 +000062 if (Node->getOpcode() == ISD::EntryToken ||
63 isa<MDNodeSDNode>(Node)) return true;
Dan Gohman343f0c02008-11-19 23:18:57 +000064 return false;
65 }
66
67 /// NewSUnit - Creates a new SUnit and return a ptr to it.
68 ///
69 SUnit *NewSUnit(SDNode *N) {
Dan Gohman983bbba2008-12-22 21:06:20 +000070#ifndef NDEBUG
Bill Wendlingd5b207b2009-01-01 01:14:31 +000071 const SUnit *Addr = 0;
Dan Gohman5f7c41c2009-01-27 22:12:23 +000072 if (!SUnits.empty())
Bill Wendlingd5b207b2009-01-01 01:14:31 +000073 Addr = &SUnits[0];
Dan Gohman983bbba2008-12-22 21:06:20 +000074#endif
Dan Gohman343f0c02008-11-19 23:18:57 +000075 SUnits.push_back(SUnit(N, (unsigned)SUnits.size()));
Bill Wendlingd5b207b2009-01-01 01:14:31 +000076 assert((Addr == 0 || Addr == &SUnits[0]) &&
77 "SUnits std::vector reallocated on the fly!");
Dan Gohman343f0c02008-11-19 23:18:57 +000078 SUnits.back().OrigNode = &SUnits.back();
79 return &SUnits.back();
80 }
81
82 /// Clone - Creates a clone of the specified SUnit. It does not copy the
83 /// predecessors / successors info nor the temporary scheduling states.
84 ///
85 SUnit *Clone(SUnit *N);
86
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +000087 /// BuildSchedGraph - Build the SUnit graph from the selection dag that we
88 /// are input. This SUnit graph is similar to the SelectionDAG, but
89 /// excludes nodes that aren't interesting to scheduling, and represents
90 /// flagged together nodes with a single SUnit.
Dan Gohman98976e42009-10-09 23:33:48 +000091 virtual void BuildSchedGraph(AliasAnalysis *AA);
Dan Gohman343f0c02008-11-19 23:18:57 +000092
93 /// ComputeLatency - Compute node latency.
94 ///
95 virtual void ComputeLatency(SUnit *SU);
96
Evan Chengfb2e7522009-09-18 21:02:19 +000097 virtual MachineBasicBlock *
98 EmitSchedule(DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM);
Dan Gohman343f0c02008-11-19 23:18:57 +000099
100 /// Schedule - Order nodes according to selected style, filling
101 /// in the Sequence member.
102 ///
103 virtual void Schedule() = 0;
104
105 virtual void dumpNode(const SUnit *SU) const;
106
107 virtual std::string getGraphNodeLabel(const SUnit *SU) const;
108
109 virtual void getCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const;
110
111 private:
Evan Chengc589e032010-01-22 03:36:51 +0000112 /// ClusterNeighboringLoads - Cluster loads from "near" addresses into
113 /// combined SUnits.
114 void ClusterNeighboringLoads();
115
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000116 /// BuildSchedUnits, AddSchedEdges - Helper functions for BuildSchedGraph.
117 void BuildSchedUnits();
118 void AddSchedEdges();
Dan Gohman343f0c02008-11-19 23:18:57 +0000119 };
Dan Gohman343f0c02008-11-19 23:18:57 +0000120}
121
122#endif