Krzysztof Parzyszek | a72fad9 | 2017-02-10 15:33:13 +0000 | [diff] [blame] | 1 | //===--- HexagonDepArch.td ------------------------------------------------===// |
| 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 | |
Sumanth Gundapaneni | 9d954c4 | 2017-10-18 17:45:22 +0000 | [diff] [blame^] | 10 | def ArchV62: SubtargetFeature<"v62", "HexagonArchVersion", "Hexagon::ArchEnum::V62", "Enable Hexagon V62 architecture">; |
Krzysztof Parzyszek | f9015e6 | 2017-02-10 23:46:45 +0000 | [diff] [blame] | 11 | def HasV62T : Predicate<"HST->hasV62TOps()">, AssemblerPredicate<"ArchV62">; |
Sumanth Gundapaneni | 9d954c4 | 2017-10-18 17:45:22 +0000 | [diff] [blame^] | 12 | def ArchV60: SubtargetFeature<"v60", "HexagonArchVersion", "Hexagon::ArchEnum::V60", "Enable Hexagon V60 architecture">; |
Krzysztof Parzyszek | a72fad9 | 2017-02-10 15:33:13 +0000 | [diff] [blame] | 13 | def HasV60T : Predicate<"HST->hasV60TOps()">, AssemblerPredicate<"ArchV60">; |
Sumanth Gundapaneni | 9d954c4 | 2017-10-18 17:45:22 +0000 | [diff] [blame^] | 14 | def ArchV55: SubtargetFeature<"v55", "HexagonArchVersion", "Hexagon::ArchEnum::V55", "Enable Hexagon V55 architecture">; |
Krzysztof Parzyszek | a72fad9 | 2017-02-10 15:33:13 +0000 | [diff] [blame] | 15 | def HasV55T : Predicate<"HST->hasV55TOps()">, AssemblerPredicate<"ArchV55">; |
Sumanth Gundapaneni | 9d954c4 | 2017-10-18 17:45:22 +0000 | [diff] [blame^] | 16 | def ArchV4: SubtargetFeature<"v4", "HexagonArchVersion", "Hexagon::ArchEnum::V4", "Enable Hexagon V4 architecture">; |
Krzysztof Parzyszek | a72fad9 | 2017-02-10 15:33:13 +0000 | [diff] [blame] | 17 | def HasV4T : Predicate<"HST->hasV4TOps()">, AssemblerPredicate<"ArchV4">; |
Sumanth Gundapaneni | 9d954c4 | 2017-10-18 17:45:22 +0000 | [diff] [blame^] | 18 | def ArchV5: SubtargetFeature<"v5", "HexagonArchVersion", "Hexagon::ArchEnum::V5", "Enable Hexagon V5 architecture">; |
Krzysztof Parzyszek | a72fad9 | 2017-02-10 15:33:13 +0000 | [diff] [blame] | 19 | def HasV5T : Predicate<"HST->hasV5TOps()">, AssemblerPredicate<"ArchV5">; |