blob: 75940ec33ddc0526a521a2e23c2a5b1e886282dc [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:
Andrew Trick47c14452012-03-07 05:21:52 +000038 MachineBasicBlock *BB;
Dan Gohman47ac0f02009-02-11 04:27:20 +000039 SelectionDAG *DAG; // DAG of the current basic block
Evan Cheng3ef1c872010-09-10 01:29:16 +000040 const InstrItineraryData *InstrItins;
Dan Gohman47ac0f02009-02-11 04:27:20 +000041
Andrew Trick47c14452012-03-07 05:21:52 +000042 /// The schedule. Null SUnit*'s represent noop instructions.
43 std::vector<SUnit*> Sequence;
44
Dan Gohman79ce2762009-01-15 19:20:50 +000045 explicit ScheduleDAGSDNodes(MachineFunction &mf);
Dan Gohman343f0c02008-11-19 23:18:57 +000046
47 virtual ~ScheduleDAGSDNodes() {}
48
Dan Gohman47ac0f02009-02-11 04:27:20 +000049 /// Run - perform scheduling.
50 ///
Andrew Trick47c14452012-03-07 05:21:52 +000051 void Run(SelectionDAG *dag, MachineBasicBlock *bb);
Dan Gohman47ac0f02009-02-11 04:27:20 +000052
Dan Gohman343f0c02008-11-19 23:18:57 +000053 /// isPassiveNode - Return true if the node is a non-scheduled leaf.
54 ///
55 static bool isPassiveNode(SDNode *Node) {
56 if (isa<ConstantSDNode>(Node)) return true;
57 if (isa<ConstantFPSDNode>(Node)) return true;
58 if (isa<RegisterSDNode>(Node)) return true;
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +000059 if (isa<RegisterMaskSDNode>(Node)) return true;
Dan Gohman343f0c02008-11-19 23:18:57 +000060 if (isa<GlobalAddressSDNode>(Node)) return true;
61 if (isa<BasicBlockSDNode>(Node)) return true;
62 if (isa<FrameIndexSDNode>(Node)) return true;
63 if (isa<ConstantPoolSDNode>(Node)) return true;
64 if (isa<JumpTableSDNode>(Node)) return true;
65 if (isa<ExternalSymbolSDNode>(Node)) return true;
Dan Gohman8c2b5252009-10-30 01:27:03 +000066 if (isa<BlockAddressSDNode>(Node)) return true;
Chris Lattnerdecc2672010-04-07 05:20:54 +000067 if (Node->getOpcode() == ISD::EntryToken ||
68 isa<MDNodeSDNode>(Node)) return true;
Dan Gohman343f0c02008-11-19 23:18:57 +000069 return false;
70 }
71
72 /// NewSUnit - Creates a new SUnit and return a ptr to it.
73 ///
Andrew Trick953be892012-03-07 23:00:49 +000074 SUnit *newSUnit(SDNode *N);
Dan Gohman343f0c02008-11-19 23:18:57 +000075
76 /// Clone - Creates a clone of the specified SUnit. It does not copy the
77 /// predecessors / successors info nor the temporary scheduling states.
78 ///
79 SUnit *Clone(SUnit *N);
Andrew Trick92e94662011-02-04 03:18:17 +000080
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +000081 /// BuildSchedGraph - Build the SUnit graph from the selection dag that we
82 /// are input. This SUnit graph is similar to the SelectionDAG, but
83 /// excludes nodes that aren't interesting to scheduling, and represents
84 /// flagged together nodes with a single SUnit.
Andrew Trick084e1792012-03-07 00:18:12 +000085 void BuildSchedGraph(AliasAnalysis *AA);
Dan Gohman343f0c02008-11-19 23:18:57 +000086
Andrew Trick54699762011-04-07 19:54:57 +000087 /// InitVRegCycleFlag - Set isVRegCycle if this node's single use is
88 /// CopyToReg and its only active data operands are CopyFromReg within a
89 /// single block loop.
90 ///
91 void InitVRegCycleFlag(SUnit *SU);
92
Andrew Trick92e94662011-02-04 03:18:17 +000093 /// InitNumRegDefsLeft - Determine the # of regs defined by this node.
94 ///
95 void InitNumRegDefsLeft(SUnit *SU);
96
Andrew Trick953be892012-03-07 23:00:49 +000097 /// computeLatency - Compute node latency.
Dan Gohman343f0c02008-11-19 23:18:57 +000098 ///
Andrew Trick953be892012-03-07 23:00:49 +000099 virtual void computeLatency(SUnit *SU);
Dan Gohman343f0c02008-11-19 23:18:57 +0000100
Andrew Trick953be892012-03-07 23:00:49 +0000101 /// computeOperandLatency - Override dependence edge latency using
Evan Cheng15a16de2010-05-20 06:13:19 +0000102 /// operand use/def information
103 ///
Andrew Trick953be892012-03-07 23:00:49 +0000104 virtual void computeOperandLatency(SUnit *Def, SUnit *Use,
Evan Cheng15a16de2010-05-20 06:13:19 +0000105 SDep& dep) const { }
106
Andrew Trick953be892012-03-07 23:00:49 +0000107 virtual void computeOperandLatency(SDNode *Def, SDNode *Use,
Evan Cheng15a16de2010-05-20 06:13:19 +0000108 unsigned OpIdx, SDep& dep) const;
109
Dan Gohman343f0c02008-11-19 23:18:57 +0000110 /// Schedule - Order nodes according to selected style, filling
111 /// in the Sequence member.
112 ///
113 virtual void Schedule() = 0;
114
Andrew Trick4c727202012-03-07 05:21:36 +0000115 /// VerifyScheduledSequence - Verify that all SUnits are scheduled and
116 /// consistent with the Sequence of scheduled instructions.
117 void VerifyScheduledSequence(bool isBottomUp);
118
Andrew Trick84b454d2012-03-07 05:21:44 +0000119 /// EmitSchedule - Insert MachineInstrs into the MachineBasicBlock
120 /// according to the order specified in Sequence.
121 ///
122 MachineBasicBlock *EmitSchedule(MachineBasicBlock::iterator &InsertPos);
123
Dan Gohman343f0c02008-11-19 23:18:57 +0000124 virtual void dumpNode(const SUnit *SU) const;
125
Andrew Trick73ba69b2012-03-07 05:21:40 +0000126 void dumpSchedule() const;
127
Dan Gohman343f0c02008-11-19 23:18:57 +0000128 virtual std::string getGraphNodeLabel(const SUnit *SU) const;
129
Andrew Trick56b94c52012-03-07 00:18:22 +0000130 virtual std::string getDAGName() const;
131
Dan Gohman343f0c02008-11-19 23:18:57 +0000132 virtual void getCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const;
133
Andrew Trick92e94662011-02-04 03:18:17 +0000134 /// RegDefIter - In place iteration over the values defined by an
135 /// SUnit. This does not need copies of the iterator or any other STLisms.
136 /// The iterator creates itself, rather than being provided by the SchedDAG.
137 class RegDefIter {
138 const ScheduleDAGSDNodes *SchedDAG;
139 const SDNode *Node;
140 unsigned DefIdx;
141 unsigned NodeNumDefs;
142 EVT ValueType;
143 public:
144 RegDefIter(const SUnit *SU, const ScheduleDAGSDNodes *SD);
145
146 bool IsValid() const { return Node != NULL; }
147
148 EVT GetValue() const {
149 assert(IsValid() && "bad iterator");
150 return ValueType;
151 }
152
Owen Anderson77b4b132011-06-15 23:35:18 +0000153 const SDNode *GetNode() const {
154 return Node;
155 }
156
157 unsigned GetIdx() const {
Owen Anderson70211012011-06-27 18:34:12 +0000158 return DefIdx-1;
Owen Anderson77b4b132011-06-15 23:35:18 +0000159 }
160
Andrew Trick92e94662011-02-04 03:18:17 +0000161 void Advance();
162 private:
163 void InitNodeNumDefs();
164 };
165
Dan Gohman343f0c02008-11-19 23:18:57 +0000166 private:
Evan Chengc589e032010-01-22 03:36:51 +0000167 /// ClusterNeighboringLoads - Cluster loads from "near" addresses into
168 /// combined SUnits.
Evan Cheng302ef832010-06-10 02:09:31 +0000169 void ClusterNeighboringLoads(SDNode *Node);
170 /// ClusterNodes - Cluster certain nodes which should be scheduled together.
171 ///
172 void ClusterNodes();
Evan Chengc589e032010-01-22 03:36:51 +0000173
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000174 /// BuildSchedUnits, AddSchedEdges - Helper functions for BuildSchedGraph.
175 void BuildSchedUnits();
176 void AddSchedEdges();
Andrew Trick84b454d2012-03-07 05:21:44 +0000177
178 void EmitPhysRegCopy(SUnit *SU, DenseMap<SUnit*, unsigned> &VRBaseMap,
179 MachineBasicBlock::iterator InsertPos);
Dan Gohman343f0c02008-11-19 23:18:57 +0000180 };
Dan Gohman343f0c02008-11-19 23:18:57 +0000181}
182
183#endif