Imported Upstream version 5.18.0.167

Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-20 08:25:10 +00:00
parent e19d552987
commit b084638f15
28489 changed files with 184 additions and 3866856 deletions

View File

@ -1,40 +0,0 @@
; RUN: llc -mtriple=aarch64-apple-ios %s -o - -aarch64-enable-nonlazybind | FileCheck %s
; RUN: llc -mtriple=aarch64-apple-ios %s -o - | FileCheck %s --check-prefix=CHECK-NORMAL
define void @local() nonlazybind {
ret void
}
declare void @nonlocal() nonlazybind
define void @test_laziness() {
; CHECK-LABEL: test_laziness:
; CHECK: bl _local
; CHECK: adrp x[[TMP:[0-9]+]], _nonlocal@GOTPAGE
; CHECK: ldr [[FUNC:x[0-9]+]], [x[[TMP]], _nonlocal@GOTPAGEOFF]
; CHECK: blr [[FUNC]]
; CHECK-NORMAL-LABEL: test_laziness:
; CHECK-NORMAL: bl _local
; CHEKC-NORMAL: bl _nonlocal
call void @local()
call void @nonlocal()
ret void
}
define void @test_laziness_tail() {
; CHECK-LABEL: test_laziness_tail:
; CHECK: adrp x[[TMP:[0-9]+]], _nonlocal@GOTPAGE
; CHECK: ldr [[FUNC:x[0-9]+]], [x[[TMP]], _nonlocal@GOTPAGEOFF]
; CHECK: br [[FUNC]]
; CHECK-NORMAL-LABEL: test_laziness_tail:
; CHECK-NORMAL: b _nonlocal
tail call void @nonlocal()
ret void
}