Jia Liu | 31d157a | 2012-02-18 12:03:15 +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 | // |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file declares the SPARC specific subclass of TargetSubtargetInfo. |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef SPARC_SUBTARGET_H |
| 15 | #define SPARC_SUBTARGET_H |
| 16 | |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetSubtargetInfo.h" |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 18 | #include <string> |
| 19 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 20 | #define GET_SUBTARGETINFO_HEADER |
Evan Cheng | 385e930 | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 21 | #include "SparcGenSubtargetInfo.inc" |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 22 | |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 23 | namespace llvm { |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 24 | class StringRef; |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 25 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 26 | class SparcSubtarget : public SparcGenSubtargetInfo { |
David Blaikie | 2d24e2a | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 27 | virtual void anchor(); |
Chris Lattner | 4dcfaac | 2006-01-26 07:22:22 +0000 | [diff] [blame] | 28 | bool IsV9; |
| 29 | bool V8DeprecatedInsts; |
| 30 | bool IsVIS; |
Chris Lattner | 87c06d6 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 31 | bool Is64Bit; |
| 32 | |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 33 | public: |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 34 | SparcSubtarget(const std::string &TT, const std::string &CPU, |
| 35 | const std::string &FS, bool is64bit); |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 36 | |
Chris Lattner | 4dcfaac | 2006-01-26 07:22:22 +0000 | [diff] [blame] | 37 | bool isV9() const { return IsV9; } |
| 38 | bool isVIS() const { return IsVIS; } |
| 39 | bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; } |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 40 | |
| 41 | /// ParseSubtargetFeatures - Parses features string setting specified |
| 42 | /// subtarget options. Definition of function is auto generated by tblgen. |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 43 | void ParseSubtargetFeatures(StringRef CPU, StringRef FS); |
Chris Lattner | 87c06d6 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 44 | |
| 45 | bool is64Bit() const { return Is64Bit; } |
| 46 | std::string getDataLayout() const { |
| 47 | const char *p; |
| 48 | if (is64Bit()) { |
| 49 | p = "E-p:64:64:64-i64:64:64-f64:64:64-f128:128:128-n32:64"; |
| 50 | } else { |
| 51 | p = "E-p:32:32:32-i64:64:64-f64:64:64-f128:64:64-n32"; |
| 52 | } |
| 53 | return std::string(p); |
| 54 | } |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | } // end namespace llvm |
| 58 | |
| 59 | #endif |