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 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under the |
| 6 | // University of Illinois Open Source 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 | class Module; |
| 22 | |
Chris Lattner | 7c90f73 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 23 | class SparcSubtarget : public TargetSubtarget { |
Chris Lattner | 4dcfaac | 2006-01-26 07:22:22 +0000 | [diff] [blame] | 24 | bool IsV9; |
| 25 | bool V8DeprecatedInsts; |
| 26 | bool IsVIS; |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 27 | public: |
Chris Lattner | 7c90f73 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 28 | SparcSubtarget(const Module &M, const std::string &FS); |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 29 | |
Chris Lattner | 4dcfaac | 2006-01-26 07:22:22 +0000 | [diff] [blame] | 30 | bool isV9() const { return IsV9; } |
| 31 | bool isVIS() const { return IsVIS; } |
| 32 | bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; } |
Chris Lattner | 0d170a7 | 2006-01-26 06:51:21 +0000 | [diff] [blame] | 33 | |
| 34 | /// ParseSubtargetFeatures - Parses features string setting specified |
| 35 | /// subtarget options. Definition of function is auto generated by tblgen. |
| 36 | void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU); |
| 37 | |
| 38 | }; |
| 39 | |
| 40 | } // end namespace llvm |
| 41 | |
| 42 | #endif |