Basic support for mem=>reg moves
[llvm/msp430.git] / lib / Target / Alpha / AlphaSubtarget.h
blobbcbb62813e499ada2381049a24b92365203aa4a4
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 TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #ifndef ALPHASUBTARGET_H
15 #define ALPHASUBTARGET_H
17 #include "llvm/Target/TargetInstrItineraries.h"
18 #include "llvm/Target/TargetSubtarget.h"
20 #include <string>
22 namespace llvm {
23 class Module;
25 class AlphaSubtarget : public TargetSubtarget {
26 protected:
28 bool HasCT;
30 InstrItineraryData InstrItins;
32 public:
33 /// This constructor initializes the data members to match that
34 /// of the specified module.
35 ///
36 AlphaSubtarget(const Module &M, const std::string &FS);
38 /// ParseSubtargetFeatures - Parses features string setting specified
39 /// subtarget options. Definition of function is auto generated by tblgen.
40 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
42 bool hasCT() const { return HasCT; }
44 } // End llvm namespace
46 #endif