blob: 9c27b2ea02ec2b6d46b976e0118fb2562b6308e3 [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.
Andrew Trick92e94662011-02-04 03:18:17 +000023 ///
Dan Gohman983bbba2008-12-22 21:06:20 +000024 /// 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 ///
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000029 /// SDNodes with MVT::Glue operands are grouped along with the flagged
Dan Gohman983bbba2008-12-22 21:06:20 +000030 /// 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
Evan Cheng3ef1c872010-09-10 01:29:16 +000039 const InstrItineraryData *InstrItins;
Dan Gohman47ac0f02009-02-11 04:27:20 +000040
Dan Gohman79ce2762009-01-15 19:20:50 +000041 explicit ScheduleDAGSDNodes(MachineFunction &mf);
Dan Gohman343f0c02008-11-19 23:18:57 +000042
43 virtual ~ScheduleDAGSDNodes() {}
44
Dan Gohman47ac0f02009-02-11 04:27:20 +000045 /// Run - perform scheduling.
46 ///
47 void Run(SelectionDAG *dag, MachineBasicBlock *bb,
48 MachineBasicBlock::iterator insertPos);
49
Dan Gohman343f0c02008-11-19 23:18:57 +000050 /// isPassiveNode - Return true if the node is a non-scheduled leaf.
51 ///
52 static bool isPassiveNode(SDNode *Node) {
53 if (isa<ConstantSDNode>(Node)) return true;
54 if (isa<ConstantFPSDNode>(Node)) return true;
55 if (isa<RegisterSDNode>(Node)) return true;
56 if (isa<GlobalAddressSDNode>(Node)) return true;
57 if (isa<BasicBlockSDNode>(Node)) return true;
58 if (isa<FrameIndexSDNode>(Node)) return true;
59 if (isa<ConstantPoolSDNode>(Node)) return true;
60 if (isa<JumpTableSDNode>(Node)) return true;
61 if (isa<ExternalSymbolSDNode>(Node)) return true;
Dan Gohman8c2b5252009-10-30 01:27:03 +000062 if (isa<BlockAddressSDNode>(Node)) return true;
Chris Lattnerdecc2672010-04-07 05:20:54 +000063 if (Node->getOpcode() == ISD::EntryToken ||
64 isa<MDNodeSDNode>(Node)) return true;
Dan Gohman343f0c02008-11-19 23:18:57 +000065 return false;
66 }
67
68 /// NewSUnit - Creates a new SUnit and return a ptr to it.
69 ///
Evan Cheng1cc39842010-05-20 23:26:43 +000070 SUnit *NewSUnit(SDNode *N);
Dan Gohman343f0c02008-11-19 23:18:57 +000071
72 /// Clone - Creates a clone of the specified SUnit. It does not copy the
73 /// predecessors / successors info nor the temporary scheduling states.
74 ///
75 SUnit *Clone(SUnit *N);
Andrew Trick92e94662011-02-04 03:18:17 +000076
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +000077 /// BuildSchedGraph - Build the SUnit graph from the selection dag that we
78 /// are input. This SUnit graph is similar to the SelectionDAG, but
79 /// excludes nodes that aren't interesting to scheduling, and represents
80 /// flagged together nodes with a single SUnit.
Dan Gohman98976e42009-10-09 23:33:48 +000081 virtual void BuildSchedGraph(AliasAnalysis *AA);
Dan Gohman343f0c02008-11-19 23:18:57 +000082
Andrew Trick54699762011-04-07 19:54:57 +000083 /// InitVRegCycleFlag - Set isVRegCycle if this node's single use is
84 /// CopyToReg and its only active data operands are CopyFromReg within a
85 /// single block loop.
86 ///
87 void InitVRegCycleFlag(SUnit *SU);
88
Andrew Trick92e94662011-02-04 03:18:17 +000089 /// InitNumRegDefsLeft - Determine the # of regs defined by this node.
90 ///
91 void InitNumRegDefsLeft(SUnit *SU);
92
Dan Gohman343f0c02008-11-19 23:18:57 +000093 /// ComputeLatency - Compute node latency.
94 ///
95 virtual void ComputeLatency(SUnit *SU);
96
Evan Cheng15a16de2010-05-20 06:13:19 +000097 /// ComputeOperandLatency - Override dependence edge latency using
98 /// operand use/def information
99 ///
100 virtual void ComputeOperandLatency(SUnit *Def, SUnit *Use,
101 SDep& dep) const { }
102
103 virtual void ComputeOperandLatency(SDNode *Def, SDNode *Use,
104 unsigned OpIdx, SDep& dep) const;
105
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000106 virtual MachineBasicBlock *EmitSchedule();
Dan Gohman343f0c02008-11-19 23:18:57 +0000107
108 /// Schedule - Order nodes according to selected style, filling
109 /// in the Sequence member.
110 ///
111 virtual void Schedule() = 0;
112
113 virtual void dumpNode(const SUnit *SU) const;
114
115 virtual std::string getGraphNodeLabel(const SUnit *SU) const;
116
117 virtual void getCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const;
118
Andrew Trick92e94662011-02-04 03:18:17 +0000119 /// RegDefIter - In place iteration over the values defined by an
120 /// SUnit. This does not need copies of the iterator or any other STLisms.
121 /// The iterator creates itself, rather than being provided by the SchedDAG.
122 class RegDefIter {
123 const ScheduleDAGSDNodes *SchedDAG;
124 const SDNode *Node;
125 unsigned DefIdx;
126 unsigned NodeNumDefs;
127 EVT ValueType;
128 public:
129 RegDefIter(const SUnit *SU, const ScheduleDAGSDNodes *SD);
130
131 bool IsValid() const { return Node != NULL; }
132
133 EVT GetValue() const {
134 assert(IsValid() && "bad iterator");
135 return ValueType;
136 }
137
Owen Anderson77b4b132011-06-15 23:35:18 +0000138 const SDNode *GetNode() const {
139 return Node;
140 }
141
142 unsigned GetIdx() const {
Owen Anderson70211012011-06-27 18:34:12 +0000143 return DefIdx-1;
Owen Anderson77b4b132011-06-15 23:35:18 +0000144 }
145
Andrew Trick92e94662011-02-04 03:18:17 +0000146 void Advance();
147 private:
148 void InitNodeNumDefs();
149 };
150
Dan Gohman343f0c02008-11-19 23:18:57 +0000151 private:
Evan Chengc589e032010-01-22 03:36:51 +0000152 /// ClusterNeighboringLoads - Cluster loads from "near" addresses into
153 /// combined SUnits.
Evan Cheng302ef832010-06-10 02:09:31 +0000154 void ClusterNeighboringLoads(SDNode *Node);
155 /// ClusterNodes - Cluster certain nodes which should be scheduled together.
156 ///
157 void ClusterNodes();
Evan Chengc589e032010-01-22 03:36:51 +0000158
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000159 /// BuildSchedUnits, AddSchedEdges - Helper functions for BuildSchedGraph.
160 void BuildSchedUnits();
161 void AddSchedEdges();
Dan Gohman343f0c02008-11-19 23:18:57 +0000162 };
Dan Gohman343f0c02008-11-19 23:18:57 +0000163}
164
165#endif