2014-05-24 12:50:23 +00:00
|
|
|
; RUN: llc -mtriple=aarch64-linux-gnu -verify-machineinstrs -o - %s | FileCheck %s
|
2013-01-31 12:12:40 +00:00
|
|
|
|
|
|
|
@var32 = global [3 x i32] zeroinitializer
|
|
|
|
@var64 = global [3 x i64] zeroinitializer
|
|
|
|
@var32_align64 = global [3 x i32] zeroinitializer, align 8
|
2014-05-06 16:48:58 +00:00
|
|
|
@alias = alias [3 x i32]* @var32_align64
|
2013-01-31 12:12:40 +00:00
|
|
|
|
|
|
|
define i64 @test_align32() {
|
2013-07-13 20:38:47 +00:00
|
|
|
; CHECK-LABEL: test_align32:
|
2013-01-31 12:12:40 +00:00
|
|
|
%addr = bitcast [3 x i32]* @var32 to i64*
|
|
|
|
|
|
|
|
; Since @var32 is only guaranteed to be aligned to 32-bits, it's invalid to
|
|
|
|
; emit an "LDR x0, [x0, #:lo12:var32] instruction to implement this load.
|
|
|
|
%val = load i64* %addr
|
|
|
|
; CHECK: adrp [[HIBITS:x[0-9]+]], var32
|
2014-04-15 14:00:29 +00:00
|
|
|
; CHECK: add x[[ADDR:[0-9]+]], [[HIBITS]], {{#?}}:lo12:var32
|
2013-01-31 12:12:40 +00:00
|
|
|
; CHECK: ldr x0, [x[[ADDR]]]
|
|
|
|
|
|
|
|
ret i64 %val
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test_align64() {
|
2013-07-13 20:38:47 +00:00
|
|
|
; CHECK-LABEL: test_align64:
|
2013-01-31 12:12:40 +00:00
|
|
|
%addr = bitcast [3 x i64]* @var64 to i64*
|
|
|
|
|
|
|
|
; However, var64 *is* properly aligned and emitting an adrp/add/ldr would be
|
|
|
|
; inefficient.
|
|
|
|
%val = load i64* %addr
|
|
|
|
; CHECK: adrp x[[HIBITS:[0-9]+]], var64
|
|
|
|
; CHECK-NOT: add x[[HIBITS]]
|
2014-04-15 14:00:29 +00:00
|
|
|
; CHECK: ldr x0, [x[[HIBITS]], {{#?}}:lo12:var64]
|
2013-01-31 12:12:40 +00:00
|
|
|
|
|
|
|
ret i64 %val
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test_var32_align64() {
|
2013-07-13 20:38:47 +00:00
|
|
|
; CHECK-LABEL: test_var32_align64:
|
2013-01-31 12:12:40 +00:00
|
|
|
%addr = bitcast [3 x i32]* @var32_align64 to i64*
|
|
|
|
|
|
|
|
; Since @var32 is only guaranteed to be aligned to 32-bits, it's invalid to
|
|
|
|
; emit an "LDR x0, [x0, #:lo12:var32] instruction to implement this load.
|
|
|
|
%val = load i64* %addr
|
|
|
|
; CHECK: adrp x[[HIBITS:[0-9]+]], var32_align64
|
|
|
|
; CHECK-NOT: add x[[HIBITS]]
|
2014-04-15 14:00:29 +00:00
|
|
|
; CHECK: ldr x0, [x[[HIBITS]], {{#?}}:lo12:var32_align64]
|
2013-01-31 12:12:40 +00:00
|
|
|
|
|
|
|
ret i64 %val
|
|
|
|
}
|
|
|
|
|
2014-05-06 16:48:58 +00:00
|
|
|
define i64 @test_var32_alias() {
|
|
|
|
; CHECK-LABEL: test_var32_alias:
|
|
|
|
%addr = bitcast [3 x i32]* @alias to i64*
|
|
|
|
|
|
|
|
; Test that we can find the alignment for aliases.
|
|
|
|
%val = load i64* %addr
|
|
|
|
; CHECK: adrp x[[HIBITS:[0-9]+]], alias
|
|
|
|
; CHECK-NOT: add x[[HIBITS]]
|
|
|
|
; CHECK: ldr x0, [x[[HIBITS]], {{#?}}:lo12:alias]
|
|
|
|
|
|
|
|
ret i64 %val
|
|
|
|
}
|
|
|
|
|
2013-01-31 12:12:40 +00:00
|
|
|
@yet_another_var = external global {i32, i32}
|
|
|
|
|
|
|
|
define i64 @test_yet_another_var() {
|
2013-07-13 20:38:47 +00:00
|
|
|
; CHECK-LABEL: test_yet_another_var:
|
2013-01-31 12:12:40 +00:00
|
|
|
|
|
|
|
; @yet_another_var has a preferred alignment of 8, but that's not enough if
|
|
|
|
; we're going to be linking against other things. Its ABI alignment is only 4
|
|
|
|
; so we can't fold the load.
|
|
|
|
%val = load i64* bitcast({i32, i32}* @yet_another_var to i64*)
|
|
|
|
; CHECK: adrp [[HIBITS:x[0-9]+]], yet_another_var
|
2014-04-15 14:00:29 +00:00
|
|
|
; CHECK: add x[[ADDR:[0-9]+]], [[HIBITS]], {{#?}}:lo12:yet_another_var
|
2013-01-31 12:12:40 +00:00
|
|
|
; CHECK: ldr x0, [x[[ADDR]]]
|
|
|
|
ret i64 %val
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64()* @test_functions() {
|
2013-07-13 20:38:47 +00:00
|
|
|
; CHECK-LABEL: test_functions:
|
2013-01-31 12:12:40 +00:00
|
|
|
ret i64()* @test_yet_another_var
|
|
|
|
; CHECK: adrp [[HIBITS:x[0-9]+]], test_yet_another_var
|
2014-04-15 14:00:29 +00:00
|
|
|
; CHECK: add x0, [[HIBITS]], {{#?}}:lo12:test_yet_another_var
|
2013-01-31 12:12:40 +00:00
|
|
|
}
|