blob: 24a1937c445ec4092f014096ce0508940926ff38 [file] [log] [blame]
Dan Gohman343f0c02008-11-19 23:18:57 +00001//===--- ScheduleDAGSDNodes.cpp - Implement the ScheduleDAGSDNodes class --===//
2//
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 implements the ScheduleDAG class, which is a base class used by
11// scheduling implementation classes.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "pre-RA-sched"
Evan Chenga8efe282010-03-14 19:56:39 +000016#include "SDNodeDbgValue.h"
Dan Gohman84fbac52009-02-06 17:22:58 +000017#include "ScheduleDAGSDNodes.h"
Dan Gohmanbcea8592009-10-10 01:32:21 +000018#include "InstrEmitter.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000019#include "llvm/CodeGen/SelectionDAG.h"
20#include "llvm/Target/TargetMachine.h"
21#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng1cc39842010-05-20 23:26:43 +000022#include "llvm/Target/TargetLowering.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000023#include "llvm/Target/TargetRegisterInfo.h"
David Goodwin71046162009-08-13 16:05:04 +000024#include "llvm/Target/TargetSubtarget.h"
Evan Chengc589e032010-01-22 03:36:51 +000025#include "llvm/ADT/DenseMap.h"
26#include "llvm/ADT/SmallPtrSet.h"
Evan Chengbfcb3052010-03-25 01:38:16 +000027#include "llvm/ADT/SmallSet.h"
Evan Chengc589e032010-01-22 03:36:51 +000028#include "llvm/ADT/SmallVector.h"
29#include "llvm/ADT/Statistic.h"
Andrew Tricke0ef5092011-03-05 08:00:22 +000030#include "llvm/Support/CommandLine.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/raw_ostream.h"
33using namespace llvm;
34
Evan Chengc589e032010-01-22 03:36:51 +000035STATISTIC(LoadsClustered, "Number of loads clustered together");
36
Andrew Tricke0ef5092011-03-05 08:00:22 +000037// This allows latency based scheduler to notice high latency instructions
38// without a target itinerary. The choise if number here has more to do with
39// balancing scheduler heursitics than with the actual machine latency.
40static cl::opt<int> HighLatencyCycles(
41 "sched-high-latency-cycles", cl::Hidden, cl::init(10),
42 cl::desc("Roughly estimate the number of cycles that 'long latency'"
43 "instructions take for targets with no itinerary"));
44
Dan Gohman79ce2762009-01-15 19:20:50 +000045ScheduleDAGSDNodes::ScheduleDAGSDNodes(MachineFunction &mf)
Evan Cheng3ef1c872010-09-10 01:29:16 +000046 : ScheduleDAG(mf),
47 InstrItins(mf.getTarget().getInstrItineraryData()) {}
Dan Gohman343f0c02008-11-19 23:18:57 +000048
Dan Gohman47ac0f02009-02-11 04:27:20 +000049/// Run - perform scheduling.
50///
51void ScheduleDAGSDNodes::Run(SelectionDAG *dag, MachineBasicBlock *bb,
52 MachineBasicBlock::iterator insertPos) {
53 DAG = dag;
54 ScheduleDAG::Run(bb, insertPos);
55}
56
Evan Cheng1cc39842010-05-20 23:26:43 +000057/// NewSUnit - Creates a new SUnit and return a ptr to it.
58///
59SUnit *ScheduleDAGSDNodes::NewSUnit(SDNode *N) {
60#ifndef NDEBUG
61 const SUnit *Addr = 0;
62 if (!SUnits.empty())
63 Addr = &SUnits[0];
64#endif
65 SUnits.push_back(SUnit(N, (unsigned)SUnits.size()));
66 assert((Addr == 0 || Addr == &SUnits[0]) &&
67 "SUnits std::vector reallocated on the fly!");
68 SUnits.back().OrigNode = &SUnits.back();
69 SUnit *SU = &SUnits.back();
70 const TargetLowering &TLI = DAG->getTargetLoweringInfo();
Evan Chengc120af42010-08-10 02:39:45 +000071 if (!N ||
72 (N->isMachineOpcode() &&
73 N->getMachineOpcode() == TargetOpcode::IMPLICIT_DEF))
Evan Cheng046fa3f2010-05-28 23:26:21 +000074 SU->SchedulingPref = Sched::None;
75 else
76 SU->SchedulingPref = TLI.getSchedulingPreference(N);
Evan Cheng1cc39842010-05-20 23:26:43 +000077 return SU;
78}
79
Dan Gohman343f0c02008-11-19 23:18:57 +000080SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) {
81 SUnit *SU = NewSUnit(Old->getNode());
82 SU->OrigNode = Old->OrigNode;
83 SU->Latency = Old->Latency;
Andrew Trick54699762011-04-07 19:54:57 +000084 SU->isVRegCycle = Old->isVRegCycle;
Evan Cheng8239daf2010-11-03 00:45:17 +000085 SU->isCall = Old->isCall;
Dan Gohman343f0c02008-11-19 23:18:57 +000086 SU->isTwoAddress = Old->isTwoAddress;
87 SU->isCommutable = Old->isCommutable;
88 SU->hasPhysRegDefs = Old->hasPhysRegDefs;
Dan Gohman39746672009-03-23 16:10:52 +000089 SU->hasPhysRegClobbers = Old->hasPhysRegClobbers;
Evan Cheng1cc39842010-05-20 23:26:43 +000090 SU->SchedulingPref = Old->SchedulingPref;
Evan Chenge57187c2009-01-16 20:57:18 +000091 Old->isCloned = true;
Dan Gohman343f0c02008-11-19 23:18:57 +000092 return SU;
93}
94
95/// CheckForPhysRegDependency - Check if the dependency between def and use of
96/// a specified operand is a physical register dependency. If so, returns the
Evan Chengc29a56d2009-01-12 03:19:55 +000097/// register and the cost of copying the register.
Dan Gohman343f0c02008-11-19 23:18:57 +000098static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op,
Andrew Trickcd5af072011-02-03 23:00:17 +000099 const TargetRegisterInfo *TRI,
Dan Gohman343f0c02008-11-19 23:18:57 +0000100 const TargetInstrInfo *TII,
Evan Chengc29a56d2009-01-12 03:19:55 +0000101 unsigned &PhysReg, int &Cost) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000102 if (Op != 2 || User->getOpcode() != ISD::CopyToReg)
103 return;
104
105 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
106 if (TargetRegisterInfo::isVirtualRegister(Reg))
107 return;
108
109 unsigned ResNo = User->getOperand(2).getResNo();
110 if (Def->isMachineOpcode()) {
111 const TargetInstrDesc &II = TII->get(Def->getMachineOpcode());
112 if (ResNo >= II.getNumDefs() &&
Evan Chengc29a56d2009-01-12 03:19:55 +0000113 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000114 PhysReg = Reg;
Evan Chengc29a56d2009-01-12 03:19:55 +0000115 const TargetRegisterClass *RC =
Rafael Espindolad31f9722010-06-29 14:02:34 +0000116 TRI->getMinimalPhysRegClass(Reg, Def->getValueType(ResNo));
Evan Chengc29a56d2009-01-12 03:19:55 +0000117 Cost = RC->getCopyCost();
118 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000119 }
120}
121
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000122static void AddGlue(SDNode *N, SDValue Glue, bool AddGlue, SelectionDAG *DAG) {
Evan Chengc589e032010-01-22 03:36:51 +0000123 SmallVector<EVT, 4> VTs;
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000124 SDNode *GlueDestNode = Glue.getNode();
Bill Wendling151d26d2010-06-23 18:16:24 +0000125
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000126 // Don't add glue from a node to itself.
127 if (GlueDestNode == N) return;
Bill Wendling10707f32010-06-24 22:00:37 +0000128
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000129 // Don't add glue to something which already has glue.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000130 if (N->getValueType(N->getNumValues() - 1) == MVT::Glue) return;
Bill Wendling10707f32010-06-24 22:00:37 +0000131
132 for (unsigned I = 0, E = N->getNumValues(); I != E; ++I)
133 VTs.push_back(N->getValueType(I));
Bill Wendling151d26d2010-06-23 18:16:24 +0000134
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000135 if (AddGlue)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000136 VTs.push_back(MVT::Glue);
Bill Wendling151d26d2010-06-23 18:16:24 +0000137
Evan Chengc589e032010-01-22 03:36:51 +0000138 SmallVector<SDValue, 4> Ops;
Bill Wendling10707f32010-06-24 22:00:37 +0000139 for (unsigned I = 0, E = N->getNumOperands(); I != E; ++I)
140 Ops.push_back(N->getOperand(I));
Bill Wendling151d26d2010-06-23 18:16:24 +0000141
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000142 if (GlueDestNode)
143 Ops.push_back(Glue);
Bill Wendling151d26d2010-06-23 18:16:24 +0000144
Evan Chengc589e032010-01-22 03:36:51 +0000145 SDVTList VTList = DAG->getVTList(&VTs[0], VTs.size());
Bill Wendling151d26d2010-06-23 18:16:24 +0000146 MachineSDNode::mmo_iterator Begin = 0, End = 0;
147 MachineSDNode *MN = dyn_cast<MachineSDNode>(N);
148
149 // Store memory references.
150 if (MN) {
151 Begin = MN->memoperands_begin();
152 End = MN->memoperands_end();
153 }
154
Evan Chengc589e032010-01-22 03:36:51 +0000155 DAG->MorphNodeTo(N, N->getOpcode(), VTList, &Ops[0], Ops.size());
Bill Wendling151d26d2010-06-23 18:16:24 +0000156
157 // Reset the memory references
158 if (MN)
159 MN->setMemRefs(Begin, End);
Evan Chengc589e032010-01-22 03:36:51 +0000160}
161
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000162/// ClusterNeighboringLoads - Force nearby loads together by "gluing" them.
Evan Chengc589e032010-01-22 03:36:51 +0000163/// This function finds loads of the same base and different offsets. If the
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000164/// offsets are not far apart (target specific), it add MVT::Glue inputs and
Evan Chengc589e032010-01-22 03:36:51 +0000165/// outputs to ensure they are scheduled together and in order. This
166/// optimization may benefit some targets by improving cache locality.
Evan Cheng302ef832010-06-10 02:09:31 +0000167void ScheduleDAGSDNodes::ClusterNeighboringLoads(SDNode *Node) {
168 SDNode *Chain = 0;
169 unsigned NumOps = Node->getNumOperands();
170 if (Node->getOperand(NumOps-1).getValueType() == MVT::Other)
171 Chain = Node->getOperand(NumOps-1).getNode();
172 if (!Chain)
173 return;
174
175 // Look for other loads of the same chain. Find loads that are loading from
176 // the same base pointer and different offsets.
Evan Chengc589e032010-01-22 03:36:51 +0000177 SmallPtrSet<SDNode*, 16> Visited;
178 SmallVector<int64_t, 4> Offsets;
179 DenseMap<long long, SDNode*> O2SMap; // Map from offset to SDNode.
Evan Cheng302ef832010-06-10 02:09:31 +0000180 bool Cluster = false;
181 SDNode *Base = Node;
Evan Cheng302ef832010-06-10 02:09:31 +0000182 for (SDNode::use_iterator I = Chain->use_begin(), E = Chain->use_end();
183 I != E; ++I) {
184 SDNode *User = *I;
185 if (User == Node || !Visited.insert(User))
186 continue;
187 int64_t Offset1, Offset2;
188 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) ||
189 Offset1 == Offset2)
190 // FIXME: Should be ok if they addresses are identical. But earlier
191 // optimizations really should have eliminated one of the loads.
192 continue;
193 if (O2SMap.insert(std::make_pair(Offset1, Base)).second)
194 Offsets.push_back(Offset1);
195 O2SMap.insert(std::make_pair(Offset2, User));
196 Offsets.push_back(Offset2);
Duncan Sandsb447c4e2010-06-25 14:48:39 +0000197 if (Offset2 < Offset1)
Evan Cheng302ef832010-06-10 02:09:31 +0000198 Base = User;
Evan Cheng302ef832010-06-10 02:09:31 +0000199 Cluster = true;
200 }
201
202 if (!Cluster)
203 return;
204
205 // Sort them in increasing order.
206 std::sort(Offsets.begin(), Offsets.end());
207
208 // Check if the loads are close enough.
209 SmallVector<SDNode*, 4> Loads;
210 unsigned NumLoads = 0;
211 int64_t BaseOff = Offsets[0];
212 SDNode *BaseLoad = O2SMap[BaseOff];
213 Loads.push_back(BaseLoad);
214 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
215 int64_t Offset = Offsets[i];
216 SDNode *Load = O2SMap[Offset];
217 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads))
218 break; // Stop right here. Ignore loads that are further away.
219 Loads.push_back(Load);
220 ++NumLoads;
221 }
222
223 if (NumLoads == 0)
224 return;
225
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000226 // Cluster loads by adding MVT::Glue outputs and inputs. This also
Evan Cheng302ef832010-06-10 02:09:31 +0000227 // ensure they are scheduled in order of increasing addresses.
228 SDNode *Lead = Loads[0];
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000229 AddGlue(Lead, SDValue(0, 0), true, DAG);
Bill Wendling151d26d2010-06-23 18:16:24 +0000230
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000231 SDValue InGlue = SDValue(Lead, Lead->getNumValues() - 1);
Bill Wendling10707f32010-06-24 22:00:37 +0000232 for (unsigned I = 1, E = Loads.size(); I != E; ++I) {
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000233 bool OutGlue = I < E - 1;
Bill Wendling10707f32010-06-24 22:00:37 +0000234 SDNode *Load = Loads[I];
235
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000236 AddGlue(Load, InGlue, OutGlue, DAG);
Bill Wendling151d26d2010-06-23 18:16:24 +0000237
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000238 if (OutGlue)
239 InGlue = SDValue(Load, Load->getNumValues() - 1);
Bill Wendling151d26d2010-06-23 18:16:24 +0000240
Evan Cheng302ef832010-06-10 02:09:31 +0000241 ++LoadsClustered;
242 }
243}
244
245/// ClusterNodes - Cluster certain nodes which should be scheduled together.
246///
247void ScheduleDAGSDNodes::ClusterNodes() {
Evan Chengc589e032010-01-22 03:36:51 +0000248 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
249 E = DAG->allnodes_end(); NI != E; ++NI) {
250 SDNode *Node = &*NI;
251 if (!Node || !Node->isMachineOpcode())
252 continue;
253
254 unsigned Opc = Node->getMachineOpcode();
255 const TargetInstrDesc &TID = TII->get(Opc);
Evan Cheng302ef832010-06-10 02:09:31 +0000256 if (TID.mayLoad())
257 // Cluster loads from "near" addresses into combined SUnits.
258 ClusterNeighboringLoads(Node);
Evan Chengc589e032010-01-22 03:36:51 +0000259 }
260}
261
Dan Gohman343f0c02008-11-19 23:18:57 +0000262void ScheduleDAGSDNodes::BuildSchedUnits() {
Dan Gohmane1dfc7d2008-12-23 17:24:50 +0000263 // During scheduling, the NodeId field of SDNode is used to map SDNodes
264 // to their associated SUnits by holding SUnits table indices. A value
265 // of -1 means the SDNode does not yet have an associated SUnit.
266 unsigned NumNodes = 0;
267 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
268 E = DAG->allnodes_end(); NI != E; ++NI) {
269 NI->setNodeId(-1);
270 ++NumNodes;
271 }
272
Dan Gohman343f0c02008-11-19 23:18:57 +0000273 // Reserve entries in the vector for each of the SUnits we are creating. This
274 // ensure that reallocation of the vector won't happen, so SUnit*'s won't get
275 // invalidated.
Dan Gohman89b64bd2008-12-17 04:30:46 +0000276 // FIXME: Multiply by 2 because we may clone nodes during scheduling.
277 // This is a temporary workaround.
Dan Gohmane1dfc7d2008-12-23 17:24:50 +0000278 SUnits.reserve(NumNodes * 2);
Andrew Trickcd5af072011-02-03 23:00:17 +0000279
Chris Lattner736a6ea2010-02-24 06:11:37 +0000280 // Add all nodes in depth first order.
281 SmallVector<SDNode*, 64> Worklist;
282 SmallPtrSet<SDNode*, 64> Visited;
283 Worklist.push_back(DAG->getRoot().getNode());
284 Visited.insert(DAG->getRoot().getNode());
Andrew Trickcd5af072011-02-03 23:00:17 +0000285
Chris Lattner736a6ea2010-02-24 06:11:37 +0000286 while (!Worklist.empty()) {
287 SDNode *NI = Worklist.pop_back_val();
Andrew Trickcd5af072011-02-03 23:00:17 +0000288
Chris Lattner736a6ea2010-02-24 06:11:37 +0000289 // Add all operands to the worklist unless they've already been added.
290 for (unsigned i = 0, e = NI->getNumOperands(); i != e; ++i)
291 if (Visited.insert(NI->getOperand(i).getNode()))
292 Worklist.push_back(NI->getOperand(i).getNode());
Andrew Trickcd5af072011-02-03 23:00:17 +0000293
Dan Gohman343f0c02008-11-19 23:18:57 +0000294 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate.
295 continue;
Andrew Trickcd5af072011-02-03 23:00:17 +0000296
Dan Gohman343f0c02008-11-19 23:18:57 +0000297 // If this node has already been processed, stop now.
298 if (NI->getNodeId() != -1) continue;
Andrew Trickcd5af072011-02-03 23:00:17 +0000299
Dan Gohman343f0c02008-11-19 23:18:57 +0000300 SUnit *NodeSUnit = NewSUnit(NI);
Andrew Trickcd5af072011-02-03 23:00:17 +0000301
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000302 // See if anything is glued to this node, if so, add them to glued
303 // nodes. Nodes can have at most one glue input and one glue output. Glue
304 // is required to be the last operand and result of a node.
Andrew Trickcd5af072011-02-03 23:00:17 +0000305
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000306 // Scan up to find glued preds.
Dan Gohman343f0c02008-11-19 23:18:57 +0000307 SDNode *N = NI;
Dan Gohmandb95fa12009-03-20 20:42:23 +0000308 while (N->getNumOperands() &&
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000309 N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Glue) {
Dan Gohmandb95fa12009-03-20 20:42:23 +0000310 N = N->getOperand(N->getNumOperands()-1).getNode();
311 assert(N->getNodeId() == -1 && "Node already inserted!");
312 N->setNodeId(NodeSUnit->NodeNum);
Evan Cheng8239daf2010-11-03 00:45:17 +0000313 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
314 NodeSUnit->isCall = true;
Dan Gohman343f0c02008-11-19 23:18:57 +0000315 }
Andrew Trickcd5af072011-02-03 23:00:17 +0000316
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000317 // Scan down to find any glued succs.
Dan Gohman343f0c02008-11-19 23:18:57 +0000318 N = NI;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000319 while (N->getValueType(N->getNumValues()-1) == MVT::Glue) {
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000320 SDValue GlueVal(N, N->getNumValues()-1);
Andrew Trickcd5af072011-02-03 23:00:17 +0000321
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000322 // There are either zero or one users of the Glue result.
323 bool HasGlueUse = false;
Andrew Trickcd5af072011-02-03 23:00:17 +0000324 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
Dan Gohman343f0c02008-11-19 23:18:57 +0000325 UI != E; ++UI)
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000326 if (GlueVal.isOperandOf(*UI)) {
327 HasGlueUse = true;
Dan Gohman343f0c02008-11-19 23:18:57 +0000328 assert(N->getNodeId() == -1 && "Node already inserted!");
329 N->setNodeId(NodeSUnit->NodeNum);
330 N = *UI;
Evan Cheng8239daf2010-11-03 00:45:17 +0000331 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
332 NodeSUnit->isCall = true;
Dan Gohman343f0c02008-11-19 23:18:57 +0000333 break;
334 }
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000335 if (!HasGlueUse) break;
Dan Gohman343f0c02008-11-19 23:18:57 +0000336 }
Andrew Trickcd5af072011-02-03 23:00:17 +0000337
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000338 // If there are glue operands involved, N is now the bottom-most node
339 // of the sequence of nodes that are glued together.
Dan Gohman343f0c02008-11-19 23:18:57 +0000340 // Update the SUnit.
341 NodeSUnit->setNode(N);
342 assert(N->getNodeId() == -1 && "Node already inserted!");
343 N->setNodeId(NodeSUnit->NodeNum);
344
Andrew Trickc558bf32011-04-12 20:14:07 +0000345 // Set isVRegCycle if the node operands are live into and value is live out
346 // of a single block loop.
347 InitVRegCycleFlag(NodeSUnit);
348
Andrew Trick92e94662011-02-04 03:18:17 +0000349 // Compute NumRegDefsLeft. This must be done before AddSchedEdges.
350 InitNumRegDefsLeft(NodeSUnit);
351
Dan Gohman787782f2008-11-21 01:44:51 +0000352 // Assign the Latency field of NodeSUnit using target-provided information.
Evan Chenge1631682010-05-19 22:42:23 +0000353 ComputeLatency(NodeSUnit);
Dan Gohman343f0c02008-11-19 23:18:57 +0000354 }
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000355}
356
357void ScheduleDAGSDNodes::AddSchedEdges() {
David Goodwin71046162009-08-13 16:05:04 +0000358 const TargetSubtarget &ST = TM.getSubtarget<TargetSubtarget>();
359
David Goodwindc4bdcd2009-08-19 16:08:58 +0000360 // Check to see if the scheduler cares about latencies.
361 bool UnitLatencies = ForceUnitLatencies();
362
Dan Gohman343f0c02008-11-19 23:18:57 +0000363 // Pass 2: add the preds, succs, etc.
364 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) {
365 SUnit *SU = &SUnits[su];
366 SDNode *MainNode = SU->getNode();
Andrew Trickcd5af072011-02-03 23:00:17 +0000367
Dan Gohman343f0c02008-11-19 23:18:57 +0000368 if (MainNode->isMachineOpcode()) {
369 unsigned Opc = MainNode->getMachineOpcode();
370 const TargetInstrDesc &TID = TII->get(Opc);
371 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
372 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
373 SU->isTwoAddress = true;
374 break;
375 }
376 }
377 if (TID.isCommutable())
378 SU->isCommutable = true;
379 }
Andrew Trickcd5af072011-02-03 23:00:17 +0000380
Dan Gohman343f0c02008-11-19 23:18:57 +0000381 // Find all predecessors and successors of the group.
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000382 for (SDNode *N = SU->getNode(); N; N = N->getGluedNode()) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000383 if (N->isMachineOpcode() &&
Dan Gohman39746672009-03-23 16:10:52 +0000384 TII->get(N->getMachineOpcode()).getImplicitDefs()) {
385 SU->hasPhysRegClobbers = true;
Dan Gohmanbcea8592009-10-10 01:32:21 +0000386 unsigned NumUsed = InstrEmitter::CountResults(N);
Dan Gohman8cccf0e2009-03-23 17:39:36 +0000387 while (NumUsed != 0 && !N->hasAnyUseOfValue(NumUsed - 1))
388 --NumUsed; // Skip over unused values at the end.
389 if (NumUsed > TII->get(N->getMachineOpcode()).getNumDefs())
Dan Gohman39746672009-03-23 16:10:52 +0000390 SU->hasPhysRegDefs = true;
391 }
Andrew Trickcd5af072011-02-03 23:00:17 +0000392
Dan Gohman343f0c02008-11-19 23:18:57 +0000393 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
394 SDNode *OpN = N->getOperand(i).getNode();
395 if (isPassiveNode(OpN)) continue; // Not scheduled.
396 SUnit *OpSU = &SUnits[OpN->getNodeId()];
397 assert(OpSU && "Node has no SUnit!");
398 if (OpSU == SU) continue; // In the same group.
399
Owen Andersone50ed302009-08-10 22:56:29 +0000400 EVT OpVT = N->getOperand(i).getValueType();
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000401 assert(OpVT != MVT::Glue && "Glued nodes should be in same sunit!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000402 bool isChain = OpVT == MVT::Other;
Dan Gohman343f0c02008-11-19 23:18:57 +0000403
404 unsigned PhysReg = 0;
Evan Chengc29a56d2009-01-12 03:19:55 +0000405 int Cost = 1;
Dan Gohman343f0c02008-11-19 23:18:57 +0000406 // Determine if this is a physical register dependency.
Evan Chengc29a56d2009-01-12 03:19:55 +0000407 CheckForPhysRegDependency(OpN, N, i, TRI, TII, PhysReg, Cost);
Dan Gohman54e4c362008-12-09 22:54:47 +0000408 assert((PhysReg == 0 || !isChain) &&
409 "Chain dependence via physreg data?");
Evan Chengc29a56d2009-01-12 03:19:55 +0000410 // FIXME: See ScheduleDAGSDNodes::EmitCopyFromReg. For now, scheduler
411 // emits a copy from the physical register to a virtual register unless
412 // it requires a cross class copy (cost < 0). That means we are only
413 // treating "expensive to copy" register dependency as physical register
414 // dependency. This may change in the future though.
415 if (Cost >= 0)
416 PhysReg = 0;
David Goodwin71046162009-08-13 16:05:04 +0000417
Evan Cheng046fa3f2010-05-28 23:26:21 +0000418 // If this is a ctrl dep, latency is 1.
Andrew Trickc558bf32011-04-12 20:14:07 +0000419 unsigned OpLatency = isChain ? 1 : OpSU->Latency;
Evan Cheng046fa3f2010-05-28 23:26:21 +0000420 const SDep &dep = SDep(OpSU, isChain ? SDep::Order : SDep::Data,
421 OpLatency, PhysReg);
David Goodwindc4bdcd2009-08-19 16:08:58 +0000422 if (!isChain && !UnitLatencies) {
Evan Cheng15a16de2010-05-20 06:13:19 +0000423 ComputeOperandLatency(OpN, N, i, const_cast<SDep &>(dep));
Dan Gohman3fb150a2010-04-17 17:42:52 +0000424 ST.adjustSchedDependency(OpSU, SU, const_cast<SDep &>(dep));
David Goodwindc4bdcd2009-08-19 16:08:58 +0000425 }
David Goodwin71046162009-08-13 16:05:04 +0000426
Andrew Trick4bbf4672011-03-09 19:12:43 +0000427 if (!SU->addPred(dep) && !dep.isCtrl() && OpSU->NumRegDefsLeft > 1) {
Andrew Trick92e94662011-02-04 03:18:17 +0000428 // Multiple register uses are combined in the same SUnit. For example,
429 // we could have a set of glued nodes with all their defs consumed by
430 // another set of glued nodes. Register pressure tracking sees this as
431 // a single use, so to keep pressure balanced we reduce the defs.
Andrew Trick4bbf4672011-03-09 19:12:43 +0000432 //
433 // We can't tell (without more book-keeping) if this results from
434 // glued nodes or duplicate operands. As long as we don't reduce
435 // NumRegDefsLeft to zero, we handle the common cases well.
Andrew Trick92e94662011-02-04 03:18:17 +0000436 --OpSU->NumRegDefsLeft;
437 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000438 }
439 }
440 }
441}
442
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000443/// BuildSchedGraph - Build the SUnit graph from the selection dag that we
444/// are input. This SUnit graph is similar to the SelectionDAG, but
445/// excludes nodes that aren't interesting to scheduling, and represents
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000446/// glued together nodes with a single SUnit.
Dan Gohman98976e42009-10-09 23:33:48 +0000447void ScheduleDAGSDNodes::BuildSchedGraph(AliasAnalysis *AA) {
Evan Cheng302ef832010-06-10 02:09:31 +0000448 // Cluster certain nodes which should be scheduled together.
449 ClusterNodes();
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000450 // Populate the SUnits array.
451 BuildSchedUnits();
452 // Compute all the scheduling dependencies between nodes.
453 AddSchedEdges();
454}
455
Andrew Trick92e94662011-02-04 03:18:17 +0000456// Initialize NumNodeDefs for the current Node's opcode.
457void ScheduleDAGSDNodes::RegDefIter::InitNodeNumDefs() {
Eric Christopher29449442011-03-08 19:35:47 +0000458 // Check for phys reg copy.
459 if (!Node)
460 return;
461
Andrew Trick92e94662011-02-04 03:18:17 +0000462 if (!Node->isMachineOpcode()) {
463 if (Node->getOpcode() == ISD::CopyFromReg)
464 NodeNumDefs = 1;
465 else
466 NodeNumDefs = 0;
467 return;
468 }
469 unsigned POpc = Node->getMachineOpcode();
470 if (POpc == TargetOpcode::IMPLICIT_DEF) {
471 // No register need be allocated for this.
472 NodeNumDefs = 0;
473 return;
474 }
475 unsigned NRegDefs = SchedDAG->TII->get(Node->getMachineOpcode()).getNumDefs();
476 // Some instructions define regs that are not represented in the selection DAG
477 // (e.g. unused flags). See tMOVi8. Make sure we don't access past NumValues.
478 NodeNumDefs = std::min(Node->getNumValues(), NRegDefs);
479 DefIdx = 0;
480}
481
482// Construct a RegDefIter for this SUnit and find the first valid value.
483ScheduleDAGSDNodes::RegDefIter::RegDefIter(const SUnit *SU,
484 const ScheduleDAGSDNodes *SD)
485 : SchedDAG(SD), Node(SU->getNode()), DefIdx(0), NodeNumDefs(0) {
486 InitNodeNumDefs();
487 Advance();
488}
489
490// Advance to the next valid value defined by the SUnit.
491void ScheduleDAGSDNodes::RegDefIter::Advance() {
492 for (;Node;) { // Visit all glued nodes.
493 for (;DefIdx < NodeNumDefs; ++DefIdx) {
494 if (!Node->hasAnyUseOfValue(DefIdx))
495 continue;
496 if (Node->isMachineOpcode() &&
497 Node->getMachineOpcode() == TargetOpcode::EXTRACT_SUBREG) {
498 // Propagate the incoming (full-register) type. I doubt it's needed.
499 ValueType = Node->getOperand(0).getValueType();
500 }
501 else {
502 ValueType = Node->getValueType(DefIdx);
503 }
504 ++DefIdx;
505 return; // Found a normal regdef.
506 }
507 Node = Node->getGluedNode();
508 if (Node == NULL) {
509 return; // No values left to visit.
510 }
511 InitNodeNumDefs();
512 }
513}
514
Andrew Trickc558bf32011-04-12 20:14:07 +0000515// Set isVRegCycle if this node's single use is CopyToReg and its only active
516// data operands are CopyFromReg.
517//
518// This is only relevant for single-block loops, in which case the VRegCycle
519// node is likely an induction variable in which the operand and target virtual
520// registers should be coalesced (e.g. pre/post increment values). Setting the
521// isVRegCycle flag helps the scheduler prioritize other uses of the same
522// CopyFromReg so that this node becomes the virtual register "kill". This
523// avoids interference between the values live in and out of the block and
524// eliminates a copy inside the loop.
525void ScheduleDAGSDNodes::InitVRegCycleFlag(SUnit *SU) {
526 if (!BB->isSuccessor(BB))
527 return;
528
529 SDNode *N = SU->getNode();
530 if (N->getGluedNode())
531 return;
532
533 if (!N->hasOneUse() || N->use_begin()->getOpcode() != ISD::CopyToReg)
534 return;
535
536 bool FoundLiveIn = false;
537 for (SDNode::op_iterator OI = N->op_begin(), E = N->op_end(); OI != E; ++OI) {
538 EVT OpVT = OI->getValueType();
539 assert(OpVT != MVT::Glue && "Glued nodes should be in same sunit!");
540
541 if (OpVT == MVT::Other)
542 continue; // ignore chain operands
543
544 if (isPassiveNode(OI->getNode()))
545 continue; // ignore constants and such
546
547 if (OI->getNode()->getOpcode() != ISD::CopyFromReg)
548 return;
549
550 FoundLiveIn = true;
551 }
552 if (FoundLiveIn)
553 SU->isVRegCycle = true;
554}
555
Andrew Trick92e94662011-02-04 03:18:17 +0000556void ScheduleDAGSDNodes::InitNumRegDefsLeft(SUnit *SU) {
557 assert(SU->NumRegDefsLeft == 0 && "expect a new node");
558 for (RegDefIter I(SU, this); I.IsValid(); I.Advance()) {
559 assert(SU->NumRegDefsLeft < USHRT_MAX && "overflow is ok but unexpected");
560 ++SU->NumRegDefsLeft;
561 }
562}
563
Dan Gohman343f0c02008-11-19 23:18:57 +0000564void ScheduleDAGSDNodes::ComputeLatency(SUnit *SU) {
Evan Chenge1631682010-05-19 22:42:23 +0000565 // Check to see if the scheduler cares about latencies.
566 if (ForceUnitLatencies()) {
567 SU->Latency = 1;
568 return;
569 }
570
Evan Cheng3ef1c872010-09-10 01:29:16 +0000571 if (!InstrItins || InstrItins->isEmpty()) {
Andrew Trick5e84e3c2011-03-05 09:18:16 +0000572 SDNode *N = SU->getNode();
573 if (N && N->isMachineOpcode() &&
574 TII->isHighLatencyDef(N->getMachineOpcode()))
Andrew Tricke0ef5092011-03-05 08:00:22 +0000575 SU->Latency = HighLatencyCycles;
576 else
577 SU->Latency = 1;
Evan Cheng15a16de2010-05-20 06:13:19 +0000578 return;
579 }
Andrew Trickcd5af072011-02-03 23:00:17 +0000580
Dan Gohman343f0c02008-11-19 23:18:57 +0000581 // Compute the latency for the node. We use the sum of the latencies for
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000582 // all nodes glued together into this SUnit.
Dan Gohman343f0c02008-11-19 23:18:57 +0000583 SU->Latency = 0;
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000584 for (SDNode *N = SU->getNode(); N; N = N->getGluedNode())
Evan Cheng8239daf2010-11-03 00:45:17 +0000585 if (N->isMachineOpcode())
586 SU->Latency += TII->getInstrLatency(InstrItins, N);
Dan Gohman343f0c02008-11-19 23:18:57 +0000587}
588
Evan Cheng15a16de2010-05-20 06:13:19 +0000589void ScheduleDAGSDNodes::ComputeOperandLatency(SDNode *Def, SDNode *Use,
590 unsigned OpIdx, SDep& dep) const{
591 // Check to see if the scheduler cares about latencies.
592 if (ForceUnitLatencies())
593 return;
594
Evan Cheng15a16de2010-05-20 06:13:19 +0000595 if (dep.getKind() != SDep::Data)
596 return;
597
598 unsigned DefIdx = Use->getOperand(OpIdx).getResNo();
Evan Cheng7e2fe912010-10-28 06:47:08 +0000599 if (Use->isMachineOpcode())
600 // Adjust the use operand index by num of defs.
601 OpIdx += TII->get(Use->getMachineOpcode()).getNumDefs();
Evan Chenga0792de2010-10-06 06:27:31 +0000602 int Latency = TII->getOperandLatency(InstrItins, Def, DefIdx, Use, OpIdx);
Evan Cheng08975152010-10-29 18:09:28 +0000603 if (Latency > 1 && Use->getOpcode() == ISD::CopyToReg &&
604 !BB->succ_empty()) {
605 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
606 if (TargetRegisterInfo::isVirtualRegister(Reg))
607 // This copy is a liveout value. It is likely coalesced, so reduce the
608 // latency so not to penalize the def.
609 // FIXME: need target specific adjustment here?
610 Latency = (Latency > 1) ? Latency - 1 : 1;
611 }
Evan Cheng3881cb72010-09-29 22:42:35 +0000612 if (Latency >= 0)
613 dep.setLatency(Latency);
Evan Cheng15a16de2010-05-20 06:13:19 +0000614}
615
Dan Gohman343f0c02008-11-19 23:18:57 +0000616void ScheduleDAGSDNodes::dumpNode(const SUnit *SU) const {
Evan Chengc29a56d2009-01-12 03:19:55 +0000617 if (!SU->getNode()) {
David Greene84fa8222010-01-05 01:25:11 +0000618 dbgs() << "PHYS REG COPY\n";
Evan Chengc29a56d2009-01-12 03:19:55 +0000619 return;
620 }
621
622 SU->getNode()->dump(DAG);
David Greene84fa8222010-01-05 01:25:11 +0000623 dbgs() << "\n";
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000624 SmallVector<SDNode *, 4> GluedNodes;
625 for (SDNode *N = SU->getNode()->getGluedNode(); N; N = N->getGluedNode())
626 GluedNodes.push_back(N);
627 while (!GluedNodes.empty()) {
David Greene84fa8222010-01-05 01:25:11 +0000628 dbgs() << " ";
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000629 GluedNodes.back()->dump(DAG);
David Greene84fa8222010-01-05 01:25:11 +0000630 dbgs() << "\n";
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000631 GluedNodes.pop_back();
Dan Gohman343f0c02008-11-19 23:18:57 +0000632 }
633}
Dan Gohmanbcea8592009-10-10 01:32:21 +0000634
Evan Chengbfcb3052010-03-25 01:38:16 +0000635namespace {
636 struct OrderSorter {
637 bool operator()(const std::pair<unsigned, MachineInstr*> &A,
638 const std::pair<unsigned, MachineInstr*> &B) {
639 return A.first < B.first;
640 }
641 };
642}
643
Devang Patel55d20e82011-01-26 18:20:04 +0000644/// ProcessSDDbgValues - Process SDDbgValues assoicated with this node.
Andrew Trickcd5af072011-02-03 23:00:17 +0000645static void ProcessSDDbgValues(SDNode *N, SelectionDAG *DAG,
Devang Patel55d20e82011-01-26 18:20:04 +0000646 InstrEmitter &Emitter,
647 SmallVector<std::pair<unsigned, MachineInstr*>, 32> &Orders,
648 DenseMap<SDValue, unsigned> &VRBaseMap,
649 unsigned Order) {
650 if (!N->getHasDebugValue())
651 return;
652
653 // Opportunistically insert immediate dbg_value uses, i.e. those with source
654 // order number right after the N.
655 MachineBasicBlock *BB = Emitter.getBlock();
656 MachineBasicBlock::iterator InsertPos = Emitter.getInsertPos();
657 SmallVector<SDDbgValue*,2> &DVs = DAG->GetDbgValues(N);
658 for (unsigned i = 0, e = DVs.size(); i != e; ++i) {
659 if (DVs[i]->isInvalidated())
660 continue;
661 unsigned DVOrder = DVs[i]->getOrder();
662 if (!Order || DVOrder == ++Order) {
663 MachineInstr *DbgMI = Emitter.EmitDbgValue(DVs[i], VRBaseMap);
664 if (DbgMI) {
665 Orders.push_back(std::make_pair(DVOrder, DbgMI));
666 BB->insert(InsertPos, DbgMI);
667 }
668 DVs[i]->setIsInvalidated();
669 }
670 }
671}
672
Evan Chengbfcb3052010-03-25 01:38:16 +0000673// ProcessSourceNode - Process nodes with source order numbers. These are added
Jim Grosbachd27946d2010-06-30 21:27:56 +0000674// to a vector which EmitSchedule uses to determine how to insert dbg_value
Evan Chengbfcb3052010-03-25 01:38:16 +0000675// instructions in the right order.
676static void ProcessSourceNode(SDNode *N, SelectionDAG *DAG,
677 InstrEmitter &Emitter,
Evan Chengbfcb3052010-03-25 01:38:16 +0000678 DenseMap<SDValue, unsigned> &VRBaseMap,
679 SmallVector<std::pair<unsigned, MachineInstr*>, 32> &Orders,
680 SmallSet<unsigned, 8> &Seen) {
681 unsigned Order = DAG->GetOrdering(N);
Devang Patel39078a82011-01-27 00:13:27 +0000682 if (!Order || !Seen.insert(Order)) {
683 // Process any valid SDDbgValues even if node does not have any order
684 // assigned.
685 ProcessSDDbgValues(N, DAG, Emitter, Orders, VRBaseMap, 0);
Evan Chengbfcb3052010-03-25 01:38:16 +0000686 return;
Devang Patel39078a82011-01-27 00:13:27 +0000687 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000688
689 MachineBasicBlock *BB = Emitter.getBlock();
Dan Gohman84023e02010-07-10 09:00:22 +0000690 if (Emitter.getInsertPos() == BB->begin() || BB->back().isPHI()) {
Evan Chengbfcb3052010-03-25 01:38:16 +0000691 // Did not insert any instruction.
692 Orders.push_back(std::make_pair(Order, (MachineInstr*)0));
693 return;
694 }
695
Dan Gohman84023e02010-07-10 09:00:22 +0000696 Orders.push_back(std::make_pair(Order, prior(Emitter.getInsertPos())));
Devang Patel55d20e82011-01-26 18:20:04 +0000697 ProcessSDDbgValues(N, DAG, Emitter, Orders, VRBaseMap, Order);
Evan Chengbfcb3052010-03-25 01:38:16 +0000698}
699
700
Dan Gohmanbcea8592009-10-10 01:32:21 +0000701/// EmitSchedule - Emit the machine code in scheduled order.
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000702MachineBasicBlock *ScheduleDAGSDNodes::EmitSchedule() {
Dan Gohmanbcea8592009-10-10 01:32:21 +0000703 InstrEmitter Emitter(BB, InsertPos);
704 DenseMap<SDValue, unsigned> VRBaseMap;
705 DenseMap<SUnit*, unsigned> CopyVRBaseMap;
Evan Chengbfcb3052010-03-25 01:38:16 +0000706 SmallVector<std::pair<unsigned, MachineInstr*>, 32> Orders;
707 SmallSet<unsigned, 8> Seen;
708 bool HasDbg = DAG->hasDebugValues();
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000709
Dale Johannesenfdb42fa2010-04-26 20:06:49 +0000710 // If this is the first BB, emit byval parameter dbg_value's.
711 if (HasDbg && BB->getParent()->begin() == MachineFunction::iterator(BB)) {
712 SDDbgInfo::DbgIterator PDI = DAG->ByvalParmDbgBegin();
713 SDDbgInfo::DbgIterator PDE = DAG->ByvalParmDbgEnd();
714 for (; PDI != PDE; ++PDI) {
Dan Gohman891ff8f2010-04-30 19:35:33 +0000715 MachineInstr *DbgMI= Emitter.EmitDbgValue(*PDI, VRBaseMap);
Dale Johannesenfdb42fa2010-04-26 20:06:49 +0000716 if (DbgMI)
Dan Gohman84023e02010-07-10 09:00:22 +0000717 BB->insert(InsertPos, DbgMI);
Dale Johannesenfdb42fa2010-04-26 20:06:49 +0000718 }
719 }
720
Dan Gohmanbcea8592009-10-10 01:32:21 +0000721 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
722 SUnit *SU = Sequence[i];
723 if (!SU) {
724 // Null SUnit* is a noop.
725 EmitNoop();
726 continue;
727 }
728
729 // For pre-regalloc scheduling, create instructions corresponding to the
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000730 // SDNode and any glued SDNodes and append them to the block.
Dan Gohmanbcea8592009-10-10 01:32:21 +0000731 if (!SU->getNode()) {
732 // Emit a copy.
733 EmitPhysRegCopy(SU, CopyVRBaseMap);
734 continue;
735 }
736
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000737 SmallVector<SDNode *, 4> GluedNodes;
738 for (SDNode *N = SU->getNode()->getGluedNode(); N;
739 N = N->getGluedNode())
740 GluedNodes.push_back(N);
741 while (!GluedNodes.empty()) {
742 SDNode *N = GluedNodes.back();
743 Emitter.EmitNode(GluedNodes.back(), SU->OrigNode != SU, SU->isCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000744 VRBaseMap);
Dale Johannesenfdb42fa2010-04-26 20:06:49 +0000745 // Remember the source order of the inserted instruction.
Evan Chengbfcb3052010-03-25 01:38:16 +0000746 if (HasDbg)
Dan Gohman891ff8f2010-04-30 19:35:33 +0000747 ProcessSourceNode(N, DAG, Emitter, VRBaseMap, Orders, Seen);
Chris Lattner29d8f0c2010-12-23 17:24:32 +0000748 GluedNodes.pop_back();
Dan Gohmanbcea8592009-10-10 01:32:21 +0000749 }
750 Emitter.EmitNode(SU->getNode(), SU->OrigNode != SU, SU->isCloned,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000751 VRBaseMap);
Dale Johannesenfdb42fa2010-04-26 20:06:49 +0000752 // Remember the source order of the inserted instruction.
Evan Chengbfcb3052010-03-25 01:38:16 +0000753 if (HasDbg)
Dan Gohman891ff8f2010-04-30 19:35:33 +0000754 ProcessSourceNode(SU->getNode(), DAG, Emitter, VRBaseMap, Orders,
Evan Chengbfcb3052010-03-25 01:38:16 +0000755 Seen);
756 }
757
Dale Johannesenfdb42fa2010-04-26 20:06:49 +0000758 // Insert all the dbg_values which have not already been inserted in source
Evan Chengbfcb3052010-03-25 01:38:16 +0000759 // order sequence.
760 if (HasDbg) {
Dan Gohman84023e02010-07-10 09:00:22 +0000761 MachineBasicBlock::iterator BBBegin = BB->getFirstNonPHI();
Evan Chengbfcb3052010-03-25 01:38:16 +0000762
763 // Sort the source order instructions and use the order to insert debug
764 // values.
765 std::sort(Orders.begin(), Orders.end(), OrderSorter());
766
767 SDDbgInfo::DbgIterator DI = DAG->DbgBegin();
768 SDDbgInfo::DbgIterator DE = DAG->DbgEnd();
769 // Now emit the rest according to source order.
770 unsigned LastOrder = 0;
Evan Chengbfcb3052010-03-25 01:38:16 +0000771 for (unsigned i = 0, e = Orders.size(); i != e && DI != DE; ++i) {
772 unsigned Order = Orders[i].first;
773 MachineInstr *MI = Orders[i].second;
774 // Insert all SDDbgValue's whose order(s) are before "Order".
775 if (!MI)
776 continue;
Evan Chengbfcb3052010-03-25 01:38:16 +0000777 for (; DI != DE &&
778 (*DI)->getOrder() >= LastOrder && (*DI)->getOrder() < Order; ++DI) {
779 if ((*DI)->isInvalidated())
780 continue;
Dan Gohman891ff8f2010-04-30 19:35:33 +0000781 MachineInstr *DbgMI = Emitter.EmitDbgValue(*DI, VRBaseMap);
Evan Cheng962021b2010-04-26 07:38:55 +0000782 if (DbgMI) {
783 if (!LastOrder)
784 // Insert to start of the BB (after PHIs).
785 BB->insert(BBBegin, DbgMI);
786 else {
Dan Gohmana8dab362010-07-10 22:42:31 +0000787 // Insert at the instruction, which may be in a different
788 // block, if the block was split by a custom inserter.
Evan Cheng962021b2010-04-26 07:38:55 +0000789 MachineBasicBlock::iterator Pos = MI;
Dan Gohmana8dab362010-07-10 22:42:31 +0000790 MI->getParent()->insert(llvm::next(Pos), DbgMI);
Evan Cheng962021b2010-04-26 07:38:55 +0000791 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000792 }
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000793 }
Evan Chengbfcb3052010-03-25 01:38:16 +0000794 LastOrder = Order;
Evan Chengbfcb3052010-03-25 01:38:16 +0000795 }
796 // Add trailing DbgValue's before the terminator. FIXME: May want to add
797 // some of them before one or more conditional branches?
798 while (DI != DE) {
799 MachineBasicBlock *InsertBB = Emitter.getBlock();
800 MachineBasicBlock::iterator Pos= Emitter.getBlock()->getFirstTerminator();
801 if (!(*DI)->isInvalidated()) {
Dan Gohman891ff8f2010-04-30 19:35:33 +0000802 MachineInstr *DbgMI= Emitter.EmitDbgValue(*DI, VRBaseMap);
Evan Cheng962021b2010-04-26 07:38:55 +0000803 if (DbgMI)
804 InsertBB->insert(Pos, DbgMI);
Evan Chengbfcb3052010-03-25 01:38:16 +0000805 }
806 ++DI;
807 }
Dan Gohmanbcea8592009-10-10 01:32:21 +0000808 }
809
810 BB = Emitter.getBlock();
811 InsertPos = Emitter.getInsertPos();
812 return BB;
813}