llvm/test/CodeGen/ARM/thumb-alignment.ll
Dan Gohman f4e788949d [MC] Use .p2align instead of .align
For historic reasons, the behavior of .align differs between targets.
Fortunately, there are alternatives, .p2align and .balign, which make the
interpretation of the parameter explicit, and which behave consistently across
targets.

This patch teaches MC to use .p2align instead of .align, so that people reading
code for multiple architectures don't have to remember which way each platform
does its .align directive.

Differential Revision: http://reviews.llvm.org/D16549


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258750 91177308-0d34-0410-b5e6-96231b3b80d8
2016-01-26 00:03:25 +00:00

55 lines
1.1 KiB
LLVM

; RUN: llc -relocation-model=pic -mtriple=thumbv7-unknown-linux -o - %s | FileCheck %s
@x = external global i32
; CHECK: .globl foo
; CHECK-NEXT: .p2align 2
define i32* @foo() {
ret i32* @x
}
; CHECK: .globl bar
; CHECK-NEXT: .p2align 1
define i32* @bar() {
ret i32* zeroinitializer
}
@a = external global i32
@b = external global i32
@c = external global i32
@d = external global i32
; Create a Thumb-2 jump table, which should force alignment to 4 bytes.
; CHECK: .globl baz
; CHECK-NEXT: .p2align 2
; CHECK: tbb
define i32 @baz() {
%1 = load i32, i32* @c, align 4
switch i32 %1, label %7 [
i32 1, label %2
i32 4, label %5
i32 9, label %5
i32 3, label %8
]
; <label>:2
%3 = load i32, i32* @a, align 4
%4 = tail call i32 bitcast (i32 (...)* @fn2 to i32 (i32 (...)*, i32, i32)*)(i32 (...)* bitcast (i32 ()* @baz to i32 (...)*), i32 0, i32 %3) #2
br label %8
; <label>:5
%6 = load i32, i32* @d, align 4
store i32 %6, i32* @b, align 4
br label %8
; <label>:7
br label %8
; <label>:8
%e.0 = phi i32 [ 1, %7 ], [ 1, %2 ], [ 0, %0 ], [ 0, %5 ]
ret i32 %e.0
}
declare i32 @fn2(...)