From e0e07a7e414e818788144511de0c6328285c43cd Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 11 Dec 2019 14:03:35 -0800 Subject: [PATCH] Fix detection of __attribute__((may_alias)) to properly look through type sugar. We previously missed the attribute in a lot of cases in C++, because there's often other type sugar there (eg, ElaboratedType). --- clang/lib/CodeGen/CodeGenTBAA.cpp | 17 +++++++++-------- clang/test/CodeGenCXX/may_alias.cpp | 25 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 8 deletions(-) create mode 100644 clang/test/CodeGenCXX/may_alias.cpp diff --git a/clang/lib/CodeGen/CodeGenTBAA.cpp b/clang/lib/CodeGen/CodeGenTBAA.cpp index 09de959..7d730cb 100644 --- a/clang/lib/CodeGen/CodeGenTBAA.cpp +++ b/clang/lib/CodeGen/CodeGenTBAA.cpp @@ -78,17 +78,18 @@ llvm::MDNode *CodeGenTBAA::getChar() { static bool TypeHasMayAlias(QualType QTy) { // Tagged types have declarations, and therefore may have attributes. - if (const TagType *TTy = dyn_cast(QTy)) - return TTy->getDecl()->hasAttr(); + if (auto *TD = QTy->getAsTagDecl()) + if (TD->hasAttr()) + return true; - // Typedef types have declarations, and therefore may have attributes. - if (const TypedefType *TTy = dyn_cast(QTy)) { - if (TTy->getDecl()->hasAttr()) + // Also look for may_alias as a declaration attribute on a typedef. + // FIXME: We should follow GCC and model may_alias as a type attribute + // rather than as a declaration attribute. + while (auto *TT = QTy->getAs()) { + if (TT->getDecl()->hasAttr()) return true; - // Also, their underlying types may have relevant attributes. - return TypeHasMayAlias(TTy->desugar()); + QTy = TT->desugar(); } - return false; } diff --git a/clang/test/CodeGenCXX/may_alias.cpp b/clang/test/CodeGenCXX/may_alias.cpp new file mode 100644 index 0000000..fbc4e22 --- /dev/null +++ b/clang/test/CodeGenCXX/may_alias.cpp @@ -0,0 +1,25 @@ +// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -O2 -disable-llvm-passes -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple %ms_abi_triple -emit-llvm -O2 -disable-llvm-passes -o - | FileCheck %s + +enum class __attribute__((may_alias)) E {}; + +template struct A { + using B __attribute__((may_alias)) = enum {}; +}; + +template using Alias = typename A::B; + +// CHECK-LABEL: define {{.*}}foo +// CHECK: load i{{[0-9]*}}, {{.*}}, !tbaa ![[MAY_ALIAS:[^ ,]*]] +auto foo(E &r) { return r; } + +// CHECK-LABEL: define {{.*}}goo +// CHECK: load i{{[0-9]*}}, {{.*}}, !tbaa ![[MAY_ALIAS]] +auto goo(A::B &r) { return r; } + +// CHECK-LABEL: define {{.*}}hoo +// CHECK: load i{{[0-9]*}}, {{.*}}, !tbaa ![[MAY_ALIAS]] +auto hoo(Alias &r) { return r; } + +// CHECK: ![[CHAR:.*]] = !{!"omnipotent char", !{{.*}}, i64 0} +// CHECK: ![[MAY_ALIAS]] = !{![[CHAR]], ![[CHAR]], i64 0} -- 2.7.4