-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[DebugInfo][NewGVN] Fix debug value loss #147634
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
Open
Apochens
wants to merge
1
commit into
llvm:main
Choose a base branch
from
Apochens:147511_newgvn_eliminateinstruction_dbgvalue_loss
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+44
−0
Open
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
43 changes: 43 additions & 0 deletions
43
llvm/test/Transforms/NewGVN/salvage-eliminate-instruction.ll
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,43 @@ | ||
; RUN: opt -S -passes=newgvn %s | FileCheck %s | ||
|
||
; Check that eliminateInstruction() salvages the debug value of `Def` (`DefI`) | ||
; which is marked for deletion. | ||
|
||
|
||
define void @binop(i32 %x, i32 %y) !dbg !5 { | ||
; CHECK: #dbg_value(!DIArgList(i32 %y, i32 %x), [[META11:![0-9]+]], !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_LLVM_arg, 1, DW_OP_plus, DW_OP_stack_value), [[META13:![0-9]+]]) | ||
; | ||
%add1 = add i32 %x, %y, !dbg !12 | ||
#dbg_value(i32 %add1, !9, !DIExpression(), !12) | ||
%add2 = add i32 %y, %x, !dbg !13 | ||
#dbg_value(i32 %add2, !11, !DIExpression(), !13) | ||
call void @use(i32 %add1, i32 %add2), !dbg !14 | ||
ret void, !dbg !15 | ||
} | ||
|
||
declare void @use(i32, i32) | ||
|
||
!llvm.dbg.cu = !{!0} | ||
!llvm.debugify = !{!2, !3} | ||
!llvm.module.flags = !{!4} | ||
|
||
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug) | ||
!1 = !DIFile(filename: "/app/example.ll", directory: "/") | ||
!2 = !{i32 4} | ||
!3 = !{i32 2} | ||
!4 = !{i32 2, !"Debug Info Version", i32 3} | ||
!5 = distinct !DISubprogram(name: "binop", linkageName: "binop", scope: null, file: !1, line: 1, type: !6, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8) | ||
!6 = !DISubroutineType(types: !7) | ||
!7 = !{} | ||
!8 = !{!9, !11} | ||
!9 = !DILocalVariable(name: "1", scope: !5, file: !1, line: 1, type: !10) | ||
!10 = !DIBasicType(name: "ty32", size: 32, encoding: DW_ATE_unsigned) | ||
!11 = !DILocalVariable(name: "2", scope: !5, file: !1, line: 2, type: !10) | ||
!12 = !DILocation(line: 1, column: 1, scope: !5) | ||
!13 = !DILocation(line: 2, column: 1, scope: !5) | ||
!14 = !DILocation(line: 3, column: 1, scope: !5) | ||
!15 = !DILocation(line: 4, column: 1, scope: !5) | ||
;. | ||
; CHECK: [[META11]] = !DILocalVariable(name: "2", | ||
; CHECK: [[META13]] = !DILocation(line: 2, | ||
;. |
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.
Should this be moved inside the loop
llvm-project/llvm/lib/Transforms/Scalar/NewGVN.cpp
Line 3527 in 95cb833
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 would be a solution, but that would introduce some unnecessary computation overhead of salvaging. For example, salvaging the store instructions in
InstructionsToErase
is unnecessary:llvm-project/llvm/lib/Transforms/Scalar/NewGVN.cpp
Lines 4194 to 4196 in 6c8c836
So, I didn't place this salvage into the loop but place it just before where the salvageable instructions are marked for deletion. But if this unnecessary compulation is acceptable, I can move this salvage into the loop.
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. I'm fine with the current version if extra salvaging calls are redundant.