From: Eric Christopher Date: Mon, 27 Apr 2015 23:11:34 +0000 (+0000) Subject: Always add the target-cpu and target-features sets if they're non-null. X-Git-Tag: llvmorg-3.7.0-rc1~5885 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f37ab1ca73d1442518fc685c035833fd8f1fab34;p=platform%2Fupstream%2Fllvm.git Always add the target-cpu and target-features sets if they're non-null. This makes sure that the front end is specific about what they're expecting the backend to produce. Update a FIXME with the idea that the target-features could be more precise using backend knowledge. llvm-svn: 235936 --- diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 2e180c9..0bdc508 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -1483,15 +1483,15 @@ void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI, // Add target-cpu and target-features work if they differ from the defaults. std::string &CPU = getTarget().getTargetOpts().CPU; - if (CPU != "" && CPU != getTarget().getTriple().getArchName()) - FuncAttrs.addAttribute("target-cpu", getTarget().getTargetOpts().CPU); - - // TODO: FeaturesAsWritten gets us the features on the command line, - // for canonicalization purposes we might want to avoid putting features - // in the target-features set if we know it'll be one of the default - // features in the backend, e.g. corei7-avx and +avx. - std::vector &Features = - getTarget().getTargetOpts().FeaturesAsWritten; + if (CPU != "") + FuncAttrs.addAttribute("target-cpu", CPU); + + // TODO: Features gets us the features on the command line including + // feature dependencies. For canonicalization purposes we might want to + // avoid putting features in the target-features set if we know it'll be one + // of the default features in the backend, e.g. corei7-avx and +avx or figure + // out non-explicit dependencies. + std::vector &Features = getTarget().getTargetOpts().Features; if (!Features.empty()) { std::stringstream S; std::copy(Features.begin(), Features.end(), diff --git a/clang/test/CodeGen/function-target-features.c b/clang/test/CodeGen/function-target-features.c index 5665b1f..4f8265d 100644 --- a/clang/test/CodeGen/function-target-features.c +++ b/clang/test/CodeGen/function-target-features.c @@ -7,15 +7,15 @@ // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -target-feature +avx512f -target-feature +avx512er | FileCheck %s -check-prefix=TWO-AVX // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -target-cpu corei7 | FileCheck %s -check-prefix=CORE-CPU // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -target-cpu corei7 -target-feature +avx | FileCheck %s -check-prefix=CORE-CPU-AND-FEATURES -// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -target-cpu x86-64 | FileCheck %s -check-prefix=X86-64-CPU-NOT +// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -target-cpu x86-64 | FileCheck %s -check-prefix=X86-64-CPU // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -target-cpu corei7-avx -target-feature -avx | FileCheck %s -check-prefix=AVX-MINUS-FEATURE void foo() {} -// AVX-FEATURE: "target-features"="+avx" +// AVX-FEATURE: "target-features"{{.*}}+avx // AVX-NO-CPU-NOT: target-cpu -// TWO-AVX: "target-features"="+avx512f,+avx512er" +// TWO-AVX: "target-features"={{.*}}+avx512er{{.*}}+avx512f // CORE-CPU: "target-cpu"="corei7" -// CORE-CPU-AND-FEATURES: "target-cpu"="corei7" "target-features"="+avx" -// X86-64-CPU-NOT: "target-cpu" -// AVX-MINUS-FEATURE: "target-features"="-avx" +// CORE-CPU-AND-FEATURES: "target-cpu"="corei7" "target-features"={{.*}}+avx +// X86-64-CPU: "target-cpu"="x86-64" +// AVX-MINUS-FEATURE: "target-features"={{.*}}-avx