mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
3ae734a60c
This was done with the following sed invocation to catch label lines demarking function boundaries: sed -i '' "s/^;\( *\)\([A-Z0-9_]*\):\( *\)test\([A-Za-z0-9_-]*\):\( *\)$/;\1\2-LABEL:\3test\4:\5/g" test/CodeGen/*/*.ll which was written conservatively to avoid false positives rather than false negatives. I scanned through all the changes and everything looks correct. llvm-svn: 186258
28 lines
1.0 KiB
LLVM
28 lines
1.0 KiB
LLVM
; RUN: llc -mtriple=aarch64-none-linux-gnu -verify-machineinstrs < %s | FileCheck %s
|
|
; RUN: llc -code-model=large -mtriple=aarch64-none-linux-gnu -verify-machineinstrs < %s | FileCheck --check-prefix=CHECK-LARGE %s
|
|
|
|
@addr = global i8* null
|
|
|
|
define void @test_blockaddress() {
|
|
; CHECK-LABEL: test_blockaddress:
|
|
store volatile i8* blockaddress(@test_blockaddress, %block), i8** @addr
|
|
%val = load volatile i8** @addr
|
|
indirectbr i8* %val, [label %block]
|
|
; CHECK: adrp [[DEST_HI:x[0-9]+]], [[DEST_LBL:.Ltmp[0-9]+]]
|
|
; CHECK: add [[DEST:x[0-9]+]], [[DEST_HI]], #:lo12:[[DEST_LBL]]
|
|
; CHECK: str [[DEST]],
|
|
; CHECK: ldr [[NEWDEST:x[0-9]+]]
|
|
; CHECK: br [[NEWDEST]]
|
|
|
|
; CHECK-LARGE: movz [[ADDR_REG:x[0-9]+]], #:abs_g3:[[DEST_LBL:.Ltmp[0-9]+]]
|
|
; CHECK-LARGE: movk [[ADDR_REG]], #:abs_g2_nc:[[DEST_LBL]]
|
|
; CHECK-LARGE: movk [[ADDR_REG]], #:abs_g1_nc:[[DEST_LBL]]
|
|
; CHECK-LARGE: movk [[ADDR_REG]], #:abs_g0_nc:[[DEST_LBL]]
|
|
; CHECK-LARGE: str [[ADDR_REG]],
|
|
; CHECK-LARGE: ldr [[NEWDEST:x[0-9]+]]
|
|
; CHECK-LARGE: br [[NEWDEST]]
|
|
|
|
block:
|
|
ret void
|
|
}
|