OLD | NEW |
1 //===-- Processors.td - R600 Processor definitions ------------------------===// | 1 //===-- Processors.td - R600 Processor definitions ------------------------===// |
2 // | 2 // |
3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 | 9 |
10 class Proc<string Name, ProcessorItineraries itin, list<SubtargetFeature> Featur
es> | 10 class Proc<string Name, ProcessorItineraries itin, list<SubtargetFeature> Featur
es> |
(...skipping 27 matching lines...) Expand all Loading... |
38 def : Proc<"turks", R600_VLIW5_Itin, | 38 def : Proc<"turks", R600_VLIW5_Itin, |
39 [FeatureByteAddress, FeatureImages, FeatureVertexCache]>; | 39 [FeatureByteAddress, FeatureImages, FeatureVertexCache]>; |
40 def : Proc<"caicos", R600_VLIW5_Itin, | 40 def : Proc<"caicos", R600_VLIW5_Itin, |
41 [FeatureByteAddress, FeatureImages]>; | 41 [FeatureByteAddress, FeatureImages]>; |
42 def : Proc<"cayman", R600_VLIW4_Itin, | 42 def : Proc<"cayman", R600_VLIW4_Itin, |
43 [FeatureByteAddress, FeatureImages, FeatureFP64]>;def : Proc<"SI", S
I_Itin, [Feature64BitPtr, FeatureFP64]>; | 43 [FeatureByteAddress, FeatureImages, FeatureFP64]>;def : Proc<"SI", S
I_Itin, [Feature64BitPtr, FeatureFP64]>; |
44 def : Proc<"tahiti", SI_Itin, [Feature64BitPtr, FeatureFP64]>; | 44 def : Proc<"tahiti", SI_Itin, [Feature64BitPtr, FeatureFP64]>; |
45 def : Proc<"pitcairn", SI_Itin, [Feature64BitPtr, FeatureFP64]>; | 45 def : Proc<"pitcairn", SI_Itin, [Feature64BitPtr, FeatureFP64]>; |
46 def : Proc<"verde", SI_Itin, [Feature64BitPtr, FeatureFP64]>; | 46 def : Proc<"verde", SI_Itin, [Feature64BitPtr, FeatureFP64]>; |
47 def : Proc<"oland", SI_Itin, [Feature64BitPtr, FeatureFP64]>; | 47 def : Proc<"oland", SI_Itin, [Feature64BitPtr, FeatureFP64]>; |
48 def : Proc<"hainan", SI_Itin, [Feature64BitPtr, FeatureFP64]>; | |
OLD | NEW |