-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[ELF][LTO] Add baseline test for invalid relocations against runtime calls #127286
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
arichardson
merged 3 commits into
main
from
users/arichardson/spr/elflto-add-baseline-test-for-invalid-relocations-against-runtime-calls
Feb 18, 2025
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,125 @@ | ||
| ; REQUIRES: arm | ||
| ;; https://github.com/llvm/llvm-project/issues/127284 | ||
| ;; Test for LTO optimizing out references to symbols that are pulled in by | ||
| ;; compiler-generated libcalls (post LTO). | ||
| ;; The problem here is that the call to __aeabi_ldivmod is generated post-LTO, | ||
| ;; during ISel, so aeabi_ldivmod.o is only marked as required afterwards but by | ||
| ;; that time we have decided that all the callees of __aeabi_ldivmod are not | ||
| ;; needed and have been marked as ABS zero symbols. | ||
| ; RUN: rm -rf %t && split-file %s %t && cd %t | ||
| ; RUN: llvm-as divmoddi4.ll -o divmoddi4.bc | ||
| ; RUN: llvm-mc -filetype=obj -triple=armv7-none-unknown-eabi aeabi_ldivmod.s -o aeabi_ldivmod.o | ||
| ;; With an explicit __aebi_ldivmod call in the input IR this works as expected: | ||
| ; RUN: llvm-as main-explicit.ll -o main-explicit-ldivmod.bc | ||
| ; RUN: ld.lld main-explicit-ldivmod.bc --start-lib aeabi_ldivmod.o divmoddi4.bc --end-lib -o test.exe -Bstatic | ||
arichardson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ; RUN: llvm-objdump -d -r -t test.exe | FileCheck %s --check-prefix=GOOD-DUMP | ||
| ; GOOD-DUMP-LABEL: SYMBOL TABLE: | ||
| ; GOOD-DUMP: [[#]] g F .text [[#]] _start | ||
arichardson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ; GOOD-DUMP: [[#]] g F .text 00000024 __aeabi_ldivmod | ||
| ; GOOD-DUMP: [[#]] g F .text [[#]] __divmoddi4 | ||
| ; GOOD-DUMP-LABEL: <__aeabi_ldivmod>: | ||
| ; GOOD-DUMP: bl 0x20140 <__divmoddi4> @ imm = #0x28 | ||
|
|
||
| ; But if the call is generated by ISel, we end up with an invalid reference: | ||
arichardson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ; RUN: llvm-as main-implicit.ll -o main-implicit-ldivmod.bc | ||
| ; RUN: ld.lld main-implicit-ldivmod.bc --start-lib aeabi_ldivmod.o divmoddi4.bc --end-lib -o test.exe -Bstatic | ||
arichardson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ; RUN: llvm-objdump -d -r -t test.exe | FileCheck %s --check-prefix=BAD-DUMP | ||
| ;; We jump to address zero here and __divmoddi4 ends up being an absolute symbol: | ||
| ; BAD-DUMP-LABEL: SYMBOL TABLE: | ||
| ; BAD-DUMP: [[#]] g F .text [[#]] _start | ||
arichardson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ; BAD-DUMP: [[#]] g F .text 00000024 __aeabi_ldivmod | ||
| ; BAD-DUMP: [[#]] g *ABS* 00000000 __divmoddi4 | ||
| ; BAD-DUMP-LABEL: <__aeabi_ldivmod>: | ||
| ; BAD-DUMP: bl 0x0 <__divmoddi4> @ imm = #-0x200fc | ||
arichardson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ;; Linking with -pie complains about the invalid relocation (and even points back to the source files) | ||
| ; RUN: not ld.lld main-implicit-ldivmod.bc --start-lib aeabi_ldivmod.o divmoddi4.bc --end-lib -o test.exe --no-undefined -pie --no-dynamic-linker 2>&1 | FileCheck %s --check-prefix=PIE-ERROR | ||
| PIE-ERROR: ld.lld: error: relocation R_ARM_CALL cannot refer to absolute symbol: __divmoddi4 | ||
| PIE-ERROR-NEXT: >>> defined in divmoddi4.bc | ||
| PIE-ERROR-NEXT: >>> referenced by aeabi_ldivmod.o:(__aeabi_ldivmod) | ||
| ;; Removing --start-lib/--end-lib also ensures that the reference is retained | ||
| ; RUN: ld.lld main-implicit-ldivmod.bc aeabi_ldivmod.o divmoddi4.bc -o test.exe -Bstatic | ||
| ; RUN: llvm-objdump -d -r -t test.exe | FileCheck %s --check-prefix=GOOD-DUMP | ||
|
|
||
| ;; Interestingly, just declaring __aeabi_ldivmod is sufficient to not run into this issue. | ||
| ; RUN: llvm-as main-declared.ll -o main-declared-ldivmod.bc | ||
| ; RUN: ld.lld main-declared-ldivmod.bc --start-lib aeabi_ldivmod.o divmoddi4.bc --end-lib -o test.exe -Bstatic | ||
| ; RUN: llvm-objdump -d -r -t test.exe | FileCheck %s --check-prefix=GOOD-DUMP | ||
|
|
||
| ;--- divmoddi4.ll | ||
| target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" | ||
| target triple = "armv7-none-unknown-eabi" | ||
|
|
||
| ; Adding it to llvm.used does not appears to have any effect! | ||
arichardson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ; @llvm.used = appending global [1 x ptr] [ptr @__divmoddi4], section "llvm.metadata" | ||
|
|
||
| ; Stub version of the real __divmoddi4 | ||
| define i64 @__divmoddi4(i64 %a, i64 %b, ptr writeonly %rem) #0 align 32 { | ||
| entry: | ||
| %sub = sub i64 %a, %b | ||
| store i64 0, ptr %rem, align 8 | ||
| ret i64 %sub | ||
| } | ||
|
|
||
| attributes #0 = { mustprogress nofree noinline norecurse nosync nounwind willreturn memory(argmem: write) "frame-pointer"="non-leaf" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="cortex-a15" } | ||
|
|
||
| ;--- aeabi_ldivmod.s | ||
| .syntax unified | ||
| .p2align 2 | ||
| .arm | ||
| .globl __aeabi_ldivmod | ||
| .type __aeabi_ldivmod,%function | ||
| __aeabi_ldivmod: | ||
| push {r6, lr} | ||
| sub sp, sp, #16 | ||
| add r6, sp, #8 | ||
| str r6, [sp] | ||
| bl __divmoddi4 | ||
| ldr r2, [sp, #8] | ||
| ldr r3, [sp, #12] | ||
| add sp, sp, #16 | ||
| pop {r6, pc} | ||
| .size __aeabi_ldivmod, . - __aeabi_ldivmod | ||
|
|
||
| ;--- main-implicit.ll | ||
| target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" | ||
| target triple = "armv7-none-unknown-eabi" | ||
|
|
||
| define dso_local i64 @_start(i64 %num, i64 %denom) local_unnamed_addr #0 { | ||
| entry: | ||
| %div = sdiv i64 %num, %denom | ||
| %ret = add i64 %div, 2 | ||
| ret i64 %ret | ||
| } | ||
|
|
||
| attributes #0 = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="cortex-a15" } | ||
|
|
||
| ;--- main-explicit.ll | ||
| target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" | ||
| target triple = "armv7-none-unknown-eabi" | ||
|
|
||
| declare { i64, i64 } @__aeabi_ldivmod(i64, i64) | ||
|
|
||
| define dso_local noundef i64 @_start(i64 noundef %num, i64 noundef %denom) local_unnamed_addr #0 { | ||
| entry: | ||
| %quotrem = call { i64, i64 } @__aeabi_ldivmod(i64 %num, i64 %denom) | ||
| %div = extractvalue { i64, i64 } %quotrem, 0 | ||
| %ret = add i64 %div, 2 | ||
| ret i64 %ret | ||
| } | ||
|
|
||
| attributes #0 = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="cortex-a15" } | ||
|
|
||
| ;--- main-declared.ll | ||
| target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" | ||
| target triple = "armv7-none-unknown-eabi" | ||
|
|
||
| declare { i64, i64 } @__aeabi_ldivmod(i64, i64) | ||
|
|
||
| define dso_local i64 @_start(i64 %num, i64 %denom) local_unnamed_addr #0 { | ||
| entry: | ||
| %div = sdiv i64 %num, %denom | ||
| %ret = add i64 %div, 2 | ||
| ret i64 %ret | ||
| } | ||
|
|
||
| attributes #0 = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="cortex-a15" } | ||
arichardson marked this conversation as resolved.
Outdated
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.
Uh oh!
There was an error while loading. Please reload this page.