-
Notifications
You must be signed in to change notification settings - Fork 745
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BOLT] Detect Linux kernel version if the binary is a Linux kernel (#…
…119088) This makes it easier to handle differences (e.g. of exception table entry size) between versions of Linux kernel
- Loading branch information
Showing
13 changed files
with
199 additions
and
0 deletions.
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
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
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,53 @@ | ||
# REQUIRES: system-linux | ||
|
||
## Check that BOLT correctly detects the Linux kernel version | ||
|
||
# RUN: %clang -DA -target x86_64-unknown-unknown \ | ||
# RUN: %cflags -nostdlib %s -o %t.exe \ | ||
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr | ||
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-A %s | ||
|
||
# RUN: %clang -DB -target x86_64-unknown-unknown \ | ||
# RUN: %cflags -nostdlib %s -o %t.exe \ | ||
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr | ||
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-B %s | ||
|
||
# RUN: %clang -DC -target x86_64-unknown-unknown \ | ||
# RUN: %cflags -nostdlib %s -o %t.exe \ | ||
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr | ||
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-C %s | ||
|
||
.text | ||
.globl foo | ||
.type foo, %function | ||
foo: | ||
ret | ||
.size foo, .-foo | ||
|
||
## Linux kernel version | ||
.rodata | ||
.align 16 | ||
.globl linux_banner | ||
.type linux_banner, @object | ||
linux_banner: | ||
|
||
#ifdef A | ||
.string "Linux version 6.6.61\n" | ||
#endif | ||
# CHECK-A: BOLT-INFO: Linux kernel version is 6.6.61 | ||
|
||
#ifdef B | ||
.string "Linux version 6.6.50-rc4\n" | ||
#endif | ||
# CHECK-B: BOLT-INFO: Linux kernel version is 6.6.50 | ||
|
||
#ifdef C | ||
.string "Linux version 6.6\n" | ||
#endif | ||
# CHECK-C: BOLT-INFO: Linux kernel version is 6.6 | ||
|
||
.size linux_banner, . - linux_banner | ||
|
||
## Fake Linux Kernel sections. | ||
.section __ksymtab,"a",@progbits | ||
.section __ksymtab_gpl,"a",@progbits |