Rename XXXGenSubtarget.inc to XXXGenSubtargetInfo.inc for consistency.
[oota-llvm.git] / lib / Target / Alpha / AlphaSubtarget.h
1 //=====-- AlphaSubtarget.h - Define Subtarget for the Alpha --*- C++ -*--====//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the Alpha specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ALPHASUBTARGET_H
15 #define ALPHASUBTARGET_H
16
17 #include "llvm/Target/TargetSubtargetInfo.h"
18 #include "llvm/MC/MCInstrItineraries.h"
19 #include <string>
20
21 #define GET_SUBTARGETINFO_HEADER
22 #include "AlphaGenSubtargetInfo.inc"
23
24 namespace llvm {
25
26 class AlphaSubtarget : public AlphaGenSubtargetInfo {
27 protected:
28
29   bool HasCT;
30
31   InstrItineraryData InstrItins;
32
33 public:
34   /// This constructor initializes the data members to match that
35   /// of the specified triple.
36   ///
37   AlphaSubtarget(const std::string &TT, const std::string &CPU,
38                  const std::string &FS);
39   
40   /// ParseSubtargetFeatures - Parses features string setting specified 
41   /// subtarget options.  Definition of function is auto generated by tblgen.
42   void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
43
44   bool hasCT() const { return HasCT; }
45 };
46 } // End llvm namespace
47
48 #endif