forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
[llvm-debuginfo-analyzer] Fix a couple of unhandled DWARF situations leading to a crash #1
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
jalopezg-git
merged 2 commits into
Zimperium:zmpr-b-llvmorg-19.1.1-patches
from
jalopezg-git:zmpr-b-llvmorg-19.1.1-logicalview-fixes
Apr 25, 2025
Merged
Conversation
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
7275173
to
f5bbbef
Compare
jalopezg-git
commented
Apr 25, 2025
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.
Thank you for review 👍; replied to your comments; PTAL.
peledins-zimperium
approved these changes
Apr 25, 2025
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.
Thanks!
…f unspecified parameters
f5bbbef
to
74d31a8
Compare
b842f92
into
Zimperium:zmpr-b-llvmorg-19.1.1-patches
2 checks passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request fixes a couple of unhandled situations in DWARF input leading to a crash. Specifically,
...
translates toDW_TAG_unspecified_parameters
), which is then followed by a definition,llvm_unreachable()
is hit inLVScope::addMissingElements()
.This is only visible in Debug builds (see stack trace below), but still.
test-dwarf-clang-unspec-params.elf
triggers this condition.LVBinaryReader::createInstructions()
does not check whetherOffset
lies within theBytes
ArrayRef. A specially crafted DWARF input can lead to this condition.__
NOTE: this PR is a backport of upstream llvm#137221 to the
zmpr-b-llvmorg-19.1.1-patches
branch. Such branch is forked from upstream tagllvmorg-19.1.1
.FYI @peledins-zimperium.