-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[Clang] Add __datasizeof #67805
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
[Clang] Add __datasizeof #67805
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.