summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-09-18 03:32:57 +0000
committerAndrew Trick <atrick@apple.com>2012-09-18 03:32:57 +0000
commit1188e439b2fa747e9e86a29d9256d867feb98932 (patch)
treee4fe2e912cec33458be31abe628e51bb00aebfc4
parentbac8168fb3259522fd5b984ed8a6de71f721bd17 (diff)
downloadbcm5719-llvm-1188e439b2fa747e9e86a29d9256d867feb98932.tar.gz
bcm5719-llvm-1188e439b2fa747e9e86a29d9256d867feb98932.zip
TableGen subtarget emitter. Remove unnecessary header dependence.
llvm-svn: 164094
-rw-r--r--llvm/include/llvm/Target/TargetSubtargetInfo.h17
-rw-r--r--llvm/utils/TableGen/SubtargetEmitter.cpp1
2 files changed, 10 insertions, 8 deletions
diff --git a/llvm/include/llvm/Target/TargetSubtargetInfo.h b/llvm/include/llvm/Target/TargetSubtargetInfo.h
index 90b46edd9f7..08c78f25641 100644
--- a/llvm/include/llvm/Target/TargetSubtargetInfo.h
+++ b/llvm/include/llvm/Target/TargetSubtargetInfo.h
@@ -14,15 +14,16 @@
#ifndef LLVM_TARGET_TARGETSUBTARGETINFO_H
#define LLVM_TARGET_TARGETSUBTARGETINFO_H
-#include "llvm/CodeGen/TargetSchedule.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/Support/CodeGen.h"
namespace llvm {
+class MachineInstr;
class SDep;
class SUnit;
class TargetRegisterClass;
+class TargetSchedModel;
template <typename T> class SmallVectorImpl;
//===----------------------------------------------------------------------===//
@@ -44,13 +45,13 @@ public:
virtual ~TargetSubtargetInfo();
- /// Initialize a copy of the scheduling model for this subtarget.
- /// TargetSchedModel provides the interface for the subtarget's
- /// instruction scheduling information.
- void initSchedModel(TargetSchedModel &SchedModel,
- const TargetInstrInfo *TII) const {
- // getSchedModel returns the static MCSchedModel initialized by InitMCSubtargetInfo.
- SchedModel.init(*getSchedModel(), this, TII);
+ /// Resolve a SchedClass at runtime, where SchedClass identifies an
+ /// MCSchedClassDesc with the isVariant property. This may return the ID of
+ /// another variant SchedClass, but repeated invocation must quickly terminate
+ /// in a nonvariant SchedClass.
+ virtual unsigned resolveSchedClass(unsigned SchedClass, const MachineInstr *MI,
+ const TargetSchedModel* SchedModel) const {
+ return 0;
}
/// getSpecialAddressLatency - For targets where it is beneficial to
diff --git a/llvm/utils/TableGen/SubtargetEmitter.cpp b/llvm/utils/TableGen/SubtargetEmitter.cpp
index cd034ef2e90..157c19e5413 100644
--- a/llvm/utils/TableGen/SubtargetEmitter.cpp
+++ b/llvm/utils/TableGen/SubtargetEmitter.cpp
@@ -1248,6 +1248,7 @@ void SubtargetEmitter::run(raw_ostream &OS) {
OS << "\n#ifdef GET_SUBTARGETINFO_CTOR\n";
OS << "#undef GET_SUBTARGETINFO_CTOR\n";
+ OS << "#include \"llvm/CodeGen/TargetSchedule.h\"\n";
OS << "namespace llvm {\n";
OS << "extern const llvm::SubtargetFeatureKV " << Target << "FeatureKV[];\n";
OS << "extern const llvm::SubtargetFeatureKV " << Target << "SubTypeKV[];\n";
OpenPOWER on IntegriCloud