2009-02-06 18:12:10 +01:00
|
|
|
//==- ScheduleDAGInstrs.h - MachineInstr Scheduling --------------*- C++ -*-==//
|
2008-11-20 00:18:57 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ScheduleDAGInstrs class, which implements
|
|
|
|
// scheduling for a MachineInstr-based dependency graph.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-06 18:12:10 +01:00
|
|
|
#ifndef SCHEDULEDAGINSTRS_H
|
|
|
|
#define SCHEDULEDAGINSTRS_H
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
#include "llvm/CodeGen/MachineDominators.h"
|
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2008-11-20 00:18:57 +01:00
|
|
|
#include "llvm/CodeGen/ScheduleDAG.h"
|
2009-02-11 00:27:53 +01:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2009-01-15 20:20:50 +01:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2009-09-18 23:02:19 +02:00
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2009-02-11 00:27:53 +01:00
|
|
|
#include <map>
|
2008-11-20 00:18:57 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
2008-12-16 04:25:46 +01:00
|
|
|
class MachineLoopInfo;
|
|
|
|
class MachineDominatorTree;
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// LoopDependencies - This class analyzes loop-oriented register
|
|
|
|
/// dependencies, which are used to guide scheduling decisions.
|
|
|
|
/// For example, loop induction variable increments should be
|
|
|
|
/// scheduled as soon as possible after the variable's last use.
|
|
|
|
///
|
2010-05-11 22:16:09 +02:00
|
|
|
class LLVM_LIBRARY_VISIBILITY LoopDependencies {
|
2009-02-11 00:27:53 +01:00
|
|
|
const MachineLoopInfo &MLI;
|
|
|
|
const MachineDominatorTree &MDT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef std::map<unsigned, std::pair<const MachineOperand *, unsigned> >
|
|
|
|
LoopDeps;
|
|
|
|
LoopDeps Deps;
|
|
|
|
|
|
|
|
LoopDependencies(const MachineLoopInfo &mli,
|
|
|
|
const MachineDominatorTree &mdt) :
|
|
|
|
MLI(mli), MDT(mdt) {}
|
|
|
|
|
|
|
|
/// VisitLoop - Clear out any previous state and analyze the given loop.
|
|
|
|
///
|
|
|
|
void VisitLoop(const MachineLoop *Loop) {
|
|
|
|
Deps.clear();
|
|
|
|
MachineBasicBlock *Header = Loop->getHeader();
|
|
|
|
SmallSet<unsigned, 8> LoopLiveIns;
|
|
|
|
for (MachineBasicBlock::livein_iterator LI = Header->livein_begin(),
|
|
|
|
LE = Header->livein_end(); LI != LE; ++LI)
|
|
|
|
LoopLiveIns.insert(*LI);
|
|
|
|
|
|
|
|
const MachineDomTreeNode *Node = MDT.getNode(Header);
|
|
|
|
const MachineBasicBlock *MBB = Node->getBlock();
|
|
|
|
assert(Loop->contains(MBB) &&
|
|
|
|
"Loop does not contain header!");
|
|
|
|
VisitRegion(Node, MBB, Loop, LoopLiveIns);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void VisitRegion(const MachineDomTreeNode *Node,
|
|
|
|
const MachineBasicBlock *MBB,
|
|
|
|
const MachineLoop *Loop,
|
|
|
|
const SmallSet<unsigned, 8> &LoopLiveIns) {
|
|
|
|
unsigned Count = 0;
|
|
|
|
for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
|
2010-06-29 06:48:13 +02:00
|
|
|
I != E; ++I) {
|
2009-02-11 00:27:53 +01:00
|
|
|
const MachineInstr *MI = I;
|
2010-06-29 06:48:13 +02:00
|
|
|
if (MI->isDebugValue())
|
|
|
|
continue;
|
2009-02-11 00:27:53 +01:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
const MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (!MO.isReg() || !MO.isUse())
|
|
|
|
continue;
|
|
|
|
unsigned MOReg = MO.getReg();
|
|
|
|
if (LoopLiveIns.count(MOReg))
|
|
|
|
Deps.insert(std::make_pair(MOReg, std::make_pair(&MO, Count)));
|
|
|
|
}
|
2010-06-29 06:48:13 +02:00
|
|
|
++Count; // Not every iteration due to dbg_value above.
|
2009-02-11 00:27:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
|
|
|
|
for (std::vector<MachineDomTreeNode*>::const_iterator I =
|
|
|
|
Children.begin(), E = Children.end(); I != E; ++I) {
|
|
|
|
const MachineDomTreeNode *ChildNode = *I;
|
|
|
|
MachineBasicBlock *ChildBlock = ChildNode->getBlock();
|
|
|
|
if (Loop->contains(ChildBlock))
|
|
|
|
VisitRegion(ChildNode, ChildBlock, Loop, LoopLiveIns);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// ScheduleDAGInstrs - A ScheduleDAG subclass for scheduling lists of
|
|
|
|
/// MachineInstrs.
|
2010-05-11 22:16:09 +02:00
|
|
|
class LLVM_LIBRARY_VISIBILITY ScheduleDAGInstrs : public ScheduleDAG {
|
2008-12-16 04:25:46 +01:00
|
|
|
const MachineLoopInfo &MLI;
|
|
|
|
const MachineDominatorTree &MDT;
|
2009-10-18 21:58:47 +02:00
|
|
|
const MachineFrameInfo *MFI;
|
2010-09-10 03:29:16 +02:00
|
|
|
const InstrItineraryData *InstrItins;
|
2008-12-16 04:25:46 +01:00
|
|
|
|
2009-01-15 20:20:50 +01:00
|
|
|
/// Defs, Uses - Remember where defs and uses of each physical register
|
|
|
|
/// are as we iterate upward through the instructions. This is allocated
|
|
|
|
/// here instead of inside BuildSchedGraph to avoid the need for it to be
|
|
|
|
/// initialized and destructed for each block.
|
2010-07-24 08:01:53 +02:00
|
|
|
std::vector<std::vector<SUnit *> > Defs;
|
|
|
|
std::vector<std::vector<SUnit *> > Uses;
|
2010-03-10 23:13:47 +01:00
|
|
|
|
|
|
|
/// DbgValueVec - Remember DBG_VALUEs that refer to a particular
|
|
|
|
/// register.
|
|
|
|
std::vector<MachineInstr *>DbgValueVec;
|
2009-01-15 20:20:50 +01:00
|
|
|
|
|
|
|
/// PendingLoads - Remember where unknown loads are after the most recent
|
|
|
|
/// unknown store, as we iterate. As with Defs and Uses, this is here
|
|
|
|
/// to minimize construction/destruction.
|
|
|
|
std::vector<SUnit *> PendingLoads;
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// LoopRegs - Track which registers are used for loop-carried dependencies.
|
|
|
|
///
|
|
|
|
LoopDependencies LoopRegs;
|
|
|
|
|
|
|
|
/// LoopLiveInRegs - Track which regs are live into a loop, to help guide
|
|
|
|
/// back-edge-aware scheduling.
|
|
|
|
///
|
|
|
|
SmallSet<unsigned, 8> LoopLiveInRegs;
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
public:
|
2009-02-11 05:27:20 +01:00
|
|
|
MachineBasicBlock::iterator Begin; // The beginning of the range to
|
|
|
|
// be scheduled. The range extends
|
|
|
|
// to InsertPos.
|
|
|
|
unsigned InsertPosIndex; // The index in BB of InsertPos.
|
|
|
|
|
2009-01-15 20:20:50 +01:00
|
|
|
explicit ScheduleDAGInstrs(MachineFunction &mf,
|
|
|
|
const MachineLoopInfo &mli,
|
|
|
|
const MachineDominatorTree &mdt);
|
2008-11-20 00:18:57 +01:00
|
|
|
|
|
|
|
virtual ~ScheduleDAGInstrs() {}
|
|
|
|
|
|
|
|
/// NewSUnit - Creates a new SUnit and return a ptr to it.
|
|
|
|
///
|
|
|
|
SUnit *NewSUnit(MachineInstr *MI) {
|
2008-12-22 22:08:08 +01:00
|
|
|
#ifndef NDEBUG
|
2009-01-20 10:05:19 +01:00
|
|
|
const SUnit *Addr = SUnits.empty() ? 0 : &SUnits[0];
|
2008-12-22 22:08:08 +01:00
|
|
|
#endif
|
2008-11-20 00:18:57 +01:00
|
|
|
SUnits.push_back(SUnit(MI, (unsigned)SUnits.size()));
|
2009-01-20 10:05:19 +01:00
|
|
|
assert((Addr == 0 || Addr == &SUnits[0]) &&
|
|
|
|
"SUnits std::vector reallocated on the fly!");
|
2008-11-20 00:18:57 +01:00
|
|
|
SUnits.back().OrigNode = &SUnits.back();
|
|
|
|
return &SUnits.back();
|
|
|
|
}
|
|
|
|
|
2009-02-11 05:27:20 +01:00
|
|
|
/// Run - perform scheduling.
|
|
|
|
///
|
|
|
|
void Run(MachineBasicBlock *bb,
|
|
|
|
MachineBasicBlock::iterator begin,
|
|
|
|
MachineBasicBlock::iterator end,
|
|
|
|
unsigned endindex);
|
|
|
|
|
2008-12-23 19:36:58 +01:00
|
|
|
/// BuildSchedGraph - Build SUnits from the MachineBasicBlock that we are
|
2008-11-20 00:18:57 +01:00
|
|
|
/// input.
|
2009-10-10 01:27:56 +02:00
|
|
|
virtual void BuildSchedGraph(AliasAnalysis *AA);
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2010-10-23 04:10:46 +02:00
|
|
|
/// AddSchedBarrierDeps - Add dependencies from instructions in the current
|
|
|
|
/// list of instructions being scheduled to scheduling barrier. We want to
|
|
|
|
/// make sure instructions which define registers that are either used by
|
|
|
|
/// the terminator or are live-out are properly scheduled. This is
|
|
|
|
/// especially important when the definition latency of the return value(s)
|
|
|
|
/// are too high to be hidden by the branch or when the liveout registers
|
|
|
|
/// used by instructions in the fallthrough block.
|
|
|
|
void AddSchedBarrierDeps();
|
|
|
|
|
2008-11-21 01:12:10 +01:00
|
|
|
/// ComputeLatency - Compute node latency.
|
|
|
|
///
|
|
|
|
virtual void ComputeLatency(SUnit *SU);
|
|
|
|
|
2009-08-19 18:08:58 +02:00
|
|
|
/// ComputeOperandLatency - Override dependence edge latency using
|
|
|
|
/// operand use/def information
|
|
|
|
///
|
|
|
|
virtual void ComputeOperandLatency(SUnit *Def, SUnit *Use,
|
|
|
|
SDep& dep) const;
|
|
|
|
|
2010-05-01 02:01:06 +02:00
|
|
|
virtual MachineBasicBlock *EmitSchedule();
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// StartBlock - Prepare to perform scheduling in the given block.
|
|
|
|
///
|
|
|
|
virtual void StartBlock(MachineBasicBlock *BB);
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
/// Schedule - Order nodes according to selected style, filling
|
|
|
|
/// in the Sequence member.
|
|
|
|
///
|
|
|
|
virtual void Schedule() = 0;
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// FinishBlock - Clean up after scheduling in the given block.
|
|
|
|
///
|
|
|
|
virtual void FinishBlock();
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
virtual void dumpNode(const SUnit *SU) const;
|
|
|
|
|
|
|
|
virtual std::string getGraphNodeLabel(const SUnit *SU) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|