Andrew Lenharth | 120ab48 | 2005-09-29 22:54:56 +0000 | [diff] [blame] | 1 | //=====-- AlphaSubtarget.h - Define Subtarget for the Alpha --*- C++ -*--====// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Andrew Lenharth 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 Alpha specific subclass of TargetSubtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef ALPHASUBTARGET_H |
| 15 | #define ALPHASUBTARGET_H |
| 16 | |
Andrew Lenharth | 017c556 | 2006-03-09 17:16:45 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetInstrItineraries.h" |
Andrew Lenharth | 120ab48 | 2005-09-29 22:54:56 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetSubtarget.h" |
| 19 | |
| 20 | #include <string> |
| 21 | |
| 22 | namespace llvm { |
| 23 | class Module; |
| 24 | |
| 25 | class AlphaSubtarget : public TargetSubtarget { |
| 26 | protected: |
| 27 | |
| 28 | /// Used by the ISel to turn in optimizations for POWER4-derived architectures |
| 29 | bool HasF2I; |
| 30 | bool HasCT; |
| 31 | |
Andrew Lenharth | 017c556 | 2006-03-09 17:16:45 +0000 | [diff] [blame] | 32 | InstrItineraryData InstrItins; |
| 33 | |
Andrew Lenharth | 120ab48 | 2005-09-29 22:54:56 +0000 | [diff] [blame] | 34 | public: |
| 35 | /// This constructor initializes the data members to match that |
| 36 | /// of the specified module. |
| 37 | /// |
| 38 | AlphaSubtarget(const Module &M, const std::string &FS); |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 39 | |
| 40 | /// ParseSubtargetFeatures - Parses features string setting specified |
Jim Laskey | 2cbc207 | 2005-10-26 18:07:50 +0000 | [diff] [blame] | 41 | /// subtarget options. Definition of function is auto generated by tblgen. |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 42 | void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU); |
Andrew Lenharth | 120ab48 | 2005-09-29 22:54:56 +0000 | [diff] [blame] | 43 | |
| 44 | bool hasF2I() const { return HasF2I; } |
| 45 | bool hasCT() const { return HasCT; } |
| 46 | }; |
| 47 | } // End llvm namespace |
| 48 | |
| 49 | #endif |