mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 01:10:48 +00:00
ec03792245
Patch by: Alex Deucher Reviewed-by: Tom Stellard <thomas.stellard@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> NOTE: This is a candidate for the 3.3 branch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181792 91177308-0d34-0410-b5e6-96231b3b80d8
49 lines
2.3 KiB
TableGen
49 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,
|
|
[FeatureR600ALUInst, FeatureVertexCache]>;
|
|
def : Proc<"r600", R600_VLIW5_Itin,
|
|
[FeatureR600ALUInst , FeatureVertexCache]>;
|
|
def : Proc<"rs880", R600_VLIW5_Itin,
|
|
[FeatureR600ALUInst]>;
|
|
def : Proc<"rv670", R600_VLIW5_Itin,
|
|
[FeatureR600ALUInst, FeatureFP64, FeatureVertexCache]>;
|
|
def : Proc<"rv710", R600_VLIW5_Itin,
|
|
[FeatureVertexCache]>;
|
|
def : Proc<"rv730", R600_VLIW5_Itin,
|
|
[FeatureVertexCache]>;
|
|
def : Proc<"rv770", R600_VLIW5_Itin,
|
|
[FeatureFP64, FeatureVertexCache]>;
|
|
def : Proc<"cedar", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureVertexCache]>;
|
|
def : Proc<"redwood", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureVertexCache]>;
|
|
def : Proc<"sumo", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages]>;
|
|
def : Proc<"juniper", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureVertexCache]>;
|
|
def : Proc<"cypress", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureFP64, FeatureVertexCache]>;
|
|
def : Proc<"barts", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureVertexCache]>;
|
|
def : Proc<"turks", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureVertexCache]>;
|
|
def : Proc<"caicos", R600_VLIW5_Itin,
|
|
[FeatureByteAddress, FeatureImages]>;
|
|
def : Proc<"cayman", R600_VLIW4_Itin,
|
|
[FeatureByteAddress, FeatureImages, FeatureFP64]>;def : Proc<"SI", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
|
def : Proc<"tahiti", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
|
def : Proc<"pitcairn", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
|
def : Proc<"verde", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
|
def : Proc<"oland", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
|
def : Proc<"hainan", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|