Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 1 | //==-- SystemZSubtarget.h - Define Subtarget for the SystemZ ---*- 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 SystemZ specific subclass of TargetSubtargetInfo. |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_TARGET_SystemZ_SUBTARGET_H |
| 15 | #define LLVM_TARGET_SystemZ_SUBTARGET_H |
| 16 | |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetSubtargetInfo.h" |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +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 "SystemZGenSubtargetInfo.inc" |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 22 | |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 23 | namespace llvm { |
Anton Korobeynikov | 6fe326c | 2009-07-16 14:16:05 +0000 | [diff] [blame] | 24 | class GlobalValue; |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 25 | class TargetMachine; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 26 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 27 | class SystemZSubtarget : public SystemZGenSubtargetInfo { |
Anton Korobeynikov | 747052c | 2009-07-16 14:05:00 +0000 | [diff] [blame] | 28 | bool HasZ10Insts; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 29 | public: |
| 30 | /// This constructor initializes the data members to match that |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 31 | /// of the specified triple. |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 32 | /// |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 33 | SystemZSubtarget(const std::string &TT, const std::string &CPU, |
| 34 | const std::string &FS); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 35 | |
| 36 | /// ParseSubtargetFeatures - Parses features string setting specified |
| 37 | /// subtarget options. Definition of function is auto generated by tblgen. |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 38 | void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU); |
Anton Korobeynikov | 747052c | 2009-07-16 14:05:00 +0000 | [diff] [blame] | 39 | |
| 40 | bool isZ10() const { return HasZ10Insts; } |
Anton Korobeynikov | 6fe326c | 2009-07-16 14:16:05 +0000 | [diff] [blame] | 41 | |
| 42 | bool GVRequiresExtraLoad(const GlobalValue* GV, const TargetMachine& TM, |
| 43 | bool isDirectCall) const; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 44 | }; |
| 45 | } // End llvm namespace |
| 46 | |
| 47 | #endif // LLVM_TARGET_SystemZ_SUBTARGET_H |