mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 17:56:53 +00:00
TargetSchedModel interface. To be implemented...
llvm-svn: 163934
This commit is contained in:
parent
d5d5992107
commit
344fdddf04
63
include/llvm/CodeGen/TargetSchedule.h
Normal file
63
include/llvm/CodeGen/TargetSchedule.h
Normal file
@ -0,0 +1,63 @@
|
||||
//===-- llvm/CodeGen/TargetSchedule.h - Sched Machine Model -----*- 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 a wrapper around MCSchedModel that allows the interface to
|
||||
// benefit from information currently only available in TargetInstrInfo.
|
||||
// Ideally, the scheduling interface would be fully defined in the MC layter.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TARGET_TARGETSCHEDMODEL_H
|
||||
#define LLVM_TARGET_TARGETSCHEDMODEL_H
|
||||
|
||||
#include "llvm/MC/MCSchedule.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class TargetRegisterInfo;
|
||||
class TargetSubtargetInfo;
|
||||
class TargetInstrInfo;
|
||||
class MachineInstr;
|
||||
|
||||
/// Provide an instruction scheduling machine model to CodeGen passes.
|
||||
class TargetSchedModel {
|
||||
// For efficiency, hold a copy of the statically defined MCSchedModel for this
|
||||
// processor.
|
||||
MCSchedModel SchedModel;
|
||||
InstrItineraryData InstrItins;
|
||||
const TargetSubtargetInfo *STI;
|
||||
const TargetInstrInfo *TII;
|
||||
public:
|
||||
TargetSchedModel(): STI(0), TII(0) {}
|
||||
|
||||
void init(const MCSchedModel &sm, const TargetSubtargetInfo *sti,
|
||||
const TargetInstrInfo *tii);
|
||||
|
||||
const TargetInstrInfo *getInstrInfo() const { return TII; }
|
||||
|
||||
/// Return true if this machine model includes an instruction-level scheduling
|
||||
/// model. This is more detailed than the course grain IssueWidth and default
|
||||
/// latency properties, but separate from the per-cycle itinerary data.
|
||||
bool hasInstrSchedModel() const {
|
||||
return SchedModel.hasInstrSchedModel();
|
||||
}
|
||||
|
||||
/// Return true if this machine model includes cycle-to-cycle itinerary
|
||||
/// data. This models scheduling at each stage in the processor pipeline.
|
||||
bool hasInstrItineraries() const {
|
||||
return SchedModel.hasInstrItineraries();
|
||||
}
|
||||
|
||||
unsigned getProcessorID() const { return SchedModel.getProcessorID(); }
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
@ -199,6 +199,8 @@ public:
|
||||
MispredictPenalty(mp), ProcID(0), ProcResourceTable(0),
|
||||
SchedClassTable(0), InstrItineraries(ii) {}
|
||||
|
||||
unsigned getProcessorID() const { return ProcID; }
|
||||
|
||||
/// Does this machine model include instruction-level scheduling.
|
||||
bool hasInstrSchedModel() const {
|
||||
return SchedClassTable;
|
||||
|
@ -118,6 +118,9 @@ public:
|
||||
/// getInstrItineraryForCPU - Get scheduling itinerary of a CPU.
|
||||
///
|
||||
InstrItineraryData getInstrItineraryForCPU(StringRef CPU) const;
|
||||
|
||||
/// Initialize an InstrItineraryData instance.
|
||||
void initInstrItins(InstrItineraryData &InstrItins) const;
|
||||
};
|
||||
|
||||
} // End llvm namespace
|
||||
|
@ -102,6 +102,7 @@ add_llvm_library(LLVMCodeGen
|
||||
TargetInstrInfoImpl.cpp
|
||||
TargetLoweringObjectFileImpl.cpp
|
||||
TargetOptionsImpl.cpp
|
||||
TargetSchedule.cpp
|
||||
TwoAddressInstructionPass.cpp
|
||||
UnreachableBlockElim.cpp
|
||||
VirtRegMap.cpp
|
||||
|
32
lib/CodeGen/TargetSchedule.cpp
Normal file
32
lib/CodeGen/TargetSchedule.cpp
Normal file
@ -0,0 +1,32 @@
|
||||
//===-- llvm/Target/TargetSchedule.cpp - Sched Machine Model ----*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements a wrapper around MCSchedModel that allows the interface
|
||||
// to benefit from information currently only available in TargetInstrInfo.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/CodeGen/TargetSchedule.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<bool> EnableSchedModel("schedmodel", cl::Hidden, cl::init(false),
|
||||
cl::desc("Use TargetSchedModel for latency lookup"));
|
||||
|
||||
void TargetSchedModel::init(const MCSchedModel &sm,
|
||||
const TargetSubtargetInfo *sti,
|
||||
const TargetInstrInfo *tii) {
|
||||
SchedModel = sm;
|
||||
STI = sti;
|
||||
TII = tii;
|
||||
STI->initInstrItins(InstrItins);
|
||||
}
|
@ -101,3 +101,9 @@ MCSubtargetInfo::getInstrItineraryForCPU(StringRef CPU) const {
|
||||
const MCSchedModel *SchedModel = getSchedModelForCPU(CPU);
|
||||
return InstrItineraryData(SchedModel, Stages, OperandCycles, ForwardingPaths);
|
||||
}
|
||||
|
||||
/// Initialize an InstrItineraryData instance.
|
||||
void MCSubtargetInfo::initInstrItins(InstrItineraryData &InstrItins) const {
|
||||
InstrItins =
|
||||
InstrItineraryData(0, Stages, OperandCycles, ForwardingPaths);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user