X86: Add subtargets for AMD's bulldozer.

llvm-svn: 145493
This commit is contained in:
Benjamin Kramer 2011-11-30 15:27:46 +00:00
parent 382eaadaa5
commit 981f32327d
1 changed files with 6 additions and 0 deletions

View File

@ -202,6 +202,12 @@ def : Proc<"barcelona", [FeatureSSE3, FeatureSSE4A,
def : Proc<"istanbul", [Feature3DNowA, FeatureCMPXCHG16B,
FeatureSSE4A]>;
def : Proc<"shanghai", [Feature3DNowA, FeatureCMPXCHG16B, FeatureSSE4A]>;
// FIXME: Disabling AVX for now since it's not ready.
def : Proc<"bdver1", [FeatureSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
FeatureAES, FeatureCLMUL, FeatureFMA4]>;
def : Proc<"bdver2", [FeatureSSE3, FeatureSSE4A, FeatureCMPXCHG16B,
FeatureAES, FeatureCLMUL, FeatureFMA4,
FeatureF16C, FeatureBMI]>;
def : Proc<"winchip-c6", [FeatureMMX]>;
def : Proc<"winchip2", [Feature3DNow]>;