2010-12-05 22:04:16 +00:00
|
|
|
//===-- ARMHazardRecognizer.h - ARM Hazard Recognizers ----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines hazard recognizers for scheduling ARM functions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_ARMHAZARDRECOGNIZER_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_ARMHAZARDRECOGNIZER_H
|
2010-12-05 22:04:16 +00:00
|
|
|
|
2010-12-08 20:04:29 +00:00
|
|
|
#include "llvm/CodeGen/ScoreboardHazardRecognizer.h"
|
2010-12-05 22:04:16 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class ARMBaseInstrInfo;
|
|
|
|
class ARMBaseRegisterInfo;
|
|
|
|
class ARMSubtarget;
|
|
|
|
class MachineInstr;
|
|
|
|
|
2011-11-29 19:33:49 +00:00
|
|
|
/// ARMHazardRecognizer handles special constraints that are not expressed in
|
|
|
|
/// the scheduling itinerary. This is only used during postRA scheduling. The
|
|
|
|
/// ARM preRA scheduler uses an unspecialized instance of the
|
|
|
|
/// ScoreboardHazardRecognizer.
|
2010-12-08 20:04:29 +00:00
|
|
|
class ARMHazardRecognizer : public ScoreboardHazardRecognizer {
|
2010-12-05 22:04:16 +00:00
|
|
|
MachineInstr *LastMI;
|
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
|
|
|
unsigned FpMLxStalls;
|
2010-12-05 22:04:16 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
ARMHazardRecognizer(const InstrItineraryData *ItinData,
|
2013-06-07 05:54:19 +00:00
|
|
|
const ScheduleDAG *DAG)
|
|
|
|
: ScoreboardHazardRecognizer(ItinData, DAG, "post-RA-sched"),
|
2014-04-28 04:05:08 +00:00
|
|
|
LastMI(nullptr) {}
|
2010-12-05 22:04:16 +00:00
|
|
|
|
2014-03-10 02:09:33 +00:00
|
|
|
HazardType getHazardType(SUnit *SU, int Stalls) override;
|
|
|
|
void Reset() override;
|
|
|
|
void EmitInstruction(SUnit *SU) override;
|
|
|
|
void AdvanceCycle() override;
|
|
|
|
void RecedeCycle() override;
|
2010-12-05 22:04:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|