Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name to
[oota-llvm.git] / lib / Target / Sparc / SparcSubtarget.h
1 //=====-- SparcSubtarget.h - Define Subtarget for the SPARC ----*- 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 SPARC specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SPARC_SUBTARGET_H
15 #define SPARC_SUBTARGET_H
16
17 #include "llvm/Target/TargetSubtarget.h"
18 #include <string>
19
20 namespace llvm {
21
22 class SparcSubtarget : public TargetSubtarget {
23   bool IsV9;
24   bool V8DeprecatedInsts;
25   bool IsVIS;
26   bool Is64Bit;
27   
28 public:
29   SparcSubtarget(const std::string &TT, const std::string &CPU,
30                  const std::string &FS, bool is64bit);
31
32   bool isV9() const { return IsV9; }
33   bool isVIS() const { return IsVIS; }
34   bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
35   
36   /// ParseSubtargetFeatures - Parses features string setting specified 
37   /// subtarget options.  Definition of function is auto generated by tblgen.
38   void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
39   
40   bool is64Bit() const { return Is64Bit; }
41   std::string getDataLayout() const {
42     const char *p;
43     if (is64Bit()) {
44       p = "E-p:64:64:64-i64:64:64-f64:64:64-f128:128:128-n32:64";
45     } else {
46       p = "E-p:32:32:32-i64:64:64-f64:64:64-f128:64:64-n32";
47     }
48     return std::string(p);
49   }
50 };
51
52 } // end namespace llvm
53
54 #endif