bolt/deps/llvm-18.1.8/llvm/test/CodeGen/AArch64/GlobalISel/select-frameaddr.ll

21 lines
474 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc -mtriple=arm64-apple-ios -global-isel -o - %s | FileCheck %s
define ptr @rt0(i32 %x) nounwind readnone {
entry:
; CHECK-LABEL: rt0:
; CHECK: mov x0, x29
%0 = tail call ptr @llvm.frameaddress(i32 0)
ret ptr %0
}
define ptr @rt2() nounwind readnone {
entry:
; CHECK-LABEL: rt2:
; CHECK: ldr x[[reg:[0-9]+]], [x29]
; CHECK: ldr x0, [x[[reg]]]
%0 = tail call ptr @llvm.frameaddress(i32 2)
ret ptr %0
}
declare ptr @llvm.frameaddress(i32) nounwind readnone