-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
[LLD][COFF] Support anti-dependency symbols #112542
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 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 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 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 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 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 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,68 @@ | ||
REQUIRES: x86 | ||
RUN: split-file %s %t.dir && cd %t.dir | ||
|
||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows chain-bad.s -o chain-bad.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows chain-bad2.s -o chain-bad2.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows globals-bad.s -o globals-bad.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows chain-good.s -o chain-good.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows chain-good2.s -o chain-good2.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows globals-good.s -o globals-good.obj | ||
|
||
Temporary anti-dependency chains are allowed as long as they are broken by non-alias symbols. | ||
|
||
RUN: lld-link -machine:amd64 -dll -noentry -out:test.dll chain-good.obj globals-good.obj | ||
RUN: lld-link -machine:amd64 -dll -noentry -out:test.dll chain-good2.obj globals-good.obj | ||
|
||
Chaining of anti-dependency symbols is not allowed. | ||
|
||
RUN: not lld-link -machine:amd64 -dll -noentry -out:test.dll chain-bad.obj globals-bad.obj 2>&1 \ | ||
RUN: | FileCheck -check-prefix=ANTIDEP %s | ||
RUN: not lld-link -machine:amd64 -dll -noentry -out:test.dll chain-bad2.obj globals-bad.obj 2>&1 \ | ||
RUN: | FileCheck -check-prefix=ANTIDEP %s | ||
|
||
ANTIDEP: lld-link: error: undefined symbol: sym | ||
ANTIDEP-NEXT: >>> referenced by chain-bad | ||
|
||
#--- chain-bad.s | ||
.weak_anti_dep sym | ||
.set sym,sym2 | ||
.weak_anti_dep sym2 | ||
.set sym2,sym3 | ||
|
||
#--- chain-bad2.s | ||
.weak_anti_dep sym2 | ||
.set sym2,sym3 | ||
.weak sym | ||
.set sym,sym2 | ||
|
||
#--- globals-bad.s | ||
.section .test,"r" | ||
.global sym3 | ||
.set sym3,3 | ||
|
||
#--- chain-good.s | ||
.weak_anti_dep sym | ||
.set sym,sym2 | ||
.weak_anti_dep sym2 | ||
.set sym2,sym3 | ||
.weak_anti_dep sym3 | ||
.set sym3,sym4 | ||
.weak_anti_dep sym4 | ||
|
||
#--- chain-good2.s | ||
.weak_anti_dep sym | ||
.set sym,sym2 | ||
.weak_anti_dep sym2 | ||
.set sym2,sym3 | ||
.weak_anti_dep sym3 | ||
.set sym3,weak_sym | ||
.weak weak_sym | ||
.set weak_sym,sym4 | ||
.weak_anti_dep sym4 | ||
|
||
#--- globals-good.s | ||
.section .test,"r" | ||
.global sym2 | ||
.set sym2,2 | ||
.global sym4 | ||
.set sym4,4 |
This file contains 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,54 @@ | ||
REQUIRES: x86 | ||
RUN: split-file %s %t.dir && cd %t.dir | ||
|
||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows antidep.s -o antidep.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows antidep2.s -o antidep2.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows weak.s -o weak.obj | ||
RUN: llvm-mc -filetype=obj -triple=x86_64-windows test.s -o test.obj | ||
|
||
Check that a regular weak alias overrides an anti-dependency symbol. | ||
|
||
RUN: lld-link -dll -noentry -out:out1.dll antidep.obj weak.obj test.obj | ||
RUN: llvm-readobj --hex-dump=.test out1.dll | FileCheck --check-prefix=CHECK2 %s | ||
|
||
RUN: lld-link -dll -noentry -out:out2.dll weak.obj antidep.obj test.obj | ||
RUN: llvm-readobj --hex-dump=.test out2.dll | FileCheck --check-prefix=CHECK2 %s | ||
|
||
RUN: lld-link -dll -noentry -out:out3.dll antidep.obj weak.obj test.obj -lld-allow-duplicate-weak | ||
RUN: llvm-readobj --hex-dump=.test out3.dll | FileCheck --check-prefix=CHECK2 %s | ||
|
||
RUN: lld-link -dll -noentry -out:out4.dll weak.obj antidep.obj test.obj -lld-allow-duplicate-weak | ||
RUN: llvm-readobj --hex-dump=.test out4.dll | FileCheck --check-prefix=CHECK2 %s | ||
|
||
When an anti-dependency symbol is duplicated, the first definition takes precedence over subsequent ones. | ||
|
||
RUN: lld-link -dll -noentry -out:out5.dll antidep.obj antidep2.obj test.obj | ||
RUN: llvm-readobj --hex-dump=.test out5.dll | FileCheck --check-prefix=CHECK1 %s | ||
|
||
RUN: lld-link -dll -noentry -out:out6.dll antidep2.obj antidep.obj test.obj | ||
RUN: llvm-readobj --hex-dump=.test out6.dll | FileCheck --check-prefix=CHECK2 %s | ||
|
||
CHECK1: 01000000 | ||
CHECK2: 02000000 | ||
|
||
#--- antidep.s | ||
.weak_anti_dep sym | ||
.set sym,target1 | ||
|
||
#--- antidep2.s | ||
.weak_anti_dep sym | ||
.set sym,target2 | ||
|
||
#--- weak.s | ||
.weak sym | ||
.set sym,target2 | ||
|
||
#--- test.s | ||
.section .target,"dr" | ||
.globl target1 | ||
.set target1,1 | ||
.globl target2 | ||
.set target2,2 | ||
|
||
.section .test,"dr" | ||
.long sym |
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.
As the
weakAlias
member hasn't been made private here, I presume, and we're passing the default of false to theantiDep
parameter, I guess these changes strictly are unnecessary? It's of course nice for consistency to add them, but if working on the codebase going forward, there's no guarantee that new calls will use this form, as they may just as well just assign toweakAlias
?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.
We could make it private, but it will need a few more changes. As
getWeakAlias
follows the chain, it's not a replacement for accessingweakAlias
directly. I will create a follow-up, thanks!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.
I'm not sure if that's really necessary - I was just checking I understood the situation correctly :-)