Fixed some bugs in register stack pass.
[llvm/zpu.git] / lib / Target / Alpha / AlphaSubtarget.h
blobf0eb93c6cba2e62b63210af95941901b4d4b3f92
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 {
24 class AlphaSubtarget : public TargetSubtarget {
25 protected:
27 bool HasCT;
29 InstrItineraryData InstrItins;
31 public:
32 /// This constructor initializes the data members to match that
33 /// of the specified triple.
34 ///
35 AlphaSubtarget(const std::string &TT, const std::string &FS);
37 /// ParseSubtargetFeatures - Parses features string setting specified
38 /// subtarget options. Definition of function is auto generated by tblgen.
39 std::string ParseSubtargetFeatures(const std::string &FS,
40 const std::string &CPU);
42 bool hasCT() const { return HasCT; }
44 } // End llvm namespace
46 #endif