Remove xs1a subtarget. xs1a is a preproduction device used in
[oota-llvm.git] / lib / Target / XCore / XCoreSubtarget.h
1 //=====-- XCoreSubtarget.h - Define Subtarget for the XCore -----*- 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 XCore specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef XCORESUBTARGET_H
15 #define XCORESUBTARGET_H
16
17 #include "llvm/Target/TargetSubtarget.h"
18 #include "llvm/Target/TargetMachine.h"
19
20 #include <string>
21
22 namespace llvm {
23
24 class XCoreSubtarget : public TargetSubtarget {
25   bool IsXS1B;
26
27 public:
28   /// This constructor initializes the data members to match that
29   /// of the specified triple.
30   ///
31   XCoreSubtarget(const std::string &TT, const std::string &FS);
32
33   bool isXS1B() const { return IsXS1B; }
34   
35   /// ParseSubtargetFeatures - Parses features string setting specified 
36   /// subtarget options.  Definition of function is auto generated by tblgen.
37   std::string ParseSubtargetFeatures(const std::string &FS,
38                                      const std::string &CPU);
39 };
40 } // End llvm namespace
41
42 #endif