-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[BOLT] Add reading support for Linux kernel exception table #83100
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
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 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
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,64 @@ | ||
# REQUIRES: system-linux | ||
|
||
## Check that BOLT correctly parses the Linux kernel exception table. | ||
|
||
# RUN: llvm-mc -filetype=obj -triple x86_64-unknown-unknown %s -o %t.o | ||
# RUN: %clang %cflags -nostdlib %t.o -o %t.exe \ | ||
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr | ||
|
||
## Verify exception bindings to instructions. | ||
|
||
# RUN: llvm-bolt %t.exe --print-normalized -o %t.out --keep-nops=0 \ | ||
# RUN: --bolt-info=0 | FileCheck %s | ||
|
||
## Verify the bindings again on the rewritten binary with nops removed. | ||
|
||
# RUN: llvm-bolt %t.out -o %t.out.1 --print-normalized | FileCheck %s | ||
|
||
# CHECK: BOLT-INFO: Linux kernel binary detected | ||
# CHECK: BOLT-INFO: parsed 2 exception table entries | ||
|
||
.text | ||
.globl _start | ||
.type _start, %function | ||
_start: | ||
# CHECK: Binary Function "_start" | ||
nop | ||
.L0: | ||
mov (%rdi), %rax | ||
# CHECK: mov | ||
# CHECK-SAME: ExceptionEntry: 1 # Fixup: [[FIXUP:[a-zA-Z0-9_]+]] | ||
nop | ||
.L1: | ||
mov (%rsi), %rax | ||
# CHECK: mov | ||
# CHECK-SAME: ExceptionEntry: 2 # Fixup: [[FIXUP]] | ||
nop | ||
ret | ||
.LF0: | ||
# CHECK: Secondary Entry Point: [[FIXUP]] | ||
jmp foo | ||
.size _start, .-_start | ||
|
||
.globl foo | ||
.type foo, %function | ||
foo: | ||
ret | ||
.size foo, .-foo | ||
|
||
|
||
## Exception table. | ||
.section __ex_table,"a",@progbits | ||
.align 4 | ||
|
||
.long .L0 - . # instruction | ||
.long .LF0 - . # fixup | ||
.long 0 # data | ||
|
||
.long .L1 - . # instruction | ||
.long .LF0 - . # fixup | ||
.long 0 # data | ||
|
||
## Fake Linux Kernel sections. | ||
.section __ksymtab,"a",@progbits | ||
.section __ksymtab_gpl,"a",@progbits |
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.
is
int
in the structure mapping toint32_t
everywhere? I assume this is true for every architecture in the world we support but I don't know if this is a general assumption. Nothing needs to change because I assume BOLT has this assumption baked in many other places, but I was curious anyway and wanted to point out.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 assume you are talking about the
int
in the Linux kernel structure. We support x86 kernels only (at least at this moment) and the data structure itself is architecture-specific. So it's not just the type of the field that can vary. Some architectures don't have exception table at all, others have different fields in the structure.