-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[lldb][TypeSystemClang] Create VLAs of explicitly 0-size as ConstantArrayType #100710
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// RUN: %clangxx_host -gdwarf -std=c++11 -o %t %s | ||
// RUN: %lldb %t \ | ||
// RUN: -o run \ | ||
// RUN: -o "frame var --show-types f" \ | ||
// RUN: -o "frame var vla0" \ | ||
// RUN: -o "frame var fla0" \ | ||
// RUN: -o "frame var fla1" \ | ||
// RUN: -o "frame var vla01" \ | ||
// RUN: -o "frame var vla10" \ | ||
// RUN: -o "frame var vlaN" \ | ||
// RUN: -o "frame var vlaNM" \ | ||
// RUN: -o exit | FileCheck %s | ||
|
||
struct Foo { | ||
static constexpr int n = 1; | ||
int m_vlaN[n]; | ||
|
||
int m_vla0[0]; | ||
}; | ||
|
||
int main() { | ||
Foo f; | ||
f.m_vlaN[0] = 60; | ||
|
||
// CHECK: (lldb) frame var --show-types f | ||
// CHECK-NEXT: (Foo) f = { | ||
// CHECK-NEXT: (int[1]) m_vlaN = { | ||
// CHECK-NEXT: (int) [0] = 60 | ||
// CHECK-NEXT: } | ||
// CHECK-NEXT: (int[0]) m_vla0 = {} | ||
// CHECK-NEXT: } | ||
|
||
int vla0[0] = {}; | ||
|
||
// CHECK: (lldb) frame var vla0 | ||
// CHECK-NEXT: (int[0]) vla0 = {} | ||
|
||
int fla0[] = {}; | ||
|
||
// CHECK: (lldb) frame var fla0 | ||
// CHECK-NEXT: (int[0]) fla0 = {} | ||
|
||
int fla1[] = {42}; | ||
|
||
// CHECK: (lldb) frame var fla1 | ||
// CHECK-NEXT: (int[1]) fla1 = ([0] = 42) | ||
|
||
int vla01[0][1]; | ||
|
||
// CHECK: (lldb) frame var vla01 | ||
// CHECK-NEXT: (int[0][1]) vla01 = {} | ||
|
||
int vla10[1][0]; | ||
|
||
// CHECK: (lldb) frame var vla10 | ||
// CHECK-NEXT: (int[1][0]) vla10 = ([0] = int[0] | ||
|
||
int n = 3; | ||
int vlaN[n]; | ||
for (int i = 0; i < n; ++i) | ||
vlaN[i] = -i; | ||
|
||
// CHECK: (lldb) frame var vlaN | ||
// CHECK-NEXT: (int[]) vlaN = ([0] = 0, [1] = -1, [2] = -2) | ||
|
||
int m = 2; | ||
int vlaNM[n][m]; | ||
for (int i = 0; i < n; ++i) | ||
for (int j = 0; j < m; ++j) | ||
vlaNM[i][j] = i + j; | ||
|
||
// FIXME: multi-dimensional VLAs aren't well supported | ||
// CHECK: (lldb) frame var vlaNM | ||
// CHECK-NEXT: (int[][]) vlaNM = { | ||
// CHECK-NEXT: [0] = ([0] = 0, [1] = 1, [2] = 1) | ||
// CHECK-NEXT: [1] = ([0] = 1, [1] = 1, [2] = 2) | ||
// CHECK-NEXT: } | ||
|
||
__builtin_debugtrap(); | ||
} |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also broken without this patch. E.g., accessing elements of a VLA with non-constant bounds will return garbage. My hunch is that we just calculate the stride incorrectly (or something related to calculating children count).