-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64][PAC][MC][ELF] Support PAuth ABI compatibility tag
Emit `GNU_PROPERTY_AARCH64_FEATURE_PAUTH` property in `.note.gnu.property` section depending on `aarch64-elf-pauthabi-platform` and `aarch64-elf-pauthabi-version` llvm module flags.
- Loading branch information
Showing
4 changed files
with
95 additions
and
11 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
50 changes: 50 additions & 0 deletions
50
llvm/test/CodeGen/AArch64/note-gnu-property-elf-pauthabi.ll
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,50 @@ | ||
; RUN: rm -rf %t && split-file %s %t && cd %t | ||
|
||
;--- ok.ll | ||
|
||
; RUN: llc -mtriple=aarch64-linux ok.ll -o - | \ | ||
; RUN: FileCheck %s --check-prefix=ASM | ||
; RUN: llc -mtriple=aarch64-linux ok.ll -filetype=obj -o - | \ | ||
; RUN: llvm-readelf --notes - | FileCheck %s --check-prefix=OBJ | ||
|
||
!llvm.module.flags = !{!0, !1} | ||
|
||
!0 = !{i32 1, !"aarch64-elf-pauthabi-platform", i32 2} | ||
!1 = !{i32 1, !"aarch64-elf-pauthabi-version", i32 31} | ||
|
||
; ASM: .section .note.gnu.property,"a",@note | ||
; ASM-NEXT: .p2align 3, 0x0 | ||
; ASM-NEXT: .word 4 | ||
; ASM-NEXT: .word 24 | ||
; ASM-NEXT: .word 5 | ||
; ASM-NEXT: .asciz "GNU" | ||
; 3221225473 = 0xc0000001 = GNU_PROPERTY_AARCH64_FEATURE_PAUTH | ||
; ASM-NEXT: .word 3221225473 | ||
; ASM-NEXT: .word 16 | ||
; ASM-NEXT: .xword 2 | ||
; ASM-NEXT: .xword 31 | ||
|
||
; OBJ: Displaying notes found in: .note.gnu.property | ||
; OBJ-NEXT: Owner Data size Description | ||
; OBJ-NEXT: GNU 0x00000018 NT_GNU_PROPERTY_TYPE_0 (property note) | ||
; OBJ-NEXT: AArch64 PAuth ABI tag: platform 0x2 (linux), version 0x1f (PointerAuthCalls, PointerAuthReturns, PointerAuthVTPtrAddressDiscrimination, PointerAuthVTPtrTypeDiscrimination, PointerAuthInitFini) | ||
|
||
; ERR: either both or no 'aarch64-elf-pauthabi-platform' and 'aarch64-elf-pauthabi-version' module flags must be present | ||
|
||
;--- err1.ll | ||
|
||
; RUN: not --crash llc -mtriple=aarch64-linux err1.ll 2>&1 -o - | \ | ||
; RUN: FileCheck %s --check-prefix=ERR | ||
|
||
!llvm.module.flags = !{!0} | ||
|
||
!0 = !{i32 1, !"aarch64-elf-pauthabi-platform", i32 2} | ||
|
||
;--- err2.ll | ||
|
||
; RUN: not --crash llc -mtriple=aarch64-linux err2.ll 2>&1 -o - | \ | ||
; RUN: FileCheck %s --check-prefix=ERR | ||
|
||
!llvm.module.flags = !{!0} | ||
|
||
!0 = !{i32 1, !"aarch64-elf-pauthabi-version", i32 31} |