[llvm] r178929 - R600: Add RV670 processor

Tom Stellard thomas.stellard at amd.com
Fri Apr 5 16:31:40 PDT 2013


Author: tstellar
Date: Fri Apr  5 18:31:40 2013
New Revision: 178929

URL: http://llvm.org/viewvc/llvm-project?rev=178929&view=rev
Log:
R600: Add RV670 processor

This is an R600 GPU with double support.

Reviewed-by: Christian König <christian.koenig at amd.com>

Modified:
    llvm/trunk/lib/Target/R600/Processors.td

Modified: llvm/trunk/lib/Target/R600/Processors.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/Processors.td?rev=178929&r1=178928&r2=178929&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/Processors.td (original)
+++ llvm/trunk/lib/Target/R600/Processors.td Fri Apr  5 18:31:40 2013
@@ -15,6 +15,7 @@ class Proc<string Name, ProcessorItinera
 : Processor<Name, itin, Features>;
 def : Proc<"",           R600_EG_Itin, [FeatureR600ALUInst]>;
 def : Proc<"r600",       R600_EG_Itin, [FeatureR600ALUInst]>;
+def : Proc<"rv670",      R600_EG_Itin, [FeatureR600ALUInst, FeatureFP64]>;
 def : Proc<"rv710",      R600_EG_Itin, []>;
 def : Proc<"rv730",      R600_EG_Itin, []>;
 def : Proc<"rv770",      R600_EG_Itin, [FeatureFP64]>;





More information about the llvm-commits mailing list