MSP430Subtarget.h revision 94214703d97d8d9dfca88174ffc7e94820a85e62
1//====-- MSP430Subtarget.h - Define Subtarget for the MSP430 ---*- 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 MSP430 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_TARGET_MSP430_SUBTARGET_H
15#define LLVM_TARGET_MSP430_SUBTARGET_H
16
17#include "llvm/Target/TargetSubtarget.h"
18
19#define GET_SUBTARGETINFO_HEADER
20#include "MSP430GenSubtarget.inc"
21
22#include <string>
23
24namespace llvm {
25
26class MSP430Subtarget : public MSP430GenSubtargetInfo {
27  bool ExtendedInsts;
28public:
29  /// This constructor initializes the data members to match that
30  /// of the specified triple.
31  ///
32  MSP430Subtarget(const std::string &TT, const std::string &CPU,
33                  const std::string &FS);
34
35  /// ParseSubtargetFeatures - Parses features string setting specified
36  /// subtarget options.  Definition of function is auto generated by tblgen.
37  void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
38};
39} // End llvm namespace
40
41#endif  // LLVM_TARGET_MSP430_SUBTARGET_H
42