-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The data size is required for implementing the `memmove` optimization for `std::copy`, `std::move` etc. correctly as well as replacing `__compressed_pair` with `[[no_unique_address]]` in libc++. Since the compiler already knows the data size, we can avoid some complexity by exposing that information.
- Loading branch information
1 parent
0515ccc
commit 4cc791b
Showing
11 changed files
with
150 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// RUN: %clang_cc1 -triple x86_64-unknown-gnu-linux -emit-llvm %s -o - | FileCheck %s | ||
|
||
// CHECK-LABEL: define dso_local noundef i32 @_Z4testi( | ||
// CHECK-SAME: i32 noundef [[I:%.*]]) #[[ATTR0:[0-9]+]] { | ||
// CHECK-NEXT: entry: | ||
// CHECK-NEXT: [[I_ADDR:%.*]] = alloca i32, align 4 | ||
// CHECK-NEXT: store i32 [[I]], ptr [[I_ADDR]], align 4 | ||
// CHECK-NEXT: [[TMP0:%.*]] = load i32, ptr [[I_ADDR]], align 4 | ||
// CHECK-NEXT: [[INC:%.*]] = add nsw i32 [[TMP0]], 1 | ||
// CHECK-NEXT: store i32 [[INC]], ptr [[I_ADDR]], align 4 | ||
// CHECK-NEXT: [[TMP1:%.*]] = zext i32 [[TMP0]] to i64 | ||
// CHECK-NEXT: [[TMP2:%.*]] = mul nuw i64 4, [[TMP1]] | ||
// CHECK-NEXT: [[TMP3:%.*]] = load i32, ptr [[I_ADDR]], align 4 | ||
// CHECK-NEXT: ret i32 [[TMP3]] | ||
// | ||
int test(int i) { | ||
(void)__datasizeof(int[i++]); | ||
return i; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// RUN: %clang_cc1 -fsyntax-only -triple x86_64-linux-gnu -verify %s | ||
|
||
#if !__has_extension(datasizeof) | ||
# error "Expected datasizeof extension" | ||
#endif | ||
|
||
struct HasPadding { | ||
int i; | ||
char c; | ||
}; | ||
|
||
struct HasUsablePadding { | ||
int i; | ||
char c; | ||
|
||
HasUsablePadding() {} | ||
}; | ||
|
||
struct Incomplete; // expected-note {{forward declaration of 'Incomplete'}} | ||
|
||
static_assert(__datasizeof(int) == 4); | ||
static_assert(__datasizeof(HasPadding) == 8); | ||
static_assert(__datasizeof(HasUsablePadding) == 5); | ||
static_assert(__datasizeof(void)); // expected-error {{invalid application of '__datasizeof' to an incomplete type 'void'}} | ||
static_assert(__datasizeof(Incomplete)); // expected-error {{invalid application of '__datasizeof' to an incomplete type 'Incomplete'}} | ||
|
||
static_assert([] { | ||
int* p = nullptr; | ||
HasPadding* p2 = nullptr; | ||
HasUsablePadding* p3 = nullptr; | ||
static_assert(__datasizeof(*p) == 4); | ||
static_assert(__datasizeof *p == 4); | ||
static_assert(__datasizeof(*p2) == 8); | ||
static_assert(__datasizeof(*p3) == 5); | ||
|
||
return true; | ||
}()); | ||
|
||
template <typename Ty> | ||
constexpr int data_size_of() { | ||
return __datasizeof(Ty); | ||
} | ||
static_assert(data_size_of<int>() == __datasizeof(int)); | ||
static_assert(data_size_of<HasPadding>() == __datasizeof(HasPadding)); | ||
static_assert(data_size_of<HasUsablePadding>() == __datasizeof(HasUsablePadding)); | ||
|
||
struct S { | ||
int i = __datasizeof(S); | ||
float f; | ||
char c; | ||
}; | ||
|
||
static_assert(S{}.i == 9); |