Chris Lattner | 7c90f73 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 1 | //=====-- SparcSubtarget.h - Define Subtarget for the SPARC ----*- C++ -*-====// |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 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 { |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 21 | |
Chris Lattner | 7c90f73 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 22 | class SparcSubtarget : public TargetSubtarget { |
Chris Lattner | 4dcfaac | 2006-01-26 07:22:22 +0000 | [diff] [blame] | 23 | bool IsV9; |
| 24 | bool V8DeprecatedInsts; |
| 25 | bool IsVIS; |
Chris Lattner | 87c06d6 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 26 | bool Is64Bit; |
| 27 | |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 28 | public: |
Chris Lattner | 87c06d6 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 29 | SparcSubtarget(const std::string &TT, const std::string &FS, bool is64bit); |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 30 | |
Chris Lattner | 4dcfaac | 2006-01-26 07:22:22 +0000 | [diff] [blame] | 31 | bool isV9() const { return IsV9; } |
| 32 | bool isVIS() const { return IsVIS; } |
| 33 | bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; } |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 34 | |
| 35 | /// ParseSubtargetFeatures - Parses features string setting specified |
| 36 | /// subtarget options. Definition of function is auto generated by tblgen. |
Anton Korobeynikov | 41a0243 | 2009-05-23 19:50:50 +0000 | [diff] [blame] | 37 | std::string ParseSubtargetFeatures(const std::string &FS, |
| 38 | const std::string &CPU); |
Chris Lattner | 87c06d6 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 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 | } |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | } // end namespace llvm |
| 53 | |
| 54 | #endif |