2006-03-07 14:32:48 +08:00
|
|
|
//===-- PPCHazardRecognizers.cpp - PowerPC Hazard Recognizer Impls --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-03-07 14:32:48 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements hazard recognizers for scheduling on PowerPC processors.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "PPCHazardRecognizers.h"
|
|
|
|
#include "PPC.h"
|
2006-03-12 17:13:49 +08:00
|
|
|
#include "PPCInstrInfo.h"
|
2013-12-12 08:19:11 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2009-01-16 06:18:12 +08:00
|
|
|
#include "llvm/CodeGen/ScheduleDAG.h"
|
2006-03-07 14:32:48 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-12 04:10:48 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-08-23 14:49:22 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2006-03-07 14:32:48 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 10:41:26 +08:00
|
|
|
#define DEBUG_TYPE "pre-RA-sched"
|
|
|
|
|
2013-12-12 08:19:11 +08:00
|
|
|
bool PPCDispatchGroupSBHazardRecognizer::isLoadAfterStore(SUnit *SU) {
|
|
|
|
// FIXME: Move this.
|
|
|
|
if (isBCTRAfterSet(SU))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const MCInstrDesc *MCID = DAG->getInstrDesc(SU);
|
|
|
|
if (!MCID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!MCID->mayLoad())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// SU is a load; for any predecessors in this dispatch group, that are stores,
|
|
|
|
// and with which we have an ordering dependency, return true.
|
|
|
|
for (unsigned i = 0, ie = (unsigned) SU->Preds.size(); i != ie; ++i) {
|
|
|
|
const MCInstrDesc *PredMCID = DAG->getInstrDesc(SU->Preds[i].getSUnit());
|
|
|
|
if (!PredMCID || !PredMCID->mayStore())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!SU->Preds[i].isNormalMemory() && !SU->Preds[i].isBarrier())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (unsigned j = 0, je = CurGroup.size(); j != je; ++j)
|
|
|
|
if (SU->Preds[i].getSUnit() == CurGroup[j])
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PPCDispatchGroupSBHazardRecognizer::isBCTRAfterSet(SUnit *SU) {
|
|
|
|
const MCInstrDesc *MCID = DAG->getInstrDesc(SU);
|
|
|
|
if (!MCID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!MCID->isBranch())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// SU is a branch; for any predecessors in this dispatch group, with which we
|
|
|
|
// have a data dependence and set the counter register, return true.
|
|
|
|
for (unsigned i = 0, ie = (unsigned) SU->Preds.size(); i != ie; ++i) {
|
|
|
|
const MCInstrDesc *PredMCID = DAG->getInstrDesc(SU->Preds[i].getSUnit());
|
|
|
|
if (!PredMCID || PredMCID->getSchedClass() != PPC::Sched::IIC_SprMTSPR)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (SU->Preds[i].isCtrl())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (unsigned j = 0, je = CurGroup.size(); j != je; ++j)
|
|
|
|
if (SU->Preds[i].getSUnit() == CurGroup[j])
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Remove this when we don't need this:
|
|
|
|
namespace llvm { namespace PPC { extern int getNonRecordFormOpcode(uint16_t); } }
|
|
|
|
|
|
|
|
// FIXME: A lot of code in PPCDispatchGroupSBHazardRecognizer is P7 specific.
|
|
|
|
|
|
|
|
bool PPCDispatchGroupSBHazardRecognizer::mustComeFirst(const MCInstrDesc *MCID,
|
|
|
|
unsigned &NSlots) {
|
|
|
|
// FIXME: Indirectly, this information is contained in the itinerary, and
|
|
|
|
// we should derive it from there instead of separately specifying it
|
|
|
|
// here.
|
|
|
|
unsigned IIC = MCID->getSchedClass();
|
|
|
|
switch (IIC) {
|
|
|
|
default:
|
|
|
|
NSlots = 1;
|
|
|
|
break;
|
|
|
|
case PPC::Sched::IIC_IntDivW:
|
|
|
|
case PPC::Sched::IIC_IntDivD:
|
|
|
|
case PPC::Sched::IIC_LdStLoadUpd:
|
|
|
|
case PPC::Sched::IIC_LdStLDU:
|
|
|
|
case PPC::Sched::IIC_LdStLFDU:
|
|
|
|
case PPC::Sched::IIC_LdStLFDUX:
|
|
|
|
case PPC::Sched::IIC_LdStLHA:
|
|
|
|
case PPC::Sched::IIC_LdStLHAU:
|
|
|
|
case PPC::Sched::IIC_LdStLWA:
|
|
|
|
case PPC::Sched::IIC_LdStSTDU:
|
|
|
|
case PPC::Sched::IIC_LdStSTFDU:
|
|
|
|
NSlots = 2;
|
|
|
|
break;
|
|
|
|
case PPC::Sched::IIC_LdStLoadUpdX:
|
|
|
|
case PPC::Sched::IIC_LdStLDUX:
|
|
|
|
case PPC::Sched::IIC_LdStLHAUX:
|
|
|
|
case PPC::Sched::IIC_LdStLWARX:
|
|
|
|
case PPC::Sched::IIC_LdStLDARX:
|
|
|
|
case PPC::Sched::IIC_LdStSTDUX:
|
|
|
|
case PPC::Sched::IIC_LdStSTDCX:
|
|
|
|
case PPC::Sched::IIC_LdStSTWCX:
|
|
|
|
case PPC::Sched::IIC_BrMCRX: // mtcr
|
|
|
|
// FIXME: Add sync/isync (here and in the itinerary).
|
|
|
|
NSlots = 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: record-form instructions need a different itinerary class.
|
|
|
|
if (NSlots == 1 && PPC::getNonRecordFormOpcode(MCID->getOpcode()) != -1)
|
|
|
|
NSlots = 2;
|
|
|
|
|
|
|
|
switch (IIC) {
|
|
|
|
default:
|
|
|
|
// All multi-slot instructions must come first.
|
|
|
|
return NSlots > 1;
|
2014-01-03 05:38:26 +08:00
|
|
|
case PPC::Sched::IIC_BrCR: // cr logicals
|
2013-12-12 08:19:11 +08:00
|
|
|
case PPC::Sched::IIC_SprMFCR:
|
|
|
|
case PPC::Sched::IIC_SprMFCRF:
|
|
|
|
case PPC::Sched::IIC_SprMTSPR:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScheduleHazardRecognizer::HazardType
|
|
|
|
PPCDispatchGroupSBHazardRecognizer::getHazardType(SUnit *SU, int Stalls) {
|
|
|
|
if (Stalls == 0 && isLoadAfterStore(SU))
|
|
|
|
return NoopHazard;
|
|
|
|
|
|
|
|
return ScoreboardHazardRecognizer::getHazardType(SU, Stalls);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PPCDispatchGroupSBHazardRecognizer::ShouldPreferAnother(SUnit *SU) {
|
|
|
|
const MCInstrDesc *MCID = DAG->getInstrDesc(SU);
|
|
|
|
unsigned NSlots;
|
|
|
|
if (MCID && mustComeFirst(MCID, NSlots) && CurSlots)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return ScoreboardHazardRecognizer::ShouldPreferAnother(SU);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned PPCDispatchGroupSBHazardRecognizer::PreEmitNoops(SUnit *SU) {
|
|
|
|
// We only need to fill out a maximum of 5 slots here: The 6th slot could
|
|
|
|
// only be a second branch, and otherwise the next instruction will start a
|
|
|
|
// new group.
|
|
|
|
if (isLoadAfterStore(SU) && CurSlots < 6) {
|
|
|
|
unsigned Directive =
|
2015-01-31 06:02:31 +08:00
|
|
|
DAG->MF.getSubtarget<PPCSubtarget>().getDarwinDirective();
|
2013-12-12 08:19:11 +08:00
|
|
|
// If we're using a special group-terminating nop, then we need only one.
|
2016-05-10 02:54:58 +08:00
|
|
|
// FIXME: the same for P9 as previous gen until POWER9 scheduling is ready
|
2014-06-26 21:36:19 +08:00
|
|
|
if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 ||
|
2016-05-10 02:54:58 +08:00
|
|
|
Directive == PPC::DIR_PWR8 || Directive == PPC::DIR_PWR9)
|
2013-12-12 08:19:11 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 5 - CurSlots;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ScoreboardHazardRecognizer::PreEmitNoops(SU);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCDispatchGroupSBHazardRecognizer::EmitInstruction(SUnit *SU) {
|
|
|
|
const MCInstrDesc *MCID = DAG->getInstrDesc(SU);
|
|
|
|
if (MCID) {
|
|
|
|
if (CurSlots == 5 || (MCID->isBranch() && CurBranches == 1)) {
|
|
|
|
CurGroup.clear();
|
|
|
|
CurSlots = CurBranches = 0;
|
|
|
|
} else {
|
|
|
|
DEBUG(dbgs() << "**** Adding to dispatch group: SU(" <<
|
|
|
|
SU->NodeNum << "): ");
|
|
|
|
DEBUG(DAG->dumpNode(SU));
|
|
|
|
|
|
|
|
unsigned NSlots;
|
|
|
|
bool MustBeFirst = mustComeFirst(MCID, NSlots);
|
|
|
|
|
|
|
|
// If this instruction must come first, but does not, then it starts a
|
|
|
|
// new group.
|
|
|
|
if (MustBeFirst && CurSlots) {
|
|
|
|
CurSlots = CurBranches = 0;
|
|
|
|
CurGroup.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
CurSlots += NSlots;
|
|
|
|
CurGroup.push_back(SU);
|
|
|
|
|
|
|
|
if (MCID->isBranch())
|
|
|
|
++CurBranches;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ScoreboardHazardRecognizer::EmitInstruction(SU);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCDispatchGroupSBHazardRecognizer::AdvanceCycle() {
|
|
|
|
return ScoreboardHazardRecognizer::AdvanceCycle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCDispatchGroupSBHazardRecognizer::RecedeCycle() {
|
|
|
|
llvm_unreachable("Bottom-up scheduling not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCDispatchGroupSBHazardRecognizer::Reset() {
|
|
|
|
CurGroup.clear();
|
|
|
|
CurSlots = CurBranches = 0;
|
|
|
|
return ScoreboardHazardRecognizer::Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCDispatchGroupSBHazardRecognizer::EmitNoop() {
|
|
|
|
unsigned Directive =
|
2015-01-31 06:02:31 +08:00
|
|
|
DAG->MF.getSubtarget<PPCSubtarget>().getDarwinDirective();
|
2013-12-12 08:19:11 +08:00
|
|
|
// If the group has now filled all of its slots, or if we're using a special
|
|
|
|
// group-terminating nop, the group is complete.
|
2016-05-10 02:54:58 +08:00
|
|
|
// FIXME: the same for P9 as previous gen until POWER9 scheduling is ready
|
2013-12-12 08:19:11 +08:00
|
|
|
if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 ||
|
2016-05-10 02:54:58 +08:00
|
|
|
Directive == PPC::DIR_PWR8 || Directive == PPC::DIR_PWR8 ||
|
|
|
|
CurSlots == 6) {
|
2013-12-12 08:19:11 +08:00
|
|
|
CurGroup.clear();
|
|
|
|
CurSlots = CurBranches = 0;
|
|
|
|
} else {
|
2014-04-25 13:30:21 +08:00
|
|
|
CurGroup.push_back(nullptr);
|
2013-12-12 08:19:11 +08:00
|
|
|
++CurSlots;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 12:03:49 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-03-07 14:32:48 +08:00
|
|
|
// PowerPC 970 Hazard Recognizer
|
|
|
|
//
|
2006-03-07 14:44:19 +08:00
|
|
|
// This models the dispatch group formation of the PPC970 processor. Dispatch
|
2006-03-12 17:13:49 +08:00
|
|
|
// groups are bundles of up to five instructions that can contain various mixes
|
2010-12-24 12:28:06 +08:00
|
|
|
// of instructions. The PPC970 can dispatch a peak of 4 non-branch and one
|
2006-03-12 17:13:49 +08:00
|
|
|
// branch instruction per-cycle.
|
2006-03-07 14:44:19 +08:00
|
|
|
//
|
2006-03-12 17:13:49 +08:00
|
|
|
// There are a number of restrictions to dispatch group formation: some
|
|
|
|
// instructions can only be issued in the first slot of a dispatch group, & some
|
|
|
|
// instructions fill an entire dispatch group. Additionally, only branches can
|
|
|
|
// issue in the 5th (last) slot.
|
2006-03-07 14:44:19 +08:00
|
|
|
//
|
|
|
|
// Finally, there are a number of "structural" hazards on the PPC970. These
|
|
|
|
// conditions cause large performance penalties due to misprediction, recovery,
|
|
|
|
// and replay logic that has to happen. These cases include setting a CTR and
|
|
|
|
// branching through it in the same dispatch group, and storing to an address,
|
|
|
|
// then loading from the same address within a dispatch group. To avoid these
|
|
|
|
// conditions, we insert no-op instructions when appropriate.
|
|
|
|
//
|
2006-03-07 14:32:48 +08:00
|
|
|
// FIXME: This is missing some significant cases:
|
|
|
|
// 1. Modeling of microcoded instructions.
|
2006-03-13 13:20:04 +08:00
|
|
|
// 2. Handling of serialized operations.
|
|
|
|
// 3. Handling of the esoteric cases in "Resource-based Instruction Grouping".
|
2006-03-07 14:32:48 +08:00
|
|
|
//
|
|
|
|
|
2014-06-13 05:48:52 +08:00
|
|
|
PPCHazardRecognizer970::PPCHazardRecognizer970(const ScheduleDAG &DAG)
|
|
|
|
: DAG(DAG) {
|
2006-03-08 12:25:59 +08:00
|
|
|
EndDispatchGroup();
|
|
|
|
}
|
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
void PPCHazardRecognizer970::EndDispatchGroup() {
|
2009-08-23 14:49:22 +08:00
|
|
|
DEBUG(errs() << "=== Start of dispatch group\n");
|
2006-03-07 14:32:48 +08:00
|
|
|
NumIssued = 0;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
// Structural hazard info.
|
|
|
|
HasCTRSet = false;
|
2006-03-12 17:13:49 +08:00
|
|
|
NumStores = 0;
|
2006-03-07 14:32:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-24 12:28:06 +08:00
|
|
|
PPCII::PPC970_Unit
|
2006-03-12 17:13:49 +08:00
|
|
|
PPCHazardRecognizer970::GetInstrType(unsigned Opcode,
|
|
|
|
bool &isFirst, bool &isSingle,
|
2006-03-13 13:20:04 +08:00
|
|
|
bool &isCracked,
|
|
|
|
bool &isLoad, bool &isStore) {
|
2014-06-13 05:48:52 +08:00
|
|
|
const MCInstrDesc &MCID = DAG.TII->get(Opcode);
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2011-06-29 03:10:37 +08:00
|
|
|
isLoad = MCID.mayLoad();
|
|
|
|
isStore = MCID.mayStore();
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2011-06-29 03:10:37 +08:00
|
|
|
uint64_t TSFlags = MCID.TSFlags;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-13 13:20:04 +08:00
|
|
|
isFirst = TSFlags & PPCII::PPC970_First;
|
|
|
|
isSingle = TSFlags & PPCII::PPC970_Single;
|
|
|
|
isCracked = TSFlags & PPCII::PPC970_Cracked;
|
2006-03-12 17:13:49 +08:00
|
|
|
return (PPCII::PPC970_Unit)(TSFlags & PPCII::PPC970_Mask);
|
2006-03-07 14:32:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isLoadOfStoredAddress - If we have a load from the previously stored pointer
|
|
|
|
/// as indicated by StorePtr1/StorePtr2/StoreSize, return true.
|
|
|
|
bool PPCHazardRecognizer970::
|
2011-12-02 12:58:02 +08:00
|
|
|
isLoadOfStoredAddress(uint64_t LoadSize, int64_t LoadOffset,
|
|
|
|
const Value *LoadValue) const {
|
2006-03-12 17:13:49 +08:00
|
|
|
for (unsigned i = 0, e = NumStores; i != e; ++i) {
|
|
|
|
// Handle exact and commuted addresses.
|
2011-12-02 12:58:02 +08:00
|
|
|
if (LoadValue == StoreValue[i] && LoadOffset == StoreOffset[i])
|
2006-03-12 17:13:49 +08:00
|
|
|
return true;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-12 17:13:49 +08:00
|
|
|
// Okay, we don't have an exact match, if this is an indexed offset, see if
|
|
|
|
// we have overlap (which happens during fp->int conversion for example).
|
2011-12-02 12:58:02 +08:00
|
|
|
if (StoreValue[i] == LoadValue) {
|
|
|
|
// Okay the base pointers match, so we have [c1+r] vs [c2+r]. Check
|
|
|
|
// to see if the load and store actually overlap.
|
|
|
|
if (StoreOffset[i] < LoadOffset) {
|
|
|
|
if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true;
|
|
|
|
} else {
|
|
|
|
if (int64_t(LoadOffset+LoadSize) > StoreOffset[i]) return true;
|
|
|
|
}
|
2006-03-12 17:13:49 +08:00
|
|
|
}
|
2006-03-07 14:32:48 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getHazardType - We return hazard for any non-branch instruction that would
|
2010-02-11 00:03:48 +08:00
|
|
|
/// terminate the dispatch group. We turn NoopHazard for any
|
2006-03-07 14:32:48 +08:00
|
|
|
/// instructions that wouldn't terminate the dispatch group that would cause a
|
|
|
|
/// pipeline flush.
|
2009-01-16 06:18:12 +08:00
|
|
|
ScheduleHazardRecognizer::HazardType PPCHazardRecognizer970::
|
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.
llvm-svn: 122541
2010-12-24 13:03:26 +08:00
|
|
|
getHazardType(SUnit *SU, int Stalls) {
|
|
|
|
assert(Stalls == 0 && "PPC hazards don't support scoreboard lookahead");
|
|
|
|
|
2011-12-02 12:58:02 +08:00
|
|
|
MachineInstr *MI = SU->getInstr();
|
|
|
|
|
|
|
|
if (MI->isDebugValue())
|
|
|
|
return NoHazard;
|
|
|
|
|
|
|
|
unsigned Opcode = MI->getOpcode();
|
2006-03-13 13:20:04 +08:00
|
|
|
bool isFirst, isSingle, isCracked, isLoad, isStore;
|
2010-12-24 12:28:06 +08:00
|
|
|
PPCII::PPC970_Unit InstrType =
|
2011-12-02 12:58:02 +08:00
|
|
|
GetInstrType(Opcode, isFirst, isSingle, isCracked,
|
2006-03-13 13:20:04 +08:00
|
|
|
isLoad, isStore);
|
2010-12-24 12:28:06 +08:00
|
|
|
if (InstrType == PPCII::PPC970_Pseudo) return NoHazard;
|
2006-03-07 14:32:48 +08:00
|
|
|
|
2006-03-12 17:13:49 +08:00
|
|
|
// We can only issue a PPC970_First/PPC970_Single instruction (such as
|
|
|
|
// crand/mtspr/etc) if this is the first cycle of the dispatch group.
|
2006-03-13 13:20:04 +08:00
|
|
|
if (NumIssued != 0 && (isFirst || isSingle))
|
2006-03-12 17:13:49 +08:00
|
|
|
return Hazard;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-13 13:20:04 +08:00
|
|
|
// If this instruction is cracked into two ops by the decoder, we know that
|
|
|
|
// it is not a branch and that it cannot issue if 3 other instructions are
|
|
|
|
// already in the dispatch group.
|
|
|
|
if (isCracked && NumIssued > 2)
|
|
|
|
return Hazard;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
switch (InstrType) {
|
2009-07-15 00:55:14 +08:00
|
|
|
default: llvm_unreachable("Unknown instruction type!");
|
2006-03-12 17:13:49 +08:00
|
|
|
case PPCII::PPC970_FXU:
|
|
|
|
case PPCII::PPC970_LSU:
|
|
|
|
case PPCII::PPC970_FPU:
|
|
|
|
case PPCII::PPC970_VALU:
|
|
|
|
case PPCII::PPC970_VPERM:
|
|
|
|
// We can only issue a branch as the last instruction in a group.
|
|
|
|
if (NumIssued == 4) return Hazard;
|
|
|
|
break;
|
|
|
|
case PPCII::PPC970_CRU:
|
|
|
|
// We can only issue a CR instruction in the first two slots.
|
|
|
|
if (NumIssued >= 2) return Hazard;
|
|
|
|
break;
|
|
|
|
case PPCII::PPC970_BRU:
|
|
|
|
break;
|
2006-03-07 14:32:48 +08:00
|
|
|
}
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
// Do not allow MTCTR and BCTRL to be in the same dispatch group.
|
2013-03-22 23:24:13 +08:00
|
|
|
if (HasCTRSet && Opcode == PPC::BCTRL)
|
2006-03-07 14:32:48 +08:00
|
|
|
return NoopHazard;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
// If this is a load following a store, make sure it's not to the same or
|
|
|
|
// overlapping address.
|
2011-12-02 12:58:02 +08:00
|
|
|
if (isLoad && NumStores && !MI->memoperands_empty()) {
|
|
|
|
MachineMemOperand *MO = *MI->memoperands_begin();
|
|
|
|
if (isLoadOfStoredAddress(MO->getSize(),
|
|
|
|
MO->getOffset(), MO->getValue()))
|
2006-03-07 14:32:48 +08:00
|
|
|
return NoopHazard;
|
|
|
|
}
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
return NoHazard;
|
|
|
|
}
|
|
|
|
|
2009-01-16 06:18:12 +08:00
|
|
|
void PPCHazardRecognizer970::EmitInstruction(SUnit *SU) {
|
2011-12-02 12:58:02 +08:00
|
|
|
MachineInstr *MI = SU->getInstr();
|
|
|
|
|
|
|
|
if (MI->isDebugValue())
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned Opcode = MI->getOpcode();
|
2006-03-13 13:20:04 +08:00
|
|
|
bool isFirst, isSingle, isCracked, isLoad, isStore;
|
2010-12-24 12:28:06 +08:00
|
|
|
PPCII::PPC970_Unit InstrType =
|
2011-12-02 12:58:02 +08:00
|
|
|
GetInstrType(Opcode, isFirst, isSingle, isCracked,
|
2006-03-13 13:20:04 +08:00
|
|
|
isLoad, isStore);
|
2010-12-24 12:28:06 +08:00
|
|
|
if (InstrType == PPCII::PPC970_Pseudo) return;
|
2006-03-07 14:32:48 +08:00
|
|
|
|
|
|
|
// Update structural hazard information.
|
2011-06-03 23:47:49 +08:00
|
|
|
if (Opcode == PPC::MTCTR || Opcode == PPC::MTCTR8) HasCTRSet = true;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
// Track the address stored to.
|
2011-12-02 12:58:02 +08:00
|
|
|
if (isStore && NumStores < 4 && !MI->memoperands_empty()) {
|
|
|
|
MachineMemOperand *MO = *MI->memoperands_begin();
|
|
|
|
StoreSize[NumStores] = MO->getSize();
|
|
|
|
StoreOffset[NumStores] = MO->getOffset();
|
|
|
|
StoreValue[NumStores] = MO->getValue();
|
2006-03-12 17:13:49 +08:00
|
|
|
++NumStores;
|
2006-03-07 14:32:48 +08:00
|
|
|
}
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-12 17:13:49 +08:00
|
|
|
if (InstrType == PPCII::PPC970_BRU || isSingle)
|
|
|
|
NumIssued = 4; // Terminate a d-group.
|
2006-03-07 14:32:48 +08:00
|
|
|
++NumIssued;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-13 13:20:04 +08:00
|
|
|
// If this instruction is cracked into two ops by the decoder, remember that
|
|
|
|
// we issued two pieces.
|
|
|
|
if (isCracked)
|
|
|
|
++NumIssued;
|
2010-12-24 12:28:06 +08:00
|
|
|
|
2006-03-07 14:32:48 +08:00
|
|
|
if (NumIssued == 5)
|
|
|
|
EndDispatchGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCHazardRecognizer970::AdvanceCycle() {
|
|
|
|
assert(NumIssued < 5 && "Illegal dispatch group!");
|
|
|
|
++NumIssued;
|
|
|
|
if (NumIssued == 5)
|
|
|
|
EndDispatchGroup();
|
|
|
|
}
|
2011-12-02 12:58:02 +08:00
|
|
|
|
|
|
|
void PPCHazardRecognizer970::Reset() {
|
|
|
|
EndDispatchGroup();
|
|
|
|
}
|
|
|
|
|