2007-07-13 17:31:29 +00:00
|
|
|
//===----- SchedulePostRAList.cpp - list scheduler ------------------------===//
|
2007-07-13 17:13:54 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-07-13 17:13:54 +00: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2009-10-26 19:32:42 +00:00
|
|
|
#include "AggressiveAntiDepBreaker.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "AntiDepBreaker.h"
|
2009-10-26 16:59:04 +00:00
|
|
|
#include "CriticalAntiDepBreaker.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
2008-11-19 23:18:57 +00:00
|
|
|
#include "llvm/CodeGen/LatencyPriorityQueue.h"
|
2008-12-16 03:25:46 +00:00
|
|
|
#include "llvm/CodeGen/MachineDominators.h"
|
2009-10-01 19:45:32 +00:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-07-13 17:13:54 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2008-12-16 03:25:46 +00:00
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2008-11-25 00:52:40 +00:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2012-06-06 20:29:31 +00:00
|
|
|
#include "llvm/CodeGen/RegisterClassInfo.h"
|
2012-03-07 23:01:06 +00:00
|
|
|
#include "llvm/CodeGen/ScheduleDAGInstrs.h"
|
2009-01-16 01:33:36 +00:00
|
|
|
#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/CodeGen/SchedulerRegistry.h"
|
2009-10-26 22:31:16 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2007-07-13 17:13:54 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-11 20:10:48 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-08-11 01:44:26 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2007-07-13 17:13:54 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 02:02:50 +00:00
|
|
|
#define DEBUG_TYPE "post-RA-sched"
|
|
|
|
|
2009-01-16 01:33:36 +00:00
|
|
|
STATISTIC(NumNoops, "Number of noops inserted");
|
2008-11-19 23:18:57 +00:00
|
|
|
STATISTIC(NumStalls, "Number of pipeline stalls");
|
2009-10-26 16:59:04 +00:00
|
|
|
STATISTIC(NumFixedAnti, "Number of fixed anti-dependencies");
|
2008-11-19 23:18:57 +00:00
|
|
|
|
2009-10-01 21:46:35 +00:00
|
|
|
// Post-RA scheduling is enabled with
|
2011-07-01 21:01:15 +00:00
|
|
|
// TargetSubtargetInfo.enablePostRAScheduler(). This flag can be used to
|
2009-10-01 21:46:35 +00:00
|
|
|
// override the target.
|
|
|
|
static cl::opt<bool>
|
|
|
|
EnablePostRAScheduler("post-RA-scheduler",
|
|
|
|
cl::desc("Enable scheduling after register allocation"),
|
2009-10-01 22:19:57 +00:00
|
|
|
cl::init(false), cl::Hidden);
|
2009-10-26 16:59:04 +00:00
|
|
|
static cl::opt<std::string>
|
2008-11-25 00:52:40 +00:00
|
|
|
EnableAntiDepBreaking("break-anti-dependencies",
|
2009-10-26 16:59:04 +00:00
|
|
|
cl::desc("Break post-RA scheduling anti-dependencies: "
|
|
|
|
"\"critical\", \"all\", or \"none\""),
|
|
|
|
cl::init("none"), cl::Hidden);
|
2009-01-16 01:33:36 +00:00
|
|
|
|
2009-09-01 18:34:03 +00: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 19:41:00 +00:00
|
|
|
AntiDepBreaker::~AntiDepBreaker() { }
|
|
|
|
|
2007-07-13 17:13:54 +00:00
|
|
|
namespace {
|
2009-10-25 06:33:48 +00:00
|
|
|
class PostRAScheduler : public MachineFunctionPass {
|
2010-06-18 23:09:54 +00:00
|
|
|
const TargetInstrInfo *TII;
|
2011-06-16 21:56:21 +00:00
|
|
|
RegisterClassInfo RegClassInfo;
|
2009-10-09 23:27:56 +00:00
|
|
|
|
2007-07-13 17:13:54 +00:00
|
|
|
public:
|
|
|
|
static char ID;
|
2012-02-08 21:22:53 +00:00
|
|
|
PostRAScheduler() : MachineFunctionPass(ID) {}
|
2008-11-25 00:52:40 +00:00
|
|
|
|
2014-03-07 09:26:03 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2009-07-31 23:37:33 +00:00
|
|
|
AU.setPreservesCFG();
|
2009-10-09 23:27:56 +00:00
|
|
|
AU.addRequired<AliasAnalysis>();
|
2012-02-08 21:22:53 +00:00
|
|
|
AU.addRequired<TargetPassConfig>();
|
2008-12-16 03:25:46 +00:00
|
|
|
AU.addRequired<MachineDominatorTree>();
|
|
|
|
AU.addPreserved<MachineDominatorTree>();
|
|
|
|
AU.addRequired<MachineLoopInfo>();
|
|
|
|
AU.addPreserved<MachineLoopInfo>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
2014-03-07 09:26:03 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &Fn) override;
|
2014-10-29 15:23:11 +00:00
|
|
|
|
2014-07-15 22:39:58 +00:00
|
|
|
bool enablePostRAScheduler(
|
|
|
|
const TargetSubtargetInfo &ST, CodeGenOpt::Level OptLevel,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode &Mode,
|
|
|
|
TargetSubtargetInfo::RegClassVector &CriticalPathRCs) const;
|
2008-11-19 23:18:57 +00:00
|
|
|
};
|
|
|
|
char PostRAScheduler::ID = 0;
|
|
|
|
|
2009-10-25 06:33:48 +00:00
|
|
|
class SchedulePostRATDList : public ScheduleDAGInstrs {
|
2008-11-19 23:18:57 +00:00
|
|
|
/// AvailableQueue - The priority queue to use for the available SUnits.
|
2009-10-21 01:44:44 +00:00
|
|
|
///
|
2008-11-19 23:18:57 +00:00
|
|
|
LatencyPriorityQueue AvailableQueue;
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
/// 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;
|
|
|
|
|
2009-10-21 01:44:44 +00:00
|
|
|
/// HazardRec - The hazard recognizer to use.
|
|
|
|
ScheduleHazardRecognizer *HazardRec;
|
|
|
|
|
2009-10-26 16:59:04 +00:00
|
|
|
/// AntiDepBreak - Anti-dependence breaking object, or NULL if none
|
|
|
|
AntiDepBreaker *AntiDepBreak;
|
|
|
|
|
2009-10-21 01:44:44 +00:00
|
|
|
/// AA - AliasAnalysis for making memory reference queries.
|
|
|
|
AliasAnalysis *AA;
|
2009-10-20 19:54:44 +00:00
|
|
|
|
2012-03-07 05:21:52 +00:00
|
|
|
/// The schedule. Null SUnit*'s represent noop instructions.
|
|
|
|
std::vector<SUnit*> Sequence;
|
|
|
|
|
2013-08-23 17:48:33 +00:00
|
|
|
/// The index in BB of RegionEnd.
|
|
|
|
///
|
|
|
|
/// This is the instruction number from the top of the current block, not
|
|
|
|
/// the SlotIndex. It is only used by the AntiDepBreaker.
|
|
|
|
unsigned EndIndex;
|
|
|
|
|
2008-11-25 00:52:40 +00:00
|
|
|
public:
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
SchedulePostRATDList(
|
2014-08-20 20:57:26 +00:00
|
|
|
MachineFunction &MF, MachineLoopInfo &MLI, AliasAnalysis *AA,
|
|
|
|
const RegisterClassInfo &,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode AntiDepMode,
|
|
|
|
SmallVectorImpl<const TargetRegisterClass *> &CriticalPathRCs);
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
|
2015-04-11 02:11:45 +00:00
|
|
|
~SchedulePostRATDList() override;
|
2008-11-19 23:18:57 +00:00
|
|
|
|
2012-03-07 23:00:49 +00:00
|
|
|
/// startBlock - Initialize register live-range state for scheduling in
|
2009-02-10 23:27:53 +00:00
|
|
|
/// this block.
|
|
|
|
///
|
2014-03-07 09:26:03 +00:00
|
|
|
void startBlock(MachineBasicBlock *BB) override;
|
2009-02-10 23:27:53 +00:00
|
|
|
|
2013-08-23 17:48:33 +00:00
|
|
|
// Set the index of RegionEnd within the current BB.
|
|
|
|
void setEndIndex(unsigned EndIdx) { EndIndex = EndIdx; }
|
|
|
|
|
2012-03-07 05:21:52 +00:00
|
|
|
/// Initialize the scheduler state for the next scheduling region.
|
2014-03-07 09:26:03 +00:00
|
|
|
void enterRegion(MachineBasicBlock *bb,
|
|
|
|
MachineBasicBlock::iterator begin,
|
|
|
|
MachineBasicBlock::iterator end,
|
|
|
|
unsigned regioninstrs) override;
|
2012-03-07 05:21:52 +00:00
|
|
|
|
|
|
|
/// Notify that the scheduler has finished scheduling the current region.
|
2014-03-07 09:26:03 +00:00
|
|
|
void exitRegion() override;
|
2012-03-07 05:21:52 +00:00
|
|
|
|
2009-10-20 19:54:44 +00:00
|
|
|
/// Schedule - Schedule the instruction range using list scheduling.
|
2009-02-10 23:27:53 +00:00
|
|
|
///
|
2014-03-07 09:26:03 +00:00
|
|
|
void schedule() override;
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2012-03-07 05:21:44 +00:00
|
|
|
void EmitSchedule();
|
|
|
|
|
2009-10-21 01:44:44 +00: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 19:54:44 +00:00
|
|
|
|
2012-03-07 23:00:49 +00:00
|
|
|
/// finishBlock - Clean up register live-range state.
|
2009-10-21 01:44:44 +00:00
|
|
|
///
|
2014-03-07 09:26:03 +00:00
|
|
|
void finishBlock() override;
|
2009-10-20 19:54:44 +00:00
|
|
|
|
2009-10-21 01:44:44 +00:00
|
|
|
private:
|
2009-11-20 19:32:48 +00:00
|
|
|
void ReleaseSucc(SUnit *SU, SDep *SuccEdge);
|
|
|
|
void ReleaseSuccessors(SUnit *SU);
|
|
|
|
void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
|
|
|
|
void ListScheduleTopDown();
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2012-03-07 05:21:40 +00:00
|
|
|
void dumpSchedule() const;
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
void emitNoop(unsigned CurCycle);
|
2007-07-13 17:13:54 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-02-08 21:23:13 +00:00
|
|
|
char &llvm::PostRASchedulerID = PostRAScheduler::ID;
|
|
|
|
|
|
|
|
INITIALIZE_PASS(PostRAScheduler, "post-RA-sched",
|
|
|
|
"Post RA top-down list latency scheduler", false, false)
|
|
|
|
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
SchedulePostRATDList::SchedulePostRATDList(
|
2014-08-20 20:57:26 +00:00
|
|
|
MachineFunction &MF, MachineLoopInfo &MLI, AliasAnalysis *AA,
|
|
|
|
const RegisterClassInfo &RCI,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode AntiDepMode,
|
|
|
|
SmallVectorImpl<const TargetRegisterClass *> &CriticalPathRCs)
|
|
|
|
: ScheduleDAGInstrs(MF, &MLI, /*IsPostRA=*/true), AA(AA), EndIndex(0) {
|
2013-12-28 21:56:55 +00:00
|
|
|
|
2014-08-04 21:25:23 +00:00
|
|
|
const InstrItineraryData *InstrItins =
|
2014-10-14 07:17:23 +00:00
|
|
|
MF.getSubtarget().getInstrItineraryData();
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
HazardRec =
|
2014-10-14 07:17:23 +00:00
|
|
|
MF.getSubtarget().getInstrInfo()->CreateTargetPostRAHazardRecognizer(
|
2014-08-04 21:25:23 +00:00
|
|
|
InstrItins, this);
|
2012-04-23 21:39:35 +00:00
|
|
|
|
|
|
|
assert((AntiDepMode == TargetSubtargetInfo::ANTIDEP_NONE ||
|
|
|
|
MRI.tracksLiveness()) &&
|
|
|
|
"Live-ins must be accurate for anti-dependency breaking");
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
AntiDepBreak =
|
2011-07-01 21:01:15 +00:00
|
|
|
((AntiDepMode == TargetSubtargetInfo::ANTIDEP_ALL) ?
|
2011-06-16 21:56:21 +00:00
|
|
|
(AntiDepBreaker *)new AggressiveAntiDepBreaker(MF, RCI, CriticalPathRCs) :
|
2011-07-01 21:01:15 +00:00
|
|
|
((AntiDepMode == TargetSubtargetInfo::ANTIDEP_CRITICAL) ?
|
2014-04-14 00:51:57 +00:00
|
|
|
(AntiDepBreaker *)new CriticalAntiDepBreaker(MF, RCI) : nullptr));
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SchedulePostRATDList::~SchedulePostRATDList() {
|
|
|
|
delete HazardRec;
|
|
|
|
delete AntiDepBreak;
|
|
|
|
}
|
|
|
|
|
2012-03-07 05:21:52 +00:00
|
|
|
/// Initialize state associated with the next scheduling region.
|
|
|
|
void SchedulePostRATDList::enterRegion(MachineBasicBlock *bb,
|
|
|
|
MachineBasicBlock::iterator begin,
|
|
|
|
MachineBasicBlock::iterator end,
|
2013-08-23 17:48:33 +00:00
|
|
|
unsigned regioninstrs) {
|
|
|
|
ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
|
2012-03-07 05:21:52 +00:00
|
|
|
Sequence.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Print the schedule before exiting the region.
|
|
|
|
void SchedulePostRATDList::exitRegion() {
|
|
|
|
DEBUG({
|
|
|
|
dbgs() << "*** Final schedule ***\n";
|
|
|
|
dumpSchedule();
|
|
|
|
dbgs() << '\n';
|
|
|
|
});
|
|
|
|
ScheduleDAGInstrs::exitRegion();
|
|
|
|
}
|
|
|
|
|
2012-09-11 22:23:19 +00:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2012-03-07 05:21:40 +00:00
|
|
|
/// dumpSchedule - dump the scheduled Sequence.
|
|
|
|
void SchedulePostRATDList::dumpSchedule() const {
|
|
|
|
for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
|
|
|
|
if (SUnit *SU = Sequence[i])
|
|
|
|
SU->dump(this);
|
|
|
|
else
|
|
|
|
dbgs() << "**** NOOP ****\n";
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 19:06:06 +00:00
|
|
|
#endif
|
2012-03-07 05:21:40 +00:00
|
|
|
|
2014-07-15 22:39:58 +00:00
|
|
|
bool PostRAScheduler::enablePostRAScheduler(
|
|
|
|
const TargetSubtargetInfo &ST,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode &Mode,
|
|
|
|
TargetSubtargetInfo::RegClassVector &CriticalPathRCs) const {
|
|
|
|
Mode = ST.getAntiDepBreakMode();
|
|
|
|
ST.getCriticalPathRCs(CriticalPathRCs);
|
|
|
|
return ST.enablePostMachineScheduler() &&
|
|
|
|
OptLevel >= ST.getOptLevelToEnablePostRAScheduler();
|
|
|
|
}
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
|
2014-03-31 17:43:35 +00:00
|
|
|
if (skipOptnoneFunction(*Fn.getFunction()))
|
|
|
|
return false;
|
|
|
|
|
2014-08-05 02:39:49 +00:00
|
|
|
TII = Fn.getSubtarget().getInstrInfo();
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
|
|
|
|
AliasAnalysis *AA = &getAnalysis<AliasAnalysis>();
|
2012-02-08 21:22:53 +00:00
|
|
|
TargetPassConfig *PassConfig = &getAnalysis<TargetPassConfig>();
|
|
|
|
|
2011-06-16 21:56:21 +00:00
|
|
|
RegClassInfo.runOnMachineFunction(Fn);
|
2009-10-10 00:15:38 +00:00
|
|
|
|
2009-10-01 21:46:35 +00:00
|
|
|
// Check for explicit enable/disable of post-ra scheduling.
|
2011-12-14 02:11:42 +00:00
|
|
|
TargetSubtargetInfo::AntiDepBreakMode AntiDepMode =
|
|
|
|
TargetSubtargetInfo::ANTIDEP_NONE;
|
2012-02-22 05:59:10 +00:00
|
|
|
SmallVector<const TargetRegisterClass*, 4> CriticalPathRCs;
|
2009-10-01 21:46:35 +00:00
|
|
|
if (EnablePostRAScheduler.getPosition() > 0) {
|
|
|
|
if (!EnablePostRAScheduler)
|
2009-10-16 06:10:34 +00:00
|
|
|
return false;
|
2009-10-01 21:46:35 +00:00
|
|
|
} else {
|
2009-10-16 06:10:34 +00:00
|
|
|
// Check that post-RA scheduling is enabled for this target.
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
// This may upgrade the AntiDepMode.
|
2015-01-27 07:31:29 +00:00
|
|
|
if (!enablePostRAScheduler(Fn.getSubtarget(), PassConfig->getOptLevel(),
|
2014-07-15 22:39:58 +00:00
|
|
|
AntiDepMode, CriticalPathRCs))
|
2009-10-16 06:10:34 +00:00
|
|
|
return false;
|
2009-10-01 21:46:35 +00:00
|
|
|
}
|
2009-09-30 00:10:16 +00:00
|
|
|
|
2009-10-22 23:19:17 +00:00
|
|
|
// Check for antidep breaking override...
|
|
|
|
if (EnableAntiDepBreaking.getPosition() > 0) {
|
2011-07-01 21:01:15 +00:00
|
|
|
AntiDepMode = (EnableAntiDepBreaking == "all")
|
|
|
|
? TargetSubtargetInfo::ANTIDEP_ALL
|
|
|
|
: ((EnableAntiDepBreaking == "critical")
|
|
|
|
? TargetSubtargetInfo::ANTIDEP_CRITICAL
|
|
|
|
: TargetSubtargetInfo::ANTIDEP_NONE);
|
2009-10-22 23:19:17 +00:00
|
|
|
}
|
|
|
|
|
2010-01-05 01:26:01 +00:00
|
|
|
DEBUG(dbgs() << "PostRAScheduler\n");
|
2007-07-13 17:13:54 +00:00
|
|
|
|
2014-08-20 20:57:26 +00:00
|
|
|
SchedulePostRATDList Scheduler(Fn, MLI, AA, RegClassInfo, AntiDepMode,
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
CriticalPathRCs);
|
2009-01-15 19:20:50 +00:00
|
|
|
|
2007-07-13 17:13:54 +00:00
|
|
|
// Loop over all of the basic blocks
|
|
|
|
for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
|
2008-11-19 23:18:57 +00:00
|
|
|
MBB != MBBe; ++MBB) {
|
2009-09-01 18:34:03 +00: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;
|
2012-08-22 06:07:19 +00:00
|
|
|
dbgs() << "*** DEBUG scheduling " << Fn.getName()
|
2011-11-15 16:27:03 +00:00
|
|
|
<< ":BB#" << MBB->getNumber() << " ***\n";
|
2009-09-01 18:34:03 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-02-10 23:27:53 +00:00
|
|
|
// Initialize register live-range state for scheduling in this block.
|
2012-03-07 23:00:49 +00:00
|
|
|
Scheduler.startBlock(MBB);
|
2009-02-10 23:27:53 +00:00
|
|
|
|
2009-01-16 22:10:20 +00:00
|
|
|
// Schedule each sequence of instructions not interrupted by a label
|
|
|
|
// or anything else that effectively needs to shut down scheduling.
|
2009-02-10 23:27:53 +00:00
|
|
|
MachineBasicBlock::iterator Current = MBB->end();
|
2009-02-11 04:27:20 +00:00
|
|
|
unsigned Count = MBB->size(), CurrentCount = Count;
|
2009-02-10 23:27:53 +00:00
|
|
|
for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
|
2014-03-02 12:27:27 +00:00
|
|
|
MachineInstr *MI = std::prev(I);
|
2013-08-23 17:48:33 +00:00
|
|
|
--Count;
|
Make calls scheduling boundaries post-ra.
Before register allocation, instructions can be moved across calls in
order to reduce register pressure. After register allocation, we don't
gain a lot by moving callee-saved defs across calls. In fact, since the
scheduler doesn't have a good idea how registers are used in the callee,
it can't really make good scheduling decisions.
This changes the schedule in two ways: 1. Latencies to call uses and
defs are no longer accounted for, causing some random shuffling around
calls. This isn't really a problem since those uses and defs are
inaccurate proxies for what happens inside the callee. They don't
represent registers used by the call instruction itself.
2. Instructions are no longer moved across calls. This didn't happen
very often, and the scheduling decision was made on dubious information
anyway.
As with any scheduling change, benchmark numbers shift around a bit,
but there is no positive or negative trend from this change.
This makes the post-ra scheduler 5% faster for ARM targets.
The secret motivation for this patch is the introduction of register
mask operands representing call clobbers. The most efficient way of
handling regmasks in ScheduleDAGInstrs is to model them as barriers for
physreg live ranges, but not for virtreg live ranges. That's fine
pre-ra, but post-ra it would have the same effect as this patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151265 91177308-0d34-0410-b5e6-96231b3b80d8
2012-02-23 17:54:21 +00:00
|
|
|
// Calls are not scheduling boundaries before register allocation, but
|
|
|
|
// post-ra we don't gain anything by scheduling across calls since we
|
|
|
|
// don't need to worry about register pressure.
|
|
|
|
if (MI->isCall() || TII->isSchedulingBoundary(MI, MBB, Fn)) {
|
2013-08-23 17:48:33 +00:00
|
|
|
Scheduler.enterRegion(MBB, I, Current, CurrentCount - Count);
|
|
|
|
Scheduler.setEndIndex(CurrentCount);
|
2012-03-07 23:00:49 +00:00
|
|
|
Scheduler.schedule();
|
2012-03-07 05:21:52 +00:00
|
|
|
Scheduler.exitRegion();
|
2010-05-01 00:01:06 +00:00
|
|
|
Scheduler.EmitSchedule();
|
2009-02-10 23:27:53 +00:00
|
|
|
Current = MI;
|
2013-08-23 17:48:33 +00:00
|
|
|
CurrentCount = Count;
|
2009-03-10 18:10:43 +00:00
|
|
|
Scheduler.Observe(MI, CurrentCount);
|
2009-01-16 22:10:20 +00:00
|
|
|
}
|
2009-02-10 23:27:53 +00:00
|
|
|
I = MI;
|
2011-12-14 02:11:42 +00:00
|
|
|
if (MI->isBundle())
|
|
|
|
Count -= MI->getBundleSize();
|
2009-02-11 04:27:20 +00:00
|
|
|
}
|
|
|
|
assert(Count == 0 && "Instruction count mismatch!");
|
2009-03-11 09:04:34 +00:00
|
|
|
assert((MBB->begin() == Current || CurrentCount != 0) &&
|
2009-03-10 18:10:43 +00:00
|
|
|
"Instruction count mismatch!");
|
2012-03-07 05:21:52 +00:00
|
|
|
Scheduler.enterRegion(MBB, MBB->begin(), Current, CurrentCount);
|
2013-08-23 17:48:33 +00:00
|
|
|
Scheduler.setEndIndex(CurrentCount);
|
2012-03-07 23:00:49 +00:00
|
|
|
Scheduler.schedule();
|
2012-03-07 05:21:52 +00:00
|
|
|
Scheduler.exitRegion();
|
2010-05-01 00:01:06 +00:00
|
|
|
Scheduler.EmitSchedule();
|
2009-02-10 23:27:53 +00:00
|
|
|
|
|
|
|
// Clean up register live-range state.
|
2012-03-07 23:00:49 +00:00
|
|
|
Scheduler.finishBlock();
|
2009-08-25 17:03:05 +00:00
|
|
|
|
2009-09-03 22:15:25 +00:00
|
|
|
// Update register kills
|
2013-12-28 21:56:55 +00:00
|
|
|
Scheduler.fixupKills(MBB);
|
2008-11-19 23:18:57 +00:00
|
|
|
}
|
2007-07-13 17:13:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2009-02-10 23:27:53 +00:00
|
|
|
/// StartBlock - Initialize register live-range state for scheduling in
|
|
|
|
/// this block.
|
|
|
|
///
|
2012-03-07 23:00:49 +00:00
|
|
|
void SchedulePostRATDList::startBlock(MachineBasicBlock *BB) {
|
2009-02-10 23:27:53 +00:00
|
|
|
// Call the superclass.
|
2012-03-07 23:00:49 +00:00
|
|
|
ScheduleDAGInstrs::startBlock(BB);
|
2009-02-10 23:27:53 +00:00
|
|
|
|
2009-10-26 16:59:04 +00:00
|
|
|
// Reset the hazard recognizer and anti-dep breaker.
|
2009-08-10 15:55:25 +00:00
|
|
|
HazardRec->Reset();
|
2014-04-14 00:51:57 +00:00
|
|
|
if (AntiDepBreak)
|
2009-10-26 16:59:04 +00:00
|
|
|
AntiDepBreak->StartBlock(BB);
|
2009-02-10 23:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Schedule - Schedule the instruction range using list scheduling.
|
|
|
|
///
|
2012-03-07 23:00:49 +00:00
|
|
|
void SchedulePostRATDList::schedule() {
|
2008-12-23 18:36:58 +00:00
|
|
|
// Build the scheduling graph.
|
2012-03-07 23:00:49 +00:00
|
|
|
buildSchedGraph(AA);
|
2008-11-19 23:18:57 +00:00
|
|
|
|
2014-04-14 00:51:57 +00:00
|
|
|
if (AntiDepBreak) {
|
2010-05-14 21:19:48 +00:00
|
|
|
unsigned Broken =
|
2012-03-09 04:29:02 +00:00
|
|
|
AntiDepBreak->BreakAntiDependencies(SUnits, RegionBegin, RegionEnd,
|
|
|
|
EndIndex, DbgValues);
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2009-11-20 19:32:48 +00:00
|
|
|
if (Broken != 0) {
|
2008-11-25 00:52:40 +00: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.
|
2012-03-07 05:21:52 +00:00
|
|
|
ScheduleDAG::clearDAG();
|
2012-03-07 23:00:49 +00:00
|
|
|
buildSchedGraph(AA);
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2009-10-26 16:59:04 +00:00
|
|
|
NumFixedAnti += Broken;
|
2008-11-25 00:52:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-05 01:26:01 +00:00
|
|
|
DEBUG(dbgs() << "********** List Scheduling **********\n");
|
2009-08-10 15:55:25 +00:00
|
|
|
DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
|
|
|
|
SUnits[su].dumpAll(this));
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
AvailableQueue.initNodes(SUnits);
|
2009-11-20 19:32:48 +00:00
|
|
|
ListScheduleTopDown();
|
2008-11-19 23:18:57 +00:00
|
|
|
AvailableQueue.releaseState();
|
|
|
|
}
|
|
|
|
|
2009-02-10 23:27:53 +00:00
|
|
|
/// Observe - Update liveness information to account for the current
|
|
|
|
/// instruction, which will not be scheduled.
|
|
|
|
///
|
2009-02-11 04:27:20 +00:00
|
|
|
void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
|
2014-04-14 00:51:57 +00:00
|
|
|
if (AntiDepBreak)
|
2012-03-07 23:00:52 +00:00
|
|
|
AntiDepBreak->Observe(MI, Count, EndIndex);
|
2009-02-10 23:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// FinishBlock - Clean up register live-range state.
|
|
|
|
///
|
2012-03-07 23:00:49 +00:00
|
|
|
void SchedulePostRATDList::finishBlock() {
|
2014-04-14 00:51:57 +00:00
|
|
|
if (AntiDepBreak)
|
2009-10-26 16:59:04 +00:00
|
|
|
AntiDepBreak->FinishBlock();
|
2009-02-10 23:27:53 +00:00
|
|
|
|
|
|
|
// Call the superclass.
|
2012-03-07 23:00:49 +00:00
|
|
|
ScheduleDAGInstrs::finishBlock();
|
2009-02-10 23:27:53 +00:00
|
|
|
}
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Top-Down Scheduling
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
|
2012-11-12 19:28:57 +00:00
|
|
|
/// the PendingQueue if the count reaches zero.
|
2009-11-20 19:32:48 +00:00
|
|
|
void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
|
2008-12-09 22:54:47 +00:00
|
|
|
SUnit *SuccSU = SuccEdge->getSUnit();
|
2009-09-30 20:15:38 +00:00
|
|
|
|
2012-11-13 02:35:06 +00:00
|
|
|
if (SuccEdge->isWeak()) {
|
2012-11-12 19:28:57 +00:00
|
|
|
--SuccSU->WeakPredsLeft;
|
|
|
|
return;
|
|
|
|
}
|
2008-11-19 23:18:57 +00:00
|
|
|
#ifndef NDEBUG
|
2009-09-30 20:15:38 +00:00
|
|
|
if (SuccSU->NumPredsLeft == 0) {
|
2010-01-05 01:26:01 +00:00
|
|
|
dbgs() << "*** Scheduling failed! ***\n";
|
2008-11-19 23:18:57 +00:00
|
|
|
SuccSU->dump(this);
|
2010-01-05 01:26:01 +00:00
|
|
|
dbgs() << " has been released too many times!\n";
|
2014-04-14 00:51:57 +00:00
|
|
|
llvm_unreachable(nullptr);
|
2008-11-19 23:18:57 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-09-30 20:15:38 +00:00
|
|
|
--SuccSU->NumPredsLeft;
|
|
|
|
|
2011-05-06 18:14:32 +00:00
|
|
|
// Standard scheduler algorithms will recompute the depth of the successor
|
2011-05-06 17:09:08 +00:00
|
|
|
// here as such:
|
|
|
|
// SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
|
|
|
|
//
|
|
|
|
// However, we lazily compute node depth instead. Note that
|
|
|
|
// ScheduleNodeTopDown has already updated the depth of this node which causes
|
|
|
|
// all descendents to be marked dirty. Setting the successor depth explicitly
|
|
|
|
// here would cause depth to be recomputed for all its ancestors. If the
|
|
|
|
// successor is not yet ready (because of a transitively redundant edge) then
|
|
|
|
// this causes depth computation to be quadratic in the size of the DAG.
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2009-02-10 23:27:53 +00: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-19 23:18:57 +00:00
|
|
|
PendingQueue.push_back(SuccSU);
|
2009-02-10 23:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ReleaseSuccessors - Call ReleaseSucc on each of SU's successors.
|
2009-11-20 19:32:48 +00:00
|
|
|
void SchedulePostRATDList::ReleaseSuccessors(SUnit *SU) {
|
2009-02-10 23:27:53 +00:00
|
|
|
for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
|
2009-11-03 20:57:50 +00:00
|
|
|
I != E; ++I) {
|
2009-11-20 19:32:48 +00:00
|
|
|
ReleaseSucc(SU, &*I);
|
2009-11-03 20:57:50 +00:00
|
|
|
}
|
2008-11-19 23:18:57 +00: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 19:32:48 +00:00
|
|
|
void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
|
2010-01-05 01:26:01 +00:00
|
|
|
DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
|
2008-11-19 23:18:57 +00:00
|
|
|
DEBUG(SU->dump(this));
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
Sequence.push_back(SU);
|
2010-05-14 21:19:48 +00:00
|
|
|
assert(CurCycle >= SU->getDepth() &&
|
2009-11-03 20:57:50 +00:00
|
|
|
"Node scheduled above its depth!");
|
2009-11-20 19:32:48 +00:00
|
|
|
SU->setDepthToAtLeast(CurCycle);
|
2008-11-19 23:18:57 +00:00
|
|
|
|
2009-11-20 19:32:48 +00:00
|
|
|
ReleaseSuccessors(SU);
|
2008-11-19 23:18:57 +00:00
|
|
|
SU->isScheduled = true;
|
2012-03-07 23:00:49 +00:00
|
|
|
AvailableQueue.scheduledNode(SU);
|
2008-11-19 23:18:57 +00:00
|
|
|
}
|
|
|
|
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
/// emitNoop - Add a noop to the current instruction sequence.
|
|
|
|
void SchedulePostRATDList::emitNoop(unsigned CurCycle) {
|
|
|
|
DEBUG(dbgs() << "*** Emitting noop in cycle " << CurCycle << '\n');
|
|
|
|
HazardRec->EmitNoop();
|
2014-04-14 00:51:57 +00:00
|
|
|
Sequence.push_back(nullptr); // NULL here means noop
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
++NumNoops;
|
|
|
|
}
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
/// ListScheduleTopDown - The main loop of list scheduling for top-down
|
|
|
|
/// schedulers.
|
2009-11-20 19:32:48 +00:00
|
|
|
void SchedulePostRATDList::ListScheduleTopDown() {
|
2008-11-19 23:18:57 +00:00
|
|
|
unsigned CurCycle = 0;
|
2010-05-14 21:19:48 +00:00
|
|
|
|
2009-11-03 20:57:50 +00: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-10 23:27:53 +00:00
|
|
|
// Release any successors of the special Entry node.
|
2009-11-20 19:32:48 +00:00
|
|
|
ReleaseSuccessors(&EntrySU);
|
2009-02-10 23:27:53 +00:00
|
|
|
|
2009-11-20 19:32:48 +00:00
|
|
|
// Add all leaves to Available queue.
|
2008-11-19 23:18:57 +00:00
|
|
|
for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
|
|
|
|
// It is available if it has no predecessors.
|
2012-11-12 19:28:57 +00:00
|
|
|
if (!SUnits[i].NumPredsLeft && !SUnits[i].isAvailable) {
|
2008-11-19 23:18:57 +00:00
|
|
|
AvailableQueue.push(&SUnits[i]);
|
|
|
|
SUnits[i].isAvailable = true;
|
|
|
|
}
|
|
|
|
}
|
2009-02-10 23:27:53 +00:00
|
|
|
|
2009-08-12 21:47:46 +00: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 12:10:17 +00:00
|
|
|
bool CycleHasInsts = false;
|
2009-08-12 21:47:46 +00:00
|
|
|
|
2008-11-19 23:18:57 +00: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 01:33:36 +00:00
|
|
|
std::vector<SUnit*> NotReady;
|
2008-11-19 23:18:57 +00: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 03:25:46 +00:00
|
|
|
unsigned MinDepth = ~0u;
|
2008-11-19 23:18:57 +00:00
|
|
|
for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
|
2009-11-20 19:32:48 +00:00
|
|
|
if (PendingQueue[i]->getDepth() <= CurCycle) {
|
2008-11-19 23:18:57 +00:00
|
|
|
AvailableQueue.push(PendingQueue[i]);
|
|
|
|
PendingQueue[i]->isAvailable = true;
|
|
|
|
PendingQueue[i] = PendingQueue.back();
|
|
|
|
PendingQueue.pop_back();
|
|
|
|
--i; --e;
|
2009-11-20 19:32:48 +00:00
|
|
|
} else if (PendingQueue[i]->getDepth() < MinDepth)
|
|
|
|
MinDepth = PendingQueue[i]->getDepth();
|
2008-11-19 23:18:57 +00:00
|
|
|
}
|
2009-08-11 17:35:23 +00:00
|
|
|
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
DEBUG(dbgs() << "\n*** Examining Available\n"; AvailableQueue.dump(this));
|
2009-08-11 17:35:23 +00:00
|
|
|
|
2014-04-14 00:51:57 +00:00
|
|
|
SUnit *FoundSUnit = nullptr, *NotPreferredSUnit = nullptr;
|
2009-01-16 01:33:36 +00:00
|
|
|
bool HasNoopHazards = false;
|
|
|
|
while (!AvailableQueue.empty()) {
|
|
|
|
SUnit *CurSUnit = AvailableQueue.pop();
|
|
|
|
|
|
|
|
ScheduleHazardRecognizer::HazardType HT =
|
Various bits of framework needed for precise machine-level selection
DAG scheduling during isel. Most new functionality is currently
guarded by -enable-sched-cycles and -enable-sched-hazard.
Added InstrItineraryData::IssueWidth field, currently derived from
ARM itineraries, but could be initialized differently on other targets.
Added ScheduleHazardRecognizer::MaxLookAhead to indicate whether it is
active, and if so how many cycles of state it holds.
Added SchedulingPriorityQueue::HasReadyFilter to allowing gating entry
into the scheduler's available queue.
ScoreboardHazardRecognizer now accesses the ScheduleDAG in order to
get information about it's SUnits, provides RecedeCycle for bottom-up
scheduling, correctly computes scoreboard depth, tracks IssueCount, and
considers potential stall cycles when checking for hazards.
ScheduleDAGRRList now models machine cycles and hazards (under
flags). It tracks MinAvailableCycle, drives the hazard recognizer and
priority queue's ready filter, manages a new PendingQueue, properly
accounts for stall cycles, etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122541 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-24 05:03:26 +00:00
|
|
|
HazardRec->getHazardType(CurSUnit, 0/*no stalls*/);
|
2009-01-16 01:33:36 +00:00
|
|
|
if (HT == ScheduleHazardRecognizer::NoHazard) {
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
if (HazardRec->ShouldPreferAnother(CurSUnit)) {
|
|
|
|
if (!NotPreferredSUnit) {
|
2014-10-29 15:23:11 +00:00
|
|
|
// If this is the first non-preferred node for this cycle, then
|
|
|
|
// record it and continue searching for a preferred node. If this
|
|
|
|
// is not the first non-preferred node, then treat it as though
|
|
|
|
// there had been a hazard.
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
NotPreferredSUnit = CurSUnit;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
FoundSUnit = CurSUnit;
|
|
|
|
break;
|
|
|
|
}
|
2009-01-16 01:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remember if this is a noop hazard.
|
|
|
|
HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
|
|
|
|
|
|
|
|
NotReady.push_back(CurSUnit);
|
|
|
|
}
|
|
|
|
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
// If we have a non-preferred node, push it back onto the available list.
|
|
|
|
// If we did not find a preferred node, then schedule this first
|
|
|
|
// non-preferred node.
|
|
|
|
if (NotPreferredSUnit) {
|
|
|
|
if (!FoundSUnit) {
|
|
|
|
DEBUG(dbgs() << "*** Will schedule a non-preferred instruction...\n");
|
|
|
|
FoundSUnit = NotPreferredSUnit;
|
|
|
|
} else {
|
|
|
|
AvailableQueue.push(NotPreferredSUnit);
|
|
|
|
}
|
|
|
|
|
2014-04-14 00:51:57 +00:00
|
|
|
NotPreferredSUnit = nullptr;
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 01:33:36 +00:00
|
|
|
// Add the nodes that aren't ready back onto the available list.
|
|
|
|
if (!NotReady.empty()) {
|
|
|
|
AvailableQueue.push_all(NotReady);
|
|
|
|
NotReady.clear();
|
|
|
|
}
|
|
|
|
|
2009-11-03 20:57:50 +00:00
|
|
|
// If we found a node to schedule...
|
2008-11-19 23:18:57 +00:00
|
|
|
if (FoundSUnit) {
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
// If we need to emit noops prior to this instruction, then do so.
|
|
|
|
unsigned NumPreNoops = HazardRec->PreEmitNoops(FoundSUnit);
|
|
|
|
for (unsigned i = 0; i != NumPreNoops; ++i)
|
|
|
|
emitNoop(CurCycle);
|
|
|
|
|
2009-11-03 20:57:50 +00:00
|
|
|
// ... schedule the node...
|
2009-11-20 19:32:48 +00:00
|
|
|
ScheduleNodeTopDown(FoundSUnit, CurCycle);
|
2009-01-16 01:33:36 +00:00
|
|
|
HazardRec->EmitInstruction(FoundSUnit);
|
2009-09-06 12:10:17 +00:00
|
|
|
CycleHasInsts = true;
|
2011-06-01 03:27:56 +00:00
|
|
|
if (HazardRec->atIssueLimit()) {
|
|
|
|
DEBUG(dbgs() << "*** Max instructions per cycle " << CurCycle << '\n');
|
|
|
|
HazardRec->AdvanceCycle();
|
|
|
|
++CurCycle;
|
|
|
|
CycleHasInsts = false;
|
|
|
|
}
|
2009-01-16 01:33:36 +00:00
|
|
|
} else {
|
2009-09-06 12:10:17 +00:00
|
|
|
if (CycleHasInsts) {
|
2010-01-05 01:26:01 +00:00
|
|
|
DEBUG(dbgs() << "*** Finished cycle " << CurCycle << '\n');
|
2009-08-12 21:47:46 +00:00
|
|
|
HazardRec->AdvanceCycle();
|
|
|
|
} else if (!HasNoopHazards) {
|
|
|
|
// Otherwise, we have a pipeline stall, but no other problem,
|
|
|
|
// just advance the current cycle and try again.
|
2010-01-05 01:26:01 +00:00
|
|
|
DEBUG(dbgs() << "*** Stall in cycle " << CurCycle << '\n');
|
2009-08-12 21:47:46 +00:00
|
|
|
HazardRec->AdvanceCycle();
|
2009-11-20 19:32:48 +00:00
|
|
|
++NumStalls;
|
2009-08-12 21:47:46 +00: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.
|
Add two additional hazard recognizer functions
This adds two additional functions to the hazard recognizer interface. These
are optional (in the sense that the default implementations preserve the
current behavior), and used by the post-RA scheduler. Upcoming commits will use
this functionality in order to improve dispatch-group formation on the POWER7
and related cores. Dispatch groups are an odd construct: sometimes we need to
insert nops to force a new one to start (for performance reasons), and some
instructions need to appear in certain positions within a group, but the groups
are not fundamentally cycle based (they can contain instructions with data
dependencies with non-trivial latencies).
Motivation:
unsigned PreEmitNoops(SUnit *) - Used to force the post-RA scheduler to insert
nops to force a new dispatch group to begin. We already have a NoopHazard, and
this is also still needed. However, NoopHazard only causes a nop to be inserted
if there are no other available instructions, and so is not always sufficient.
The number of nops to insert depends on state that only the hazard recognizer
has, so a general callback is necessary.
bool ShouldPreferAnother(SUnit *) - Used to avoid scheduling instructions that
would start a new dispatch group when others are available that could be part
of the current dispatch group. In this case, we don't want to issue nops,
because the non-preferred instruction will implicitly start a new dispatch
group regardless.
Although the motivation for these functions is driven by the PowerPC backend,
they are completely general.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197084 91177308-0d34-0410-b5e6-96231b3b80d8
2013-12-11 22:33:43 +00:00
|
|
|
emitNoop(CurCycle);
|
2009-08-12 21:47:46 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 01:33:36 +00:00
|
|
|
++CurCycle;
|
2009-09-06 12:10:17 +00:00
|
|
|
CycleHasInsts = false;
|
2008-11-19 23:18:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2012-03-07 05:21:36 +00:00
|
|
|
unsigned ScheduledNodes = VerifyScheduledDAG(/*isBottomUp=*/false);
|
|
|
|
unsigned Noops = 0;
|
|
|
|
for (unsigned i = 0, e = Sequence.size(); i != e; ++i)
|
|
|
|
if (!Sequence[i])
|
|
|
|
++Noops;
|
|
|
|
assert(Sequence.size() - Noops == ScheduledNodes &&
|
|
|
|
"The number of nodes scheduled doesn't match the expected number!");
|
|
|
|
#endif // NDEBUG
|
2008-11-19 23:18:57 +00:00
|
|
|
}
|
2012-03-07 05:21:44 +00:00
|
|
|
|
|
|
|
// EmitSchedule - Emit the machine code in scheduled order.
|
|
|
|
void SchedulePostRATDList::EmitSchedule() {
|
2012-03-09 04:29:02 +00:00
|
|
|
RegionBegin = RegionEnd;
|
2012-03-07 05:21:44 +00:00
|
|
|
|
|
|
|
// If first instruction was a DBG_VALUE then put it back.
|
|
|
|
if (FirstDbgValue)
|
2012-03-09 04:29:02 +00:00
|
|
|
BB->splice(RegionEnd, BB, FirstDbgValue);
|
2012-03-07 05:21:44 +00:00
|
|
|
|
|
|
|
// Then re-insert them according to the given schedule.
|
|
|
|
for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
|
|
|
|
if (SUnit *SU = Sequence[i])
|
2012-03-09 04:29:02 +00:00
|
|
|
BB->splice(RegionEnd, BB, SU->getInstr());
|
2012-03-07 05:21:44 +00:00
|
|
|
else
|
|
|
|
// Null SUnit* is a noop.
|
2012-03-09 04:29:02 +00:00
|
|
|
TII->insertNoop(*BB, RegionEnd);
|
2012-03-07 05:21:44 +00:00
|
|
|
|
|
|
|
// Update the Begin iterator, as the first instruction in the block
|
|
|
|
// may have been scheduled later.
|
|
|
|
if (i == 0)
|
2014-03-02 12:27:27 +00:00
|
|
|
RegionBegin = std::prev(RegionEnd);
|
2012-03-07 05:21:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reinsert any remaining debug_values.
|
|
|
|
for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
|
|
|
|
DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
|
2014-03-02 12:27:27 +00:00
|
|
|
std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
|
2012-03-07 05:21:44 +00:00
|
|
|
MachineInstr *DbgValue = P.first;
|
|
|
|
MachineBasicBlock::iterator OrigPrivMI = P.second;
|
|
|
|
BB->splice(++OrigPrivMI, BB, DbgValue);
|
|
|
|
}
|
|
|
|
DbgValues.clear();
|
2014-04-14 00:51:57 +00:00
|
|
|
FirstDbgValue = nullptr;
|
2012-03-07 05:21:44 +00:00
|
|
|
}
|