2007-07-13 19:31:29 +02:00
|
|
|
//===----- SchedulePostRAList.cpp - list scheduler ------------------------===//
|
2007-07-13 19:13:54 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-07-13 19:13:54 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This implements a top-down list scheduler, using standard algorithms.
|
|
|
|
// The basic approach uses a priority queue of available nodes to schedule.
|
|
|
|
// One at a time, nodes are taken from the priority queue (thus in priority
|
|
|
|
// order), checked for legality to schedule, and emitted if legal.
|
|
|
|
//
|
|
|
|
// Nodes may not be legal to schedule either due to structural hazards (e.g.
|
|
|
|
// pipeline or resource constraints) or because an input to the instruction has
|
|
|
|
// not completed execution.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "post-RA-sched"
|
2009-10-28 19:29:54 +01:00
|
|
|
#include "AntiDepBreaker.h"
|
2009-10-26 20:32:42 +01:00
|
|
|
#include "AggressiveAntiDepBreaker.h"
|
2009-10-26 17:59:04 +01:00
|
|
|
#include "CriticalAntiDepBreaker.h"
|
2009-08-10 17:55:25 +02:00
|
|
|
#include "ExactHazardRecognizer.h"
|
|
|
|
#include "SimpleHazardRecognizer.h"
|
2009-02-06 18:12:10 +01:00
|
|
|
#include "ScheduleDAGInstrs.h"
|
2007-07-13 19:13:54 +02:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2008-11-20 00:18:57 +01:00
|
|
|
#include "llvm/CodeGen/LatencyPriorityQueue.h"
|
|
|
|
#include "llvm/CodeGen/SchedulerRegistry.h"
|
2008-12-16 04:25:46 +01:00
|
|
|
#include "llvm/CodeGen/MachineDominators.h"
|
2009-10-01 21:45:32 +02:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-07-13 19:13:54 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2008-12-16 04:25:46 +01:00
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2008-11-25 01:52:40 +01:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2009-01-16 02:33:36 +01:00
|
|
|
#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
|
2009-10-10 01:27:56 +02:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
2009-02-11 00:29:38 +01:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
2009-01-15 20:20:50 +01:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2008-11-25 01:52:40 +01:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2009-09-30 02:10:16 +02:00
|
|
|
#include "llvm/Target/TargetSubtarget.h"
|
2009-10-26 23:31:16 +01:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2007-07-13 19:13:54 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-11 22:10:48 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-08-11 03:44:26 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-10-26 17:59:04 +01:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
2008-11-20 00:18:57 +01:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2008-11-25 01:52:40 +01:00
|
|
|
#include <map>
|
2009-08-25 19:03:05 +02:00
|
|
|
#include <set>
|
2007-07-13 19:13:54 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-01-16 02:33:36 +01:00
|
|
|
STATISTIC(NumNoops, "Number of noops inserted");
|
2008-11-20 00:18:57 +01:00
|
|
|
STATISTIC(NumStalls, "Number of pipeline stalls");
|
2009-10-26 17:59:04 +01:00
|
|
|
STATISTIC(NumFixedAnti, "Number of fixed anti-dependencies");
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-10-01 23:46:35 +02:00
|
|
|
// Post-RA scheduling is enabled with
|
|
|
|
// TargetSubtarget.enablePostRAScheduler(). This flag can be used to
|
|
|
|
// override the target.
|
|
|
|
static cl::opt<bool>
|
|
|
|
EnablePostRAScheduler("post-RA-scheduler",
|
|
|
|
cl::desc("Enable scheduling after register allocation"),
|
2009-10-02 00:19:57 +02:00
|
|
|
cl::init(false), cl::Hidden);
|
2009-10-26 17:59:04 +01:00
|
|
|
static cl::opt<std::string>
|
2008-11-25 01:52:40 +01:00
|
|
|
EnableAntiDepBreaking("break-anti-dependencies",
|
2009-10-26 17:59:04 +01:00
|
|
|
cl::desc("Break post-RA scheduling anti-dependencies: "
|
|
|
|
"\"critical\", \"all\", or \"none\""),
|
|
|
|
cl::init("none"), cl::Hidden);
|
2009-01-16 02:33:36 +01:00
|
|
|
static cl::opt<bool>
|
|
|
|
EnablePostRAHazardAvoidance("avoid-hazards",
|
2009-08-10 17:55:25 +02:00
|
|
|
cl::desc("Enable exact hazard avoidance"),
|
2009-09-04 00:15:25 +02:00
|
|
|
cl::init(true), cl::Hidden);
|
2009-01-16 02:33:36 +01:00
|
|
|
|
2009-09-01 20:34:03 +02:00
|
|
|
// If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
|
|
|
|
static cl::opt<int>
|
|
|
|
DebugDiv("postra-sched-debugdiv",
|
|
|
|
cl::desc("Debug control MBBs that are scheduled"),
|
|
|
|
cl::init(0), cl::Hidden);
|
|
|
|
static cl::opt<int>
|
|
|
|
DebugMod("postra-sched-debugmod",
|
|
|
|
cl::desc("Debug control MBBs that are scheduled"),
|
|
|
|
cl::init(0), cl::Hidden);
|
|
|
|
|
2009-10-26 20:41:00 +01:00
|
|
|
AntiDepBreaker::~AntiDepBreaker() { }
|
|
|
|
|
2007-07-13 19:13:54 +02:00
|
|
|
namespace {
|
2009-10-25 07:33:48 +01:00
|
|
|
class PostRAScheduler : public MachineFunctionPass {
|
2009-10-10 01:27:56 +02:00
|
|
|
AliasAnalysis *AA;
|
2009-10-16 23:06:15 +02:00
|
|
|
CodeGenOpt::Level OptLevel;
|
2009-10-10 01:27:56 +02:00
|
|
|
|
2007-07-13 19:13:54 +02:00
|
|
|
public:
|
|
|
|
static char ID;
|
2009-10-16 23:06:15 +02:00
|
|
|
PostRAScheduler(CodeGenOpt::Level ol) :
|
|
|
|
MachineFunctionPass(&ID), OptLevel(ol) {}
|
2008-11-25 01:52:40 +01:00
|
|
|
|
2008-12-16 04:25:46 +01:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
2009-08-01 01:37:33 +02:00
|
|
|
AU.setPreservesCFG();
|
2009-10-10 01:27:56 +02:00
|
|
|
AU.addRequired<AliasAnalysis>();
|
2008-12-16 04:25:46 +01:00
|
|
|
AU.addRequired<MachineDominatorTree>();
|
|
|
|
AU.addPreserved<MachineDominatorTree>();
|
|
|
|
AU.addRequired<MachineLoopInfo>();
|
|
|
|
AU.addPreserved<MachineLoopInfo>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
const char *getPassName() const {
|
2008-11-25 01:52:40 +01:00
|
|
|
return "Post RA top-down list latency scheduler";
|
2008-11-20 00:18:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnMachineFunction(MachineFunction &Fn);
|
|
|
|
};
|
|
|
|
char PostRAScheduler::ID = 0;
|
|
|
|
|
2009-10-25 07:33:48 +01:00
|
|
|
class SchedulePostRATDList : public ScheduleDAGInstrs {
|
2008-11-20 00:18:57 +01:00
|
|
|
/// AvailableQueue - The priority queue to use for the available SUnits.
|
2009-10-21 03:44:44 +02:00
|
|
|
///
|
2008-11-20 00:18:57 +01:00
|
|
|
LatencyPriorityQueue AvailableQueue;
|
|
|
|
|
|
|
|
/// PendingQueue - This contains all of the instructions whose operands have
|
|
|
|
/// been issued, but their results are not ready yet (due to the latency of
|
|
|
|
/// the operation). Once the operands becomes available, the instruction is
|
|
|
|
/// added to the AvailableQueue.
|
|
|
|
std::vector<SUnit*> PendingQueue;
|
|
|
|
|
2008-11-25 01:52:40 +01:00
|
|
|
/// Topo - A topological ordering for SUnits.
|
|
|
|
ScheduleDAGTopologicalSort Topo;
|
2007-07-13 19:13:54 +02:00
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
/// HazardRec - The hazard recognizer to use.
|
|
|
|
ScheduleHazardRecognizer *HazardRec;
|
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
/// AntiDepBreak - Anti-dependence breaking object, or NULL if none
|
|
|
|
AntiDepBreaker *AntiDepBreak;
|
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
/// AA - AliasAnalysis for making memory reference queries.
|
|
|
|
AliasAnalysis *AA;
|
2009-10-20 21:54:44 +02:00
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
/// KillIndices - The index of the most recent kill (proceding bottom-up),
|
|
|
|
/// or ~0u if the register is not live.
|
2009-02-11 00:27:53 +01:00
|
|
|
unsigned KillIndices[TargetRegisterInfo::FirstVirtualRegister];
|
|
|
|
|
2008-11-25 01:52:40 +01:00
|
|
|
public:
|
2009-01-15 20:20:50 +01:00
|
|
|
SchedulePostRATDList(MachineFunction &MF,
|
2008-12-16 04:25:46 +01:00
|
|
|
const MachineLoopInfo &MLI,
|
2009-01-16 02:33:36 +01:00
|
|
|
const MachineDominatorTree &MDT,
|
2009-10-10 01:27:56 +02:00
|
|
|
ScheduleHazardRecognizer *HR,
|
2009-10-26 17:59:04 +01:00
|
|
|
AntiDepBreaker *ADB,
|
|
|
|
AliasAnalysis *aa)
|
2009-01-15 20:20:50 +01:00
|
|
|
: ScheduleDAGInstrs(MF, MLI, MDT), Topo(SUnits),
|
2009-10-26 17:59:04 +01:00
|
|
|
HazardRec(HR), AntiDepBreak(ADB), AA(aa) {}
|
2009-01-16 02:33:36 +01:00
|
|
|
|
|
|
|
~SchedulePostRATDList() {
|
|
|
|
}
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// StartBlock - Initialize register live-range state for scheduling in
|
|
|
|
/// this block.
|
|
|
|
///
|
|
|
|
void StartBlock(MachineBasicBlock *BB);
|
|
|
|
|
2009-10-20 21:54:44 +02:00
|
|
|
/// Schedule - Schedule the instruction range using list scheduling.
|
2009-02-11 00:27:53 +01:00
|
|
|
///
|
2009-10-20 21:54:44 +02:00
|
|
|
void Schedule();
|
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
/// Observe - Update liveness information to account for the current
|
|
|
|
/// instruction, which will not be scheduled.
|
|
|
|
///
|
|
|
|
void Observe(MachineInstr *MI, unsigned Count);
|
2009-10-20 21:54:44 +02:00
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
/// FinishBlock - Clean up register live-range state.
|
|
|
|
///
|
|
|
|
void FinishBlock();
|
2009-10-20 21:54:44 +02:00
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
/// FixupKills - Fix register kill flags that have been made
|
|
|
|
/// invalid due to scheduling
|
|
|
|
///
|
|
|
|
void FixupKills(MachineBasicBlock *MBB);
|
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
private:
|
2009-11-20 20:32:48 +01:00
|
|
|
void ReleaseSucc(SUnit *SU, SDep *SuccEdge);
|
|
|
|
void ReleaseSuccessors(SUnit *SU);
|
|
|
|
void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
|
|
|
|
void ListScheduleTopDown();
|
2009-09-04 00:15:25 +02:00
|
|
|
void StartBlockForKills(MachineBasicBlock *BB);
|
2009-09-23 18:35:25 +02:00
|
|
|
|
|
|
|
// ToggleKillFlag - Toggle a register operand kill flag. Other
|
|
|
|
// adjustments may be made to the instruction if necessary. Return
|
|
|
|
// true if the operand has been deleted, false if not.
|
|
|
|
bool ToggleKillFlag(MachineInstr *MI, MachineOperand &MO);
|
2007-07-13 19:13:54 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// isSchedulingBoundary - Test if the given instruction should be
|
|
|
|
/// considered a scheduling boundary. This primarily includes labels
|
|
|
|
/// and terminators.
|
|
|
|
///
|
|
|
|
static bool isSchedulingBoundary(const MachineInstr *MI,
|
|
|
|
const MachineFunction &MF) {
|
|
|
|
// Terminators and labels can't be scheduled around.
|
|
|
|
if (MI->getDesc().isTerminator() || MI->isLabel())
|
|
|
|
return true;
|
|
|
|
|
2009-02-11 00:29:38 +01:00
|
|
|
// Don't attempt to schedule around any instruction that modifies
|
|
|
|
// a stack-oriented pointer, as it's unlikely to be profitable. This
|
|
|
|
// saves compile time, because it doesn't require every single
|
|
|
|
// stack slot reference to depend on the instruction that does the
|
|
|
|
// modification.
|
|
|
|
const TargetLowering &TLI = *MF.getTarget().getTargetLowering();
|
|
|
|
if (MI->modifiesRegister(TLI.getStackPointerRegisterToSaveRestore()))
|
|
|
|
return true;
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
|
2009-10-10 02:15:38 +02:00
|
|
|
AA = &getAnalysis<AliasAnalysis>();
|
|
|
|
|
2009-10-01 23:46:35 +02:00
|
|
|
// Check for explicit enable/disable of post-ra scheduling.
|
2009-10-23 01:19:17 +02:00
|
|
|
TargetSubtarget::AntiDepBreakMode AntiDepMode = TargetSubtarget::ANTIDEP_NONE;
|
2009-11-13 20:52:48 +01:00
|
|
|
SmallVector<TargetRegisterClass*, 4> CriticalPathRCs;
|
2009-10-01 23:46:35 +02:00
|
|
|
if (EnablePostRAScheduler.getPosition() > 0) {
|
|
|
|
if (!EnablePostRAScheduler)
|
2009-10-16 08:10:34 +02:00
|
|
|
return false;
|
2009-10-01 23:46:35 +02:00
|
|
|
} else {
|
2009-10-16 08:10:34 +02:00
|
|
|
// Check that post-RA scheduling is enabled for this target.
|
2009-10-01 23:46:35 +02:00
|
|
|
const TargetSubtarget &ST = Fn.getTarget().getSubtarget<TargetSubtarget>();
|
2009-11-13 20:52:48 +01:00
|
|
|
if (!ST.enablePostRAScheduler(OptLevel, AntiDepMode, CriticalPathRCs))
|
2009-10-16 08:10:34 +02:00
|
|
|
return false;
|
2009-10-01 23:46:35 +02:00
|
|
|
}
|
2009-09-30 02:10:16 +02:00
|
|
|
|
2009-10-23 01:19:17 +02:00
|
|
|
// Check for antidep breaking override...
|
|
|
|
if (EnableAntiDepBreaking.getPosition() > 0) {
|
2009-10-26 17:59:04 +01:00
|
|
|
AntiDepMode = (EnableAntiDepBreaking == "all") ? TargetSubtarget::ANTIDEP_ALL :
|
|
|
|
(EnableAntiDepBreaking == "critical") ? TargetSubtarget::ANTIDEP_CRITICAL :
|
|
|
|
TargetSubtarget::ANTIDEP_NONE;
|
2009-10-23 01:19:17 +02:00
|
|
|
}
|
|
|
|
|
2009-08-11 03:44:26 +02:00
|
|
|
DEBUG(errs() << "PostRAScheduler\n");
|
2007-07-13 19:13:54 +02:00
|
|
|
|
2008-12-16 04:25:46 +01:00
|
|
|
const MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
|
|
|
|
const MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
|
2009-08-10 17:55:25 +02:00
|
|
|
const InstrItineraryData &InstrItins = Fn.getTarget().getInstrItineraryData();
|
2009-01-16 02:33:36 +01:00
|
|
|
ScheduleHazardRecognizer *HR = EnablePostRAHazardAvoidance ?
|
2009-08-10 17:55:25 +02:00
|
|
|
(ScheduleHazardRecognizer *)new ExactHazardRecognizer(InstrItins) :
|
|
|
|
(ScheduleHazardRecognizer *)new SimpleHazardRecognizer();
|
2009-10-26 17:59:04 +01:00
|
|
|
AntiDepBreaker *ADB =
|
2009-10-26 20:32:42 +01:00
|
|
|
((AntiDepMode == TargetSubtarget::ANTIDEP_ALL) ?
|
2009-11-13 20:52:48 +01:00
|
|
|
(AntiDepBreaker *)new AggressiveAntiDepBreaker(Fn, CriticalPathRCs) :
|
2009-10-26 20:32:42 +01:00
|
|
|
((AntiDepMode == TargetSubtarget::ANTIDEP_CRITICAL) ?
|
|
|
|
(AntiDepBreaker *)new CriticalAntiDepBreaker(Fn) : NULL));
|
2008-12-16 04:25:46 +01:00
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
SchedulePostRATDList Scheduler(Fn, MLI, MDT, HR, ADB, AA);
|
2009-01-15 20:20:50 +01:00
|
|
|
|
2007-07-13 19:13:54 +02:00
|
|
|
// Loop over all of the basic blocks
|
|
|
|
for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
|
2008-11-20 00:18:57 +01:00
|
|
|
MBB != MBBe; ++MBB) {
|
2009-09-01 20:34:03 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
|
|
|
|
if (DebugDiv > 0) {
|
|
|
|
static int bbcnt = 0;
|
|
|
|
if (bbcnt++ % DebugDiv != DebugMod)
|
|
|
|
continue;
|
|
|
|
errs() << "*** DEBUG scheduling " << Fn.getFunction()->getNameStr() <<
|
2009-10-31 21:19:03 +01:00
|
|
|
":BB#" << MBB->getNumber() << " ***\n";
|
2009-09-01 20:34:03 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
// Initialize register live-range state for scheduling in this block.
|
|
|
|
Scheduler.StartBlock(MBB);
|
|
|
|
|
2009-01-16 23:10:20 +01:00
|
|
|
// Schedule each sequence of instructions not interrupted by a label
|
|
|
|
// or anything else that effectively needs to shut down scheduling.
|
2009-02-11 00:27:53 +01:00
|
|
|
MachineBasicBlock::iterator Current = MBB->end();
|
2009-02-11 05:27:20 +01:00
|
|
|
unsigned Count = MBB->size(), CurrentCount = Count;
|
2009-02-11 00:27:53 +01:00
|
|
|
for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
|
|
|
|
MachineInstr *MI = prior(I);
|
|
|
|
if (isSchedulingBoundary(MI, Fn)) {
|
2009-03-10 19:10:43 +01:00
|
|
|
Scheduler.Run(MBB, I, Current, CurrentCount);
|
2009-09-18 23:02:19 +02:00
|
|
|
Scheduler.EmitSchedule(0);
|
2009-02-11 00:27:53 +01:00
|
|
|
Current = MI;
|
2009-02-11 05:27:20 +01:00
|
|
|
CurrentCount = Count - 1;
|
2009-03-10 19:10:43 +01:00
|
|
|
Scheduler.Observe(MI, CurrentCount);
|
2009-01-16 23:10:20 +01:00
|
|
|
}
|
2009-02-11 00:27:53 +01:00
|
|
|
I = MI;
|
2009-02-11 05:27:20 +01:00
|
|
|
--Count;
|
|
|
|
}
|
|
|
|
assert(Count == 0 && "Instruction count mismatch!");
|
2009-03-11 10:04:34 +01:00
|
|
|
assert((MBB->begin() == Current || CurrentCount != 0) &&
|
2009-03-10 19:10:43 +01:00
|
|
|
"Instruction count mismatch!");
|
|
|
|
Scheduler.Run(MBB, MBB->begin(), Current, CurrentCount);
|
2009-09-18 23:02:19 +02:00
|
|
|
Scheduler.EmitSchedule(0);
|
2009-02-11 00:27:53 +01:00
|
|
|
|
|
|
|
// Clean up register live-range state.
|
|
|
|
Scheduler.FinishBlock();
|
2009-08-25 19:03:05 +02:00
|
|
|
|
2009-09-04 00:15:25 +02:00
|
|
|
// Update register kills
|
2009-08-25 19:03:05 +02:00
|
|
|
Scheduler.FixupKills(MBB);
|
2008-11-20 00:18:57 +01:00
|
|
|
}
|
2007-07-13 19:13:54 +02:00
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
delete HR;
|
|
|
|
delete ADB;
|
|
|
|
|
2007-07-13 19:13:54 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// StartBlock - Initialize register live-range state for scheduling in
|
|
|
|
/// this block.
|
|
|
|
///
|
|
|
|
void SchedulePostRATDList::StartBlock(MachineBasicBlock *BB) {
|
|
|
|
// Call the superclass.
|
|
|
|
ScheduleDAGInstrs::StartBlock(BB);
|
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
// Reset the hazard recognizer and anti-dep breaker.
|
2009-08-10 17:55:25 +02:00
|
|
|
HazardRec->Reset();
|
2009-10-26 17:59:04 +01:00
|
|
|
if (AntiDepBreak != NULL)
|
|
|
|
AntiDepBreak->StartBlock(BB);
|
2009-02-11 00:27:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Schedule - Schedule the instruction range using list scheduling.
|
|
|
|
///
|
2008-11-20 00:18:57 +01:00
|
|
|
void SchedulePostRATDList::Schedule() {
|
2008-12-23 19:36:58 +01:00
|
|
|
// Build the scheduling graph.
|
2009-10-10 01:27:56 +02:00
|
|
|
BuildSchedGraph(AA);
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
if (AntiDepBreak != NULL) {
|
2009-11-20 20:32:48 +01:00
|
|
|
unsigned Broken =
|
|
|
|
AntiDepBreak->BreakAntiDependencies(SUnits, Begin, InsertPos,
|
|
|
|
InsertPosIndex);
|
2009-11-03 21:57:50 +01:00
|
|
|
|
2009-11-20 20:32:48 +01:00
|
|
|
if (Broken != 0) {
|
2008-11-25 01:52:40 +01:00
|
|
|
// We made changes. Update the dependency graph.
|
|
|
|
// Theoretically we could update the graph in place:
|
|
|
|
// When a live range is changed to use a different register, remove
|
|
|
|
// the def's anti-dependence *and* output-dependence edges due to
|
|
|
|
// that register, and add new anti-dependence and output-dependence
|
|
|
|
// edges based on the next live range of the register.
|
2009-11-20 20:32:48 +01:00
|
|
|
SUnits.clear();
|
|
|
|
Sequence.clear();
|
|
|
|
EntrySU = SUnit();
|
|
|
|
ExitSU = SUnit();
|
|
|
|
BuildSchedGraph(AA);
|
|
|
|
|
2009-10-26 17:59:04 +01:00
|
|
|
NumFixedAnti += Broken;
|
2008-11-25 01:52:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:31:16 +01:00
|
|
|
DEBUG(errs() << "********** List Scheduling **********\n");
|
2009-08-10 17:55:25 +02:00
|
|
|
DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
|
|
|
|
SUnits[su].dumpAll(this));
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
AvailableQueue.initNodes(SUnits);
|
2009-11-20 20:32:48 +01:00
|
|
|
ListScheduleTopDown();
|
2008-11-20 00:18:57 +01:00
|
|
|
AvailableQueue.releaseState();
|
|
|
|
}
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
/// Observe - Update liveness information to account for the current
|
|
|
|
/// instruction, which will not be scheduled.
|
|
|
|
///
|
2009-02-11 05:27:20 +01:00
|
|
|
void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
|
2009-10-26 17:59:04 +01:00
|
|
|
if (AntiDepBreak != NULL)
|
|
|
|
AntiDepBreak->Observe(MI, Count, InsertPosIndex);
|
2009-02-11 00:27:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// FinishBlock - Clean up register live-range state.
|
|
|
|
///
|
|
|
|
void SchedulePostRATDList::FinishBlock() {
|
2009-10-26 17:59:04 +01:00
|
|
|
if (AntiDepBreak != NULL)
|
|
|
|
AntiDepBreak->FinishBlock();
|
2009-02-11 00:27:53 +01:00
|
|
|
|
|
|
|
// Call the superclass.
|
|
|
|
ScheduleDAGInstrs::FinishBlock();
|
|
|
|
}
|
|
|
|
|
2009-09-04 00:15:25 +02:00
|
|
|
/// StartBlockForKills - Initialize register live-range state for updating kills
|
|
|
|
///
|
|
|
|
void SchedulePostRATDList::StartBlockForKills(MachineBasicBlock *BB) {
|
|
|
|
// Initialize the indices to indicate that no registers are live.
|
|
|
|
std::fill(KillIndices, array_endof(KillIndices), ~0u);
|
|
|
|
|
|
|
|
// Determine the live-out physregs for this block.
|
|
|
|
if (!BB->empty() && BB->back().getDesc().isReturn()) {
|
|
|
|
// In a return block, examine the function live-out regs.
|
|
|
|
for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
|
|
|
|
E = MRI.liveout_end(); I != E; ++I) {
|
|
|
|
unsigned Reg = *I;
|
|
|
|
KillIndices[Reg] = BB->size();
|
|
|
|
// Repeat, for all subregs.
|
|
|
|
for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
|
|
|
|
*Subreg; ++Subreg) {
|
|
|
|
KillIndices[*Subreg] = BB->size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// In a non-return block, examine the live-in regs of all successors.
|
|
|
|
for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
|
|
|
|
SE = BB->succ_end(); SI != SE; ++SI) {
|
|
|
|
for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
|
|
|
|
E = (*SI)->livein_end(); I != E; ++I) {
|
|
|
|
unsigned Reg = *I;
|
|
|
|
KillIndices[Reg] = BB->size();
|
|
|
|
// Repeat, for all subregs.
|
|
|
|
for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
|
|
|
|
*Subreg; ++Subreg) {
|
|
|
|
KillIndices[*Subreg] = BB->size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-23 18:35:25 +02:00
|
|
|
bool SchedulePostRATDList::ToggleKillFlag(MachineInstr *MI,
|
|
|
|
MachineOperand &MO) {
|
|
|
|
// Setting kill flag...
|
|
|
|
if (!MO.isKill()) {
|
|
|
|
MO.setIsKill(true);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If MO itself is live, clear the kill flag...
|
|
|
|
if (KillIndices[MO.getReg()] != ~0u) {
|
|
|
|
MO.setIsKill(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If any subreg of MO is live, then create an imp-def for that
|
|
|
|
// subreg and keep MO marked as killed.
|
2009-10-02 17:59:52 +02:00
|
|
|
MO.setIsKill(false);
|
2009-09-23 18:35:25 +02:00
|
|
|
bool AllDead = true;
|
|
|
|
const unsigned SuperReg = MO.getReg();
|
|
|
|
for (const unsigned *Subreg = TRI->getSubRegisters(SuperReg);
|
|
|
|
*Subreg; ++Subreg) {
|
|
|
|
if (KillIndices[*Subreg] != ~0u) {
|
|
|
|
MI->addOperand(MachineOperand::CreateReg(*Subreg,
|
|
|
|
true /*IsDef*/,
|
|
|
|
true /*IsImp*/,
|
|
|
|
false /*IsKill*/,
|
|
|
|
false /*IsDead*/));
|
|
|
|
AllDead = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-21 03:44:44 +02:00
|
|
|
if(AllDead)
|
2009-10-02 17:59:52 +02:00
|
|
|
MO.setIsKill(true);
|
2009-09-23 18:35:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-25 19:03:05 +02:00
|
|
|
/// FixupKills - Fix the register kill flags, they may have been made
|
|
|
|
/// incorrect by instruction reordering.
|
|
|
|
///
|
|
|
|
void SchedulePostRATDList::FixupKills(MachineBasicBlock *MBB) {
|
2009-10-31 21:19:03 +01:00
|
|
|
DEBUG(errs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
|
2009-08-25 19:03:05 +02:00
|
|
|
|
|
|
|
std::set<unsigned> killedRegs;
|
|
|
|
BitVector ReservedRegs = TRI->getReservedRegs(MF);
|
2009-09-04 00:15:25 +02:00
|
|
|
|
|
|
|
StartBlockForKills(MBB);
|
2009-08-29 02:11:13 +02:00
|
|
|
|
|
|
|
// Examine block from end to start...
|
2009-08-25 19:03:05 +02:00
|
|
|
unsigned Count = MBB->size();
|
|
|
|
for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
|
|
|
|
I != E; --Count) {
|
|
|
|
MachineInstr *MI = --I;
|
|
|
|
|
2009-08-29 02:11:13 +02:00
|
|
|
// Update liveness. Registers that are defed but not used in this
|
|
|
|
// instruction are now dead. Mark register and all subregs as they
|
|
|
|
// are completely defined.
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (!MO.isReg()) continue;
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (Reg == 0) continue;
|
|
|
|
if (!MO.isDef()) continue;
|
|
|
|
// Ignore two-addr defs.
|
|
|
|
if (MI->isRegTiedToUseOperand(i)) continue;
|
|
|
|
|
|
|
|
KillIndices[Reg] = ~0u;
|
|
|
|
|
|
|
|
// Repeat for all subregs.
|
|
|
|
for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
|
|
|
|
*Subreg; ++Subreg) {
|
|
|
|
KillIndices[*Subreg] = ~0u;
|
|
|
|
}
|
|
|
|
}
|
2009-08-25 19:03:05 +02:00
|
|
|
|
2009-09-23 18:35:25 +02:00
|
|
|
// Examine all used registers and set/clear kill flag. When a
|
|
|
|
// register is used multiple times we only set the kill flag on
|
|
|
|
// the first use.
|
2009-08-25 19:03:05 +02:00
|
|
|
killedRegs.clear();
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (!MO.isReg() || !MO.isUse()) continue;
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
|
|
|
|
|
2009-08-29 02:11:13 +02:00
|
|
|
bool kill = false;
|
|
|
|
if (killedRegs.find(Reg) == killedRegs.end()) {
|
|
|
|
kill = true;
|
|
|
|
// A register is not killed if any subregs are live...
|
|
|
|
for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
|
|
|
|
*Subreg; ++Subreg) {
|
|
|
|
if (KillIndices[*Subreg] != ~0u) {
|
|
|
|
kill = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If subreg is not live, then register is killed if it became
|
|
|
|
// live in this instruction
|
|
|
|
if (kill)
|
|
|
|
kill = (KillIndices[Reg] == ~0u);
|
|
|
|
}
|
|
|
|
|
2009-08-25 19:03:05 +02:00
|
|
|
if (MO.isKill() != kill) {
|
2009-09-23 18:35:25 +02:00
|
|
|
bool removed = ToggleKillFlag(MI, MO);
|
|
|
|
if (removed) {
|
|
|
|
DEBUG(errs() << "Fixed <removed> in ");
|
|
|
|
} else {
|
|
|
|
DEBUG(errs() << "Fixed " << MO << " in ");
|
|
|
|
}
|
2009-08-25 19:03:05 +02:00
|
|
|
DEBUG(MI->dump());
|
|
|
|
}
|
2009-08-29 02:11:13 +02:00
|
|
|
|
2009-08-25 19:03:05 +02:00
|
|
|
killedRegs.insert(Reg);
|
|
|
|
}
|
2009-08-29 02:11:13 +02:00
|
|
|
|
2009-08-31 22:47:02 +02:00
|
|
|
// Mark any used register (that is not using undef) and subregs as
|
|
|
|
// now live...
|
2009-08-29 02:11:13 +02:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2009-08-31 22:47:02 +02:00
|
|
|
if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
|
2009-08-29 02:11:13 +02:00
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
|
|
|
|
|
|
|
|
KillIndices[Reg] = Count;
|
|
|
|
|
|
|
|
for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
|
|
|
|
*Subreg; ++Subreg) {
|
|
|
|
KillIndices[*Subreg] = Count;
|
|
|
|
}
|
|
|
|
}
|
2009-08-25 19:03:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Top-Down Scheduling
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
|
|
|
|
/// the PendingQueue if the count reaches zero. Also update its cycle bound.
|
2009-11-20 20:32:48 +01:00
|
|
|
void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
|
2008-12-09 23:54:47 +01:00
|
|
|
SUnit *SuccSU = SuccEdge->getSUnit();
|
2009-09-30 22:15:38 +02:00
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
#ifndef NDEBUG
|
2009-09-30 22:15:38 +02:00
|
|
|
if (SuccSU->NumPredsLeft == 0) {
|
2009-08-23 09:19:13 +02:00
|
|
|
errs() << "*** Scheduling failed! ***\n";
|
2008-11-20 00:18:57 +01:00
|
|
|
SuccSU->dump(this);
|
2009-08-23 09:19:13 +02:00
|
|
|
errs() << " has been released too many times!\n";
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable(0);
|
2008-11-20 00:18:57 +01:00
|
|
|
}
|
|
|
|
#endif
|
2009-09-30 22:15:38 +02:00
|
|
|
--SuccSU->NumPredsLeft;
|
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
// Compute how many cycles it will be before this actually becomes
|
|
|
|
// available. This is the max of the start time of all predecessors plus
|
|
|
|
// their latencies.
|
2009-11-20 20:32:48 +01:00
|
|
|
SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
// If all the node's predecessors are scheduled, this node is ready
|
|
|
|
// to be scheduled. Ignore the special ExitSU node.
|
|
|
|
if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
|
2008-11-20 00:18:57 +01:00
|
|
|
PendingQueue.push_back(SuccSU);
|
2009-02-11 00:27:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ReleaseSuccessors - Call ReleaseSucc on each of SU's successors.
|
2009-11-20 20:32:48 +01:00
|
|
|
void SchedulePostRATDList::ReleaseSuccessors(SUnit *SU) {
|
2009-02-11 00:27:53 +01:00
|
|
|
for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
|
2009-11-03 21:57:50 +01:00
|
|
|
I != E; ++I) {
|
2009-11-20 20:32:48 +01:00
|
|
|
ReleaseSucc(SU, &*I);
|
2009-11-03 21:57:50 +01:00
|
|
|
}
|
2008-11-20 00:18:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
|
|
|
|
/// count of its successors. If a successor pending count is zero, add it to
|
|
|
|
/// the Available queue.
|
2009-11-20 20:32:48 +01:00
|
|
|
void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
|
2009-08-11 03:44:26 +02:00
|
|
|
DEBUG(errs() << "*** Scheduling [" << CurCycle << "]: ");
|
2008-11-20 00:18:57 +01:00
|
|
|
DEBUG(SU->dump(this));
|
|
|
|
|
|
|
|
Sequence.push_back(SU);
|
2009-11-20 20:32:48 +01:00
|
|
|
assert(CurCycle >= SU->getDepth() &&
|
2009-11-03 21:57:50 +01:00
|
|
|
"Node scheduled above its depth!");
|
2009-11-20 20:32:48 +01:00
|
|
|
SU->setDepthToAtLeast(CurCycle);
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-11-20 20:32:48 +01:00
|
|
|
ReleaseSuccessors(SU);
|
2008-11-20 00:18:57 +01:00
|
|
|
SU->isScheduled = true;
|
|
|
|
AvailableQueue.ScheduledNode(SU);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ListScheduleTopDown - The main loop of list scheduling for top-down
|
|
|
|
/// schedulers.
|
2009-11-20 20:32:48 +01:00
|
|
|
void SchedulePostRATDList::ListScheduleTopDown() {
|
2008-11-20 00:18:57 +01:00
|
|
|
unsigned CurCycle = 0;
|
2009-11-03 21:57:50 +01:00
|
|
|
|
|
|
|
// We're scheduling top-down but we're visiting the regions in
|
|
|
|
// bottom-up order, so we don't know the hazards at the start of a
|
|
|
|
// region. So assume no hazards (this should usually be ok as most
|
|
|
|
// blocks are a single region).
|
|
|
|
HazardRec->Reset();
|
|
|
|
|
2009-02-11 00:27:53 +01:00
|
|
|
// Release any successors of the special Entry node.
|
2009-11-20 20:32:48 +01:00
|
|
|
ReleaseSuccessors(&EntrySU);
|
2009-02-11 00:27:53 +01:00
|
|
|
|
2009-11-20 20:32:48 +01:00
|
|
|
// Add all leaves to Available queue.
|
2008-11-20 00:18:57 +01:00
|
|
|
for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
|
|
|
|
// It is available if it has no predecessors.
|
2009-11-03 21:57:50 +01:00
|
|
|
bool available = SUnits[i].Preds.empty();
|
|
|
|
if (available) {
|
2008-11-20 00:18:57 +01:00
|
|
|
AvailableQueue.push(&SUnits[i]);
|
|
|
|
SUnits[i].isAvailable = true;
|
|
|
|
}
|
|
|
|
}
|
2009-02-11 00:27:53 +01:00
|
|
|
|
2009-08-12 23:47:46 +02:00
|
|
|
// In any cycle where we can't schedule any instructions, we must
|
|
|
|
// stall or emit a noop, depending on the target.
|
2009-09-06 14:10:17 +02:00
|
|
|
bool CycleHasInsts = false;
|
2009-08-12 23:47:46 +02:00
|
|
|
|
2008-11-20 00:18:57 +01:00
|
|
|
// While Available queue is not empty, grab the node with the highest
|
|
|
|
// priority. If it is not ready put it back. Schedule the node.
|
2009-01-16 02:33:36 +01:00
|
|
|
std::vector<SUnit*> NotReady;
|
2008-11-20 00:18:57 +01:00
|
|
|
Sequence.reserve(SUnits.size());
|
|
|
|
while (!AvailableQueue.empty() || !PendingQueue.empty()) {
|
|
|
|
// Check to see if any of the pending instructions are ready to issue. If
|
|
|
|
// so, add them to the available queue.
|
2008-12-16 04:25:46 +01:00
|
|
|
unsigned MinDepth = ~0u;
|
2008-11-20 00:18:57 +01:00
|
|
|
for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
|
2009-11-20 20:32:48 +01:00
|
|
|
if (PendingQueue[i]->getDepth() <= CurCycle) {
|
2008-11-20 00:18:57 +01:00
|
|
|
AvailableQueue.push(PendingQueue[i]);
|
|
|
|
PendingQueue[i]->isAvailable = true;
|
|
|
|
PendingQueue[i] = PendingQueue.back();
|
|
|
|
PendingQueue.pop_back();
|
|
|
|
--i; --e;
|
2009-11-20 20:32:48 +01:00
|
|
|
} else if (PendingQueue[i]->getDepth() < MinDepth)
|
|
|
|
MinDepth = PendingQueue[i]->getDepth();
|
2008-11-20 00:18:57 +01:00
|
|
|
}
|
2009-08-11 19:35:23 +02:00
|
|
|
|
2009-08-11 19:56:42 +02:00
|
|
|
DEBUG(errs() << "\n*** Examining Available\n";
|
|
|
|
LatencyPriorityQueue q = AvailableQueue;
|
|
|
|
while (!q.empty()) {
|
|
|
|
SUnit *su = q.pop();
|
2009-11-20 20:32:48 +01:00
|
|
|
errs() << "Height " << su->getHeight() << ": ";
|
2009-08-11 19:56:42 +02:00
|
|
|
su->dump(this);
|
|
|
|
});
|
2009-08-11 19:35:23 +02:00
|
|
|
|
2009-01-16 02:33:36 +01:00
|
|
|
SUnit *FoundSUnit = 0;
|
|
|
|
bool HasNoopHazards = false;
|
|
|
|
while (!AvailableQueue.empty()) {
|
|
|
|
SUnit *CurSUnit = AvailableQueue.pop();
|
|
|
|
|
|
|
|
ScheduleHazardRecognizer::HazardType HT =
|
|
|
|
HazardRec->getHazardType(CurSUnit);
|
|
|
|
if (HT == ScheduleHazardRecognizer::NoHazard) {
|
|
|
|
FoundSUnit = CurSUnit;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remember if this is a noop hazard.
|
|
|
|
HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
|
|
|
|
|
|
|
|
NotReady.push_back(CurSUnit);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the nodes that aren't ready back onto the available list.
|
|
|
|
if (!NotReady.empty()) {
|
|
|
|
AvailableQueue.push_all(NotReady);
|
|
|
|
NotReady.clear();
|
|
|
|
}
|
|
|
|
|
2009-11-03 21:57:50 +01:00
|
|
|
// If we found a node to schedule...
|
2008-11-20 00:18:57 +01:00
|
|
|
if (FoundSUnit) {
|
2009-11-03 21:57:50 +01:00
|
|
|
// ... schedule the node...
|
2009-11-20 20:32:48 +01:00
|
|
|
ScheduleNodeTopDown(FoundSUnit, CurCycle);
|
2009-01-16 02:33:36 +01:00
|
|
|
HazardRec->EmitInstruction(FoundSUnit);
|
2009-09-06 14:10:17 +02:00
|
|
|
CycleHasInsts = true;
|
2008-11-20 00:18:57 +01:00
|
|
|
|
2009-08-10 17:55:25 +02:00
|
|
|
// If we are using the target-specific hazards, then don't
|
|
|
|
// advance the cycle time just because we schedule a node. If
|
|
|
|
// the target allows it we can schedule multiple nodes in the
|
|
|
|
// same cycle.
|
|
|
|
if (!EnablePostRAHazardAvoidance) {
|
|
|
|
if (FoundSUnit->Latency) // Don't increment CurCycle for pseudo-ops!
|
|
|
|
++CurCycle;
|
|
|
|
}
|
2009-01-16 02:33:36 +01:00
|
|
|
} else {
|
2009-09-06 14:10:17 +02:00
|
|
|
if (CycleHasInsts) {
|
2009-08-12 23:47:46 +02:00
|
|
|
DEBUG(errs() << "*** Finished cycle " << CurCycle << '\n');
|
|
|
|
HazardRec->AdvanceCycle();
|
|
|
|
} else if (!HasNoopHazards) {
|
|
|
|
// Otherwise, we have a pipeline stall, but no other problem,
|
|
|
|
// just advance the current cycle and try again.
|
|
|
|
DEBUG(errs() << "*** Stall in cycle " << CurCycle << '\n');
|
|
|
|
HazardRec->AdvanceCycle();
|
2009-11-20 20:32:48 +01:00
|
|
|
++NumStalls;
|
2009-08-12 23:47:46 +02:00
|
|
|
} else {
|
|
|
|
// Otherwise, we have no instructions to issue and we have instructions
|
|
|
|
// that will fault if we don't do this right. This is the case for
|
|
|
|
// processors without pipeline interlocks and other cases.
|
|
|
|
DEBUG(errs() << "*** Emitting noop in cycle " << CurCycle << '\n');
|
|
|
|
HazardRec->EmitNoop();
|
|
|
|
Sequence.push_back(0); // NULL here means noop
|
2009-11-20 20:32:48 +01:00
|
|
|
++NumNoops;
|
2009-08-12 23:47:46 +02:00
|
|
|
}
|
|
|
|
|
2009-01-16 02:33:36 +01:00
|
|
|
++CurCycle;
|
2009-09-06 14:10:17 +02:00
|
|
|
CycleHasInsts = false;
|
2008-11-20 00:18:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2008-11-20 02:26:25 +01:00
|
|
|
VerifySchedule(/*isBottomUp=*/false);
|
2008-11-20 00:18:57 +01:00
|
|
|
#endif
|
|
|
|
}
|
2007-07-13 19:13:54 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Public Constructor Functions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-16 23:06:15 +02:00
|
|
|
FunctionPass *llvm::createPostRAScheduler(CodeGenOpt::Level OptLevel) {
|
|
|
|
return new PostRAScheduler(OptLevel);
|
2007-07-13 19:13:54 +02:00
|
|
|
}
|