mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
bde84a96ea
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185385 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
2.3 KiB
TableGen
54 lines
2.3 KiB
TableGen
//===-- Processors.td - R600 Processor definitions ------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
class Proc<string Name, ProcessorItineraries itin, list<SubtargetFeature> Features>
|
|
: Processor<Name, itin, Features>;
|
|
def : Proc<"", R600_VLIW5_Itin,
|
|
[FeatureR600, FeatureVertexCache]>;
|
|
def : Proc<"r600", R600_VLIW5_Itin,
|
|
[FeatureR600 , FeatureVertexCache]>;
|
|
def : Proc<"rs880", R600_VLIW5_Itin,
|
|
[FeatureR600]>;
|
|
def : Proc<"rv670", R600_VLIW5_Itin,
|
|
[FeatureR600, FeatureFP64, FeatureVertexCache]>;
|
|
def : Proc<"rv710", R600_VLIW5_Itin,
|
|
[FeatureR700, FeatureVertexCache]>;
|
|
def : Proc<"rv730", R600_VLIW5_Itin,
|
|
[FeatureR700, FeatureVertexCache]>;
|
|
def : Proc<"rv770", R600_VLIW5_Itin,
|
|
[FeatureR700, FeatureFP64, FeatureVertexCache]>;
|
|
def : Proc<"cedar", R600_VLIW5_Itin,
|
|
[FeatureEvergreen, FeatureVertexCache]>;
|
|
def : Proc<"redwood", R600_VLIW5_Itin,
|
|
[FeatureEvergreen, FeatureVertexCache]>;
|
|
def : Proc<"sumo", R600_VLIW5_Itin,
|
|
[FeatureEvergreen]>;
|
|
def : Proc<"juniper", R600_VLIW5_Itin,
|
|
[FeatureEvergreen, FeatureVertexCache]>;
|
|
def : Proc<"cypress", R600_VLIW5_Itin,
|
|
[FeatureEvergreen, FeatureFP64, FeatureVertexCache]>;
|
|
def : Proc<"barts", R600_VLIW5_Itin,
|
|
[FeatureNorthernIslands, FeatureVertexCache]>;
|
|
def : Proc<"turks", R600_VLIW5_Itin,
|
|
[FeatureNorthernIslands, FeatureVertexCache]>;
|
|
def : Proc<"caicos", R600_VLIW5_Itin,
|
|
[FeatureNorthernIslands]>;
|
|
def : Proc<"cayman", R600_VLIW4_Itin,
|
|
[FeatureNorthernIslands, FeatureFP64, FeatureCaymanISA]>;
|
|
|
|
def : Proc<"SI", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"tahiti", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"pitcairn", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"verde", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"oland", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"hainan", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"bonaire", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"kabini", SI_Itin, [FeatureSouthernIslands]>;
|
|
def : Proc<"kaveri", SI_Itin, [FeatureSouthernIslands]>;
|