92f463670902bd3de5a516e7067ca0cb1ca6c4f3
[mesa.git] / src / gallium / drivers / radeon / Processors.td
1 //===-- Processors.td - TODO: Add brief description -------===//
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 //
10 // AMDIL processors supported.
11 //
12 //===----------------------------------------------------------------------===//
13
14 class Proc<string Name, ProcessorItineraries itin, list<SubtargetFeature> Features>
15 : Processor<Name, itin, Features>;
16 def : Proc<"rv710", R600_EG_Itin, []>;
17 def : Proc<"rv730", R600_EG_Itin, []>;
18 def : Proc<"rv770", R600_EG_Itin, [FeatureFP64]>;
19 def : Proc<"cedar", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>;
20 def : Proc<"redwood", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>;
21 def : Proc<"juniper", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>;
22 def : Proc<"cypress", R600_EG_Itin, [FeatureByteAddress, FeatureImages, FeatureFP64]>;
23 def : Proc<"barts", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>;
24 def : Proc<"turks", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>;
25 def : Proc<"caicos", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>;
26 def : Proc<"cayman", R600_EG_Itin, [FeatureByteAddress, FeatureImages, FeatureFP64]>;
27 def : Proc<"SI", SI_Itin, [Feature64BitPtr]>;
28