xref: /aosp_15_r20/external/llvm/test/CodeGen/AArch64/arm64-blockaddress.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=arm64-apple-ios | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=arm64-linux-gnu | FileCheck %s --check-prefix=CHECK-LINUX
3*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=arm64-linux-gnu -code-model=large| FileCheck %s --check-prefix=CHECK-LARGE
4*9880d681SAndroid Build Coastguard Worker
5*9880d681SAndroid Build Coastguard Worker; rdar://9188695
6*9880d681SAndroid Build Coastguard Worker
7*9880d681SAndroid Build Coastguard Workerdefine i64 @t() nounwind ssp {
8*9880d681SAndroid Build Coastguard Workerentry:
9*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: t:
10*9880d681SAndroid Build Coastguard Worker; CHECK: adrp [[REG:x[0-9]+]], Ltmp1@PAGE
11*9880d681SAndroid Build Coastguard Worker; CHECK: add {{x[0-9]+}}, [[REG]], Ltmp1@PAGEOFF
12*9880d681SAndroid Build Coastguard Worker
13*9880d681SAndroid Build Coastguard Worker; CHECK-LINUX-LABEL: t:
14*9880d681SAndroid Build Coastguard Worker; CHECK-LINUX: adrp [[REG:x[0-9]+]], .Ltmp1
15*9880d681SAndroid Build Coastguard Worker; CHECK-LINUX: add {{x[0-9]+}}, [[REG]], :lo12:.Ltmp1
16*9880d681SAndroid Build Coastguard Worker
17*9880d681SAndroid Build Coastguard Worker; CHECK-LARGE-LABEL: t:
18*9880d681SAndroid Build Coastguard Worker; CHECK-LARGE: movz [[ADDR_REG:x[0-9]+]], #:abs_g3:[[DEST_LBL:.Ltmp[0-9]+]]
19*9880d681SAndroid Build Coastguard Worker; CHECK-LARGE: movk [[ADDR_REG]], #:abs_g2_nc:[[DEST_LBL]]
20*9880d681SAndroid Build Coastguard Worker; CHECK-LARGE: movk [[ADDR_REG]], #:abs_g1_nc:[[DEST_LBL]]
21*9880d681SAndroid Build Coastguard Worker; CHECK-LARGE: movk [[ADDR_REG]], #:abs_g0_nc:[[DEST_LBL]]
22*9880d681SAndroid Build Coastguard Worker
23*9880d681SAndroid Build Coastguard Worker  %recover = alloca i64, align 8
24*9880d681SAndroid Build Coastguard Worker  store volatile i64 ptrtoint (i8* blockaddress(@t, %mylabel) to i64), i64* %recover, align 8
25*9880d681SAndroid Build Coastguard Worker  br label %mylabel
26*9880d681SAndroid Build Coastguard Worker
27*9880d681SAndroid Build Coastguard Workermylabel:
28*9880d681SAndroid Build Coastguard Worker  %tmp = load volatile i64, i64* %recover, align 8
29*9880d681SAndroid Build Coastguard Worker  ret i64 %tmp
30*9880d681SAndroid Build Coastguard Worker}
31