Skip to content

[clang] Add CodeGen tests for CWG 5xx issues #84303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions clang/test/CXX/drs/dr519.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// RUN: %clang_cc1 -std=c++98 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++11 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++14 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++17 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++20 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++23 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++2c %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK

namespace dr519 { // dr519: 2.7
void f() {
int *a = 0;
void *v = a;
bool c1 = v == static_cast<void *>(0);

void *w = 0;
int *b = static_cast<int*>(w);
bool c2 = b == static_cast<int *>(0);
}
} // namespace dr519

// We're checking that `null`s that were initially stored in `a` and `w`
// are simply copied over all the way to respective comparisons with `null`.

// CHECK-LABEL: define {{.*}} void @dr519::f()()
// CHECK: store ptr null, ptr [[A:%.+]],
// CHECK-NEXT: [[TEMP_A:%.+]] = load ptr, ptr [[A]]
// CHECK-NEXT: store ptr [[TEMP_A]], ptr [[V:%.+]],
// CHECK-NEXT: [[TEMP_V:%.+]] = load ptr, ptr [[V]]
// CHECK-NEXT: {{.+}} = icmp eq ptr [[TEMP_V]], null

// CHECK: store ptr null, ptr [[W:%.+]],
// CHECK-NEXT: [[TEMP_W:%.+]] = load ptr, ptr [[W]]
// CHECK-NEXT: store ptr [[TEMP_W]], ptr [[B:%.+]],
// CHECK-NEXT: [[TEMP_B:%.+]] = load ptr, ptr [[B]]
// CHECK-NEXT: {{.+}} = icmp eq ptr [[TEMP_B]], null
// CHECK-LABEL: }
20 changes: 20 additions & 0 deletions clang/test/CXX/drs/dr571.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// RUN: %clang_cc1 -std=c++98 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++11 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++14 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++17 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++20 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++23 %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK
// RUN: %clang_cc1 -std=c++2c %s -triple x86_64-linux-gnu -emit-llvm -o - -fexceptions -fcxx-exceptions -pedantic-errors | llvm-cxxfilt -n | FileCheck %s --check-prefixes CHECK

namespace dr571 { // dr571: 2.7
typedef int &ir;
int n;
const ir r = n;
// expected-warning@-1 {{'const' qualifier on reference type 'ir' (aka 'int &') has no effect}}
ir r2 = n;
}

// Entities have external linkage by default.

// CHECK: @dr571::r = constant ptr @dr571::n
// CHECK: @dr571::r2 = constant ptr @dr571::n
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are showing up as 'dso_local' here: https://godbolt.org/z/Mcxz9c7PG

It isn't clear to me why, or really what it means semantically (https://llvm.org/docs/LangRef.html#runtime-preemption-specifiers).

Copy link
Contributor Author

@Endilll Endilll Mar 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to https://llvm.org/docs/LangRef.html#linkage-types, entities with no linkage specified are external, and that's what matters in this test, as it has direct correspondence to linkage the Standard speaks of.

I'm not sure what do we need to pass to -cc1 to make dso_local appear as it does on CE, but my understanding that if you load your dynamic library multiple times into the same process, each would maintain its own set of dso_local entities. So it's like internal linkage, but on dynamic linker level. Which doesn't seem interesting for this test.

19 changes: 2 additions & 17 deletions clang/test/CXX/drs/dr5xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,7 @@ namespace dr518 { // dr518: yes c++11
// cxx98-error@-1 {{commas at the end of enumerator lists are a C++11 extension}}
}

namespace dr519 { // dr519: yes
// FIXME: Add a codegen test.
#if __cplusplus >= 201103L
#define fold(x) (__builtin_constant_p(x) ? (x) : (x))
int test[fold((int*)(void*)0) ? -1 : 1];
#undef fold
#endif
}

// dr519 is in dr519.cpp
// dr520: na

// dr521: no
Expand Down Expand Up @@ -800,14 +792,7 @@ namespace dr570 { // dr570: dup 633
// expected-note@#dr570-r {{previous definition is here}}
}

namespace dr571 { // dr571 unknown
// FIXME: Add a codegen test.
typedef int &ir;
int n;
// FIXME: Test if this has internal linkage.
const ir r = n;
// expected-warning@-1 {{'const' qualifier on reference type 'ir' (aka 'int &') has no effect}}
}
// dr571 is in dr571.cpp

namespace dr572 { // dr572: yes
enum E { a = 1, b = 2 };
Expand Down
4 changes: 2 additions & 2 deletions clang/www/cxx_dr_status.html
Original file line number Diff line number Diff line change
Expand Up @@ -3154,7 +3154,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2>
<td><a href="https://cplusplus.github.io/CWG/issues/519.html">519</a></td>
<td>CD1</td>
<td>Null pointer preservation in <TT>void*</TT> conversions</td>
<td class="full" align="center">Yes</td>
<td class="full" align="center">Clang 2.7</td>
</tr>
<tr id="520">
<td><a href="https://cplusplus.github.io/CWG/issues/520.html">520</a></td>
Expand Down Expand Up @@ -3468,7 +3468,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2>
<td><a href="https://cplusplus.github.io/CWG/issues/571.html">571</a></td>
<td>CD2</td>
<td>References declared <TT>const</TT></td>
<td class="unknown" align="center">Unknown</td>
<td class="full" align="center">Clang 2.7</td>
</tr>
<tr id="572">
<td><a href="https://cplusplus.github.io/CWG/issues/572.html">572</a></td>
Expand Down