Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 1 | //=====-- MBlazeSubtarget.h - Define Subtarget for the MBlaze -*- 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 | // |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file declares the MBlaze specific subclass of TargetSubtargetInfo. |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef MBLAZESUBTARGET_H |
| 15 | #define MBLAZESUBTARGET_H |
| 16 | |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetSubtargetInfo.h" |
Evan Cheng | ab8be96 | 2011-06-29 01:14:12 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCInstrItineraries.h" |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 19 | #include <string> |
| 20 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 21 | #define GET_SUBTARGETINFO_HEADER |
Evan Cheng | 385e930 | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 22 | #include "MBlazeGenSubtargetInfo.inc" |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 23 | |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 24 | namespace llvm { |
| 25 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 26 | class MBlazeSubtarget : public MBlazeGenSubtargetInfo { |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 27 | |
| 28 | protected: |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 29 | bool HasBarrel; |
| 30 | bool HasDiv; |
| 31 | bool HasMul; |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 32 | bool HasPatCmp; |
| 33 | bool HasFPU; |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 34 | bool HasMul64; |
| 35 | bool HasSqrt; |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 36 | bool HasItin; |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 37 | |
| 38 | InstrItineraryData InstrItins; |
| 39 | |
| 40 | public: |
| 41 | |
| 42 | /// This constructor initializes the data members to match that |
| 43 | /// of the specified triple. |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 44 | MBlazeSubtarget(const std::string &TT, const std::string &CPU, |
| 45 | const std::string &FS); |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 46 | |
| 47 | /// ParseSubtargetFeatures - Parses features string setting specified |
| 48 | /// subtarget options. Definition of function is auto generated by tblgen. |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 49 | void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU); |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 50 | |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 51 | /// Compute the number of maximum number of issues per cycle for the |
| 52 | /// MBlaze scheduling itineraries. |
| 53 | void computeIssueWidth(); |
| 54 | |
| 55 | /// enablePostRAScheduler - True at 'More' optimization. |
| 56 | bool enablePostRAScheduler(CodeGenOpt::Level OptLevel, |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 57 | TargetSubtargetInfo::AntiDepBreakMode& Mode, |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 58 | RegClassVector& CriticalPathRCs) const; |
| 59 | |
| 60 | /// getInstrItins - Return the instruction itineraies based on subtarget. |
| 61 | const InstrItineraryData &getInstrItineraryData() const { return InstrItins; } |
| 62 | |
| 63 | bool hasItin() const { return HasItin; } |
| 64 | bool hasPCMP() const { return HasPatCmp; } |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 65 | bool hasFPU() const { return HasFPU; } |
| 66 | bool hasSqrt() const { return HasSqrt; } |
| 67 | bool hasMul() const { return HasMul; } |
| 68 | bool hasMul64() const { return HasMul64; } |
| 69 | bool hasDiv() const { return HasDiv; } |
| 70 | bool hasBarrel() const { return HasBarrel; } |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 71 | }; |
| 72 | } // End llvm namespace |
| 73 | |
| 74 | #endif |