File: ptrauth-elf-got-function-symbols.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (42 lines) | stat: -rw-r--r-- 1,473 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
; RUN: llc -mtriple aarch64-linux-pauthtest -mattr +pauth -filetype=asm %s -o - | \
; RUN:   FileCheck %s --check-prefix=ASM
; RUN: llc -mtriple aarch64-linux-pauthtest -mattr +pauth -filetype=obj %s -o - | \
; RUN:   llvm-readelf -s - | FileCheck %s --check-prefix=OBJ

; ASM:               .type   foo,@function
; ASM-LABEL: foo:
; ASM:               adrp    x17, :got_auth:bar
; ASM-NEXT:          add     x17, x17, :got_auth_lo12:bar
; ASM-NEXT:          ldr     x16, [x17]
; ASM-NEXT:          autia   x16, x17
; ASM-NEXT:          mov     x17, x16
; ASM-NEXT:          xpaci   x17
; ASM-NEXT:          cmp     x16, x17
; ASM-NEXT:          b.eq    .Lauth_success_0
; ASM-NEXT:          brk     #0xc470
; ASM-NEXT:  .Lauth_success_0:
; ASM-NEXT:          paciza  x16
; ASM-NEXT:          adrp    x8, .Lfptr
; ASM-NEXT:          str     x16, [x8, :lo12:.Lfptr]
; ASM-NEXT:          ret
; ASM:               .type   .Lfptr,@object
; ASM-NEXT:          .local  .Lfptr
; ASM-NEXT:          .comm   .Lfptr,8,8
; ASM:               .type   bar,@function

; OBJ:      Symbol table '.symtab' contains [[#]] entries:
; OBJ-NEXT:    Num:    Value          Size Type    Bind   Vis       Ndx Name
; OBJ:              0000000000000000     0 FUNC    GLOBAL DEFAULT   UND bar

@fptr = private global ptr null

define void @foo() {
  store ptr ptrauth (ptr @bar, i32 0), ptr @fptr
  ret void
}

declare i32 @bar()

!llvm.module.flags = !{!0}

!0 = !{i32 8, !"ptrauth-elf-got", i32 1}