diff options
Diffstat (limited to 'lib/Target/R600/AMDGPUSubtarget.h')
-rw-r--r-- | lib/Target/R600/AMDGPUSubtarget.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/Target/R600/AMDGPUSubtarget.h b/lib/Target/R600/AMDGPUSubtarget.h index 8c65096..4288d27 100644 --- a/lib/Target/R600/AMDGPUSubtarget.h +++ b/lib/Target/R600/AMDGPUSubtarget.h @@ -33,7 +33,8 @@ public: R700, EVERGREEN, NORTHERN_ISLANDS, - SOUTHERN_ISLANDS + SOUTHERN_ISLANDS, + SEA_ISLANDS }; private: @@ -48,6 +49,8 @@ private: enum Generation Gen; bool FP64; bool CaymanISA; + bool EnableIRStructurizer; + bool EnableIfCvt; InstrItineraryData InstrItins; @@ -63,6 +66,12 @@ public: enum Generation getGeneration() const; bool hasHWFP64() const; bool hasCaymanISA() const; + bool IsIRStructurizerEnabled() const; + bool isIfCvtEnabled() const; + + virtual bool enableMachineScheduler() const { + return getGeneration() <= NORTHERN_ISLANDS; + } // Helper functions to simplify if statements bool isTargetELF() const; |