You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
584 B
20 lines
584 B
; Test target-specific stack cookie location.
|
|
; RUN: llc -mtriple=aarch64-linux-android < %s -o - | FileCheck --check-prefix=ANDROID-AARCH64 %s
|
|
|
|
define void @_Z1fv() sspreq {
|
|
entry:
|
|
%x = alloca i32, align 4
|
|
%0 = bitcast i32* %x to i8*
|
|
call void @_Z7CapturePi(i32* nonnull %x)
|
|
ret void
|
|
}
|
|
|
|
declare void @_Z7CapturePi(i32*)
|
|
|
|
; ANDROID-AARCH64: mrs [[A:.*]], TPIDR_EL0
|
|
; ANDROID-AARCH64: ldr [[B:.*]], {{\[}}[[A]], #40]
|
|
; ANDROID-AARCH64: str [[B]], [sp,
|
|
; ANDROID-AARCH64: ldr [[C:.*]], {{\[}}[[A]], #40]
|
|
; ANDROID-AARCH64: ldr [[D:.*]], [sp,
|
|
; ANDROID-AARCH64: cmp [[C]], [[D]]
|