mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 00:26:06 +00:00

This is sort of a followup to D37310; that basically fixed the same issue, but then the libstdc++ implementation of <atomic> changed. Re-fix the the issue in essentially the same way: look through the addressof operation to find the alignment of the underlying object. Differential Revision: https://reviews.llvm.org/D123950
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
// RUN: %clang_cc1 %s -std=c++14 -emit-llvm -o - -triple=x86_64-linux-gnu | FileCheck %s
|
|
|
|
struct AM {
|
|
int f1, f2;
|
|
};
|
|
alignas(8) AM m;
|
|
AM load1() {
|
|
AM am;
|
|
// m is declared to align to 8bytes, so generate load atomic instead
|
|
// of libcall.
|
|
// CHECK-LABEL: @_Z5load1v
|
|
// CHECK: load atomic {{.*}} monotonic, align 8
|
|
__atomic_load(&m, &am, 0);
|
|
return am;
|
|
}
|
|
|
|
struct BM {
|
|
int f1;
|
|
alignas(8) AM f2;
|
|
};
|
|
BM bm;
|
|
AM load2() {
|
|
AM am;
|
|
// BM::f2 is declared to align to 8bytes, so generate load atomic instead
|
|
// of libcall.
|
|
// CHECK-LABEL: @_Z5load2v
|
|
// CHECK: load atomic {{.*}} monotonic, align 8
|
|
__atomic_load(&bm.f2, &am, 0);
|
|
return am;
|
|
}
|
|
|
|
namespace std {
|
|
template <class _Tp>
|
|
inline constexpr
|
|
__attribute__ ((__visibility__("hidden"), __internal_linkage__))
|
|
_Tp* __addressof(_Tp& __x) noexcept
|
|
{
|
|
return __builtin_addressof(__x);
|
|
}
|
|
}
|
|
|
|
AM load3() {
|
|
AM am;
|
|
// m is declared to align to 8bytes, so generate load atomic instead
|
|
// of libcall.
|
|
// CHECK-LABEL: @_Z5load3v
|
|
// CHECK: load atomic {{.*}} monotonic, align 8
|
|
__atomic_load(std::__addressof(m), &am, 0);
|
|
return am;
|
|
}
|