-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[lldb][DWARFASTParserClang] GetClangDeclForDIE: don't create VarDecl for static data members #77155
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
Michael137
merged 2 commits into
llvm:main
from
Michael137:bugfix/lldb-split-dwarf-5-fix
Jan 8, 2024
Merged
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions
8
lldb/test/Shell/SymbolFile/DWARF/Inputs/dwo-static-data-member.cpp
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,8 @@ | ||
struct NoCtor { | ||
NoCtor(); | ||
static int i; | ||
}; | ||
|
||
int NoCtor::i = 15; | ||
|
||
int main() { return NoCtor::i; } |
23 changes: 23 additions & 0 deletions
23
lldb/test/Shell/SymbolFile/DWARF/dwo-static-data-member-access.test
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,23 @@ | ||
# UNSUPPORTED: system-darwin, system-windows | ||
|
||
# In DWARFv5, C++ static data members are represented | ||
# as DW_TAG_variable. We make sure LLDB's expression | ||
# evaluator doesn't crash when trying to parse such | ||
# a DW_TAG_variable DIE, whose parent DIE is only | ||
# a forward declaration. | ||
|
||
# RUN: %clangxx_host %S/Inputs/dwo-static-data-member.cpp \ | ||
# RUN: -g -gdwarf-5 -gsplit-dwarf -o %t | ||
# RUN: %lldb %t -s %s -o exit 2>&1 | FileCheck %s | ||
|
||
breakpoint set -n main | ||
process launch | ||
|
||
# CHECK: Process {{.*}} stopped | ||
|
||
# There is no definition for NoCtor anywhere | ||
# in the debug-info, so LLDB can't evaluate | ||
# this expression. | ||
expression NoCtor::i | ||
# CHECK-LABEL: expression NoCtor::i | ||
# CHECK: use of undeclared identifier 'NoCtor' | ||
dwblaikie marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
Just out of curiosity — we are evaluating a static constant. Do we actually need to run the binary, or could we run the expression against e.g., an ELF binary on Darwin, too, by just evaluating the expression and not launching at all?
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.
That's actually a great question, but I think for now the answer with lldb is "no, expression evaluation doesn't work without a running process" - but I was just commenting on an internal bug where folks were having trouble investigating core dumps with some of our pretty printers that evaluate expressions that happen to be constants that gdb can evaluate on a core/without a running process, but it seems lldb can't do that...
So while that sounds like a good thing, my understanding is that lldb can't do that at the moment.
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.
As @dwblaikie points out, we need a process to run the expression. But if we specify
-flimit-debug-info
I can repro the crash on Darwin too, so we can removeUNSUPPORTED
here and get the coverage that way.