2015-12-21 22:43:45 +08:00
|
|
|
; RUN: llc -mtriple=arm64-linux-gnu -enable-misched=false -disable-post-ra < %s | FileCheck %s
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
@var = global i32 0, align 4
|
|
|
|
|
2015-04-18 05:31:25 +08:00
|
|
|
; CHECK-LABEL: @test_i128_align
|
2014-03-29 18:18:08 +08:00
|
|
|
define i128 @test_i128_align(i32, i128 %arg, i32 %after) {
|
|
|
|
store i32 %after, i32* @var, align 4
|
2018-02-09 17:22:20 +08:00
|
|
|
; CHECK-DAG: str w4, [{{x[0-9]+}}, :lo12:var]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
ret i128 %arg
|
2018-02-09 17:22:20 +08:00
|
|
|
; CHECK-DAG: mov x0, x2
|
|
|
|
; CHECK-DAG: mov x1, x3
|
2014-03-29 18:18:08 +08:00
|
|
|
}
|
|
|
|
|
2015-04-18 05:31:25 +08:00
|
|
|
; CHECK-LABEL: @test_i64x2_align
|
|
|
|
define [2 x i64] @test_i64x2_align(i32, [2 x i64] %arg, i32 %after) {
|
|
|
|
store i32 %after, i32* @var, align 4
|
2018-02-09 17:22:20 +08:00
|
|
|
; CHECK-DAG: str w3, [{{x[0-9]+}}, :lo12:var]
|
2015-04-18 05:31:25 +08:00
|
|
|
|
|
|
|
ret [2 x i64] %arg
|
2018-02-09 17:22:20 +08:00
|
|
|
; CHECK-DAG: mov x0, x1
|
2015-04-18 05:31:25 +08:00
|
|
|
; CHECK: mov x1, x2
|
|
|
|
}
|
|
|
|
|
2014-03-29 18:18:08 +08:00
|
|
|
@var64 = global i64 0, align 8
|
|
|
|
|
2018-05-02 03:26:15 +08:00
|
|
|
; Check stack slots are 64-bit at all times.
|
2014-03-29 18:18:08 +08:00
|
|
|
define void @test_stack_slots([8 x i32], i1 %bool, i8 %char, i16 %short,
|
|
|
|
i32 %int, i64 %long) {
|
2018-05-02 03:26:15 +08:00
|
|
|
; CHECK-LABEL: test_stack_slots:
|
|
|
|
; CHECK-DAG: ldr w[[ext1:[0-9]+]], [sp, #24]
|
|
|
|
; CHECK-DAG: ldrh w[[ext2:[0-9]+]], [sp, #16]
|
|
|
|
; CHECK-DAG: ldrb w[[ext3:[0-9]+]], [sp, #8]
|
|
|
|
; CHECK-DAG: ldr x[[ext4:[0-9]+]], [sp, #32]
|
|
|
|
; CHECK-DAG: ldrb w[[ext5:[0-9]+]], [sp]
|
|
|
|
; CHECK-DAG: and x[[ext5]], x[[ext5]], #0x1
|
|
|
|
|
2014-03-29 18:18:08 +08:00
|
|
|
%ext_bool = zext i1 %bool to i64
|
|
|
|
store volatile i64 %ext_bool, i64* @var64, align 8
|
2018-05-02 03:26:15 +08:00
|
|
|
; CHECK: str x[[ext5]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
%ext_char = zext i8 %char to i64
|
|
|
|
store volatile i64 %ext_char, i64* @var64, align 8
|
2018-05-02 03:26:15 +08:00
|
|
|
; CHECK: str x[[ext3]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
%ext_short = zext i16 %short to i64
|
|
|
|
store volatile i64 %ext_short, i64* @var64, align 8
|
2018-05-02 03:26:15 +08:00
|
|
|
; CHECK: str x[[ext2]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
%ext_int = zext i32 %int to i64
|
|
|
|
store volatile i64 %ext_int, i64* @var64, align 8
|
2018-05-02 03:26:15 +08:00
|
|
|
; CHECK: str x[[ext1]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
store volatile i64 %long, i64* @var64, align 8
|
2018-05-02 03:26:15 +08:00
|
|
|
; CHECK: str x[[ext4]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Make sure the callee does extensions (in the absence of zext/sext
|
|
|
|
; keyword on args) while we're here.
|
|
|
|
|
|
|
|
define void @test_extension(i1 %bool, i8 %char, i16 %short, i32 %int) {
|
|
|
|
%ext_bool = zext i1 %bool to i64
|
|
|
|
store volatile i64 %ext_bool, i64* @var64
|
2018-03-02 06:32:25 +08:00
|
|
|
; CHECK: and [[EXT:x[0-9]+]], x0, #0x1
|
|
|
|
; CHECK: str [[EXT]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
%ext_char = sext i8 %char to i64
|
|
|
|
store volatile i64 %ext_char, i64* @var64
|
2014-04-18 04:47:31 +08:00
|
|
|
; CHECK: sxtb [[EXT:x[0-9]+]], w1
|
2014-03-29 18:18:08 +08:00
|
|
|
; CHECK: str [[EXT]], [{{x[0-9]+}}, :lo12:var64]
|
|
|
|
|
|
|
|
%ext_short = zext i16 %short to i64
|
|
|
|
store volatile i64 %ext_short, i64* @var64
|
2018-03-02 06:32:25 +08:00
|
|
|
; CHECK: and [[EXT:x[0-9]+]], x2, #0xffff
|
|
|
|
; CHECK: str [[EXT]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
%ext_int = zext i32 %int to i64
|
|
|
|
store volatile i64 %ext_int, i64* @var64
|
2015-07-30 05:34:32 +08:00
|
|
|
; CHECK: mov w[[EXT:[0-9]+]], w3
|
|
|
|
; CHECK: str x[[EXT]], [{{x[0-9]+}}, :lo12:var64]
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @variadic(i32 %a, ...)
|
|
|
|
|
|
|
|
; Under AAPCS variadic functions have the same calling convention as
|
|
|
|
; others. The extra arguments should go in registers rather than on the stack.
|
|
|
|
define void @test_variadic() {
|
[opaque pointer type] Add textual IR support for explicit type parameter to the call instruction
See r230786 and r230794 for similar changes to gep and load
respectively.
Call is a bit different because it often doesn't have a single explicit
type - usually the type is deduced from the arguments, and just the
return type is explicit. In those cases there's no need to change the
IR.
When that's not the case, the IR usually contains the pointer type of
the first operand - but since typed pointers are going away, that
representation is insufficient so I'm just stripping the "pointerness"
of the explicit type away.
This does make the IR a bit weird - it /sort of/ reads like the type of
the first operand: "call void () %x(" but %x is actually of type "void
()*" and will eventually be just of type "ptr". But this seems not too
bad and I don't think it would benefit from repeating the type
("void (), void () * %x(" and then eventually "void (), ptr %x(") as has
been done with gep and load.
This also has a side benefit: since the explicit type is no longer a
pointer, there's no ambiguity between an explicit type and a function
that returns a function pointer. Previously this case needed an explicit
type (eg: a function returning a void() function was written as
"call void () () * @x(" rather than "call void () * @x(" because of the
ambiguity between a function returning a pointer to a void() function
and a function returning void).
No ambiguity means even function pointer return types can just be
written alone, without writing the whole function's type.
This leaves /only/ the varargs case where the explicit type is required.
Given the special type syntax in call instructions, the regex-fu used
for migration was a bit more involved in its own unique way (as every
one of these is) so here it is. Use it in conjunction with the apply.sh
script and associated find/xargs commands I've provided in rr230786 to
migrate your out of tree tests. Do let me know if any of this doesn't
cover your cases & we can iterate on a more general script/regexes to
help others with out of tree tests.
About 9 test cases couldn't be automatically migrated - half of those
were functions returning function pointers, where I just had to manually
delete the function argument types now that we didn't need an explicit
function type there. The other half were typedefs of function types used
in calls - just had to manually drop the * from those.
import fileinput
import sys
import re
pat = re.compile(r'((?:=|:|^|\s)call\s(?:[^@]*?))(\s*$|\s*(?:(?:\[\[[a-zA-Z0-9_]+\]\]|[@%](?:(")?[\\\?@a-zA-Z0-9_.]*?(?(3)"|)|{{.*}}))(?:\(|$)|undef|inttoptr|bitcast|null|asm).*$)')
addrspace_end = re.compile(r"addrspace\(\d+\)\s*\*$")
func_end = re.compile("(?:void.*|\)\s*)\*$")
def conv(match, line):
if not match or re.search(addrspace_end, match.group(1)) or not re.search(func_end, match.group(1)):
return line
return line[:match.start()] + match.group(1)[:match.group(1).rfind('*')].rstrip() + match.group(2) + line[match.end():]
for line in sys.stdin:
sys.stdout.write(conv(re.search(pat, line), line))
llvm-svn: 235145
2015-04-17 07:24:18 +08:00
|
|
|
call void(i32, ...) @variadic(i32 0, i64 1, double 2.0)
|
2014-03-29 18:18:08 +08:00
|
|
|
; CHECK: fmov d0, #2.0
|
2014-04-16 19:52:51 +08:00
|
|
|
; CHECK: orr w1, wzr, #0x1
|
2014-03-29 18:18:08 +08:00
|
|
|
; CHECK: bl variadic
|
|
|
|
ret void
|
|
|
|
}
|
2014-04-16 17:03:25 +08:00
|
|
|
|
|
|
|
; We weren't marking x7 as used after deciding that the i128 didn't fit into
|
|
|
|
; registers and putting the first half on the stack, so the *second* half went
|
|
|
|
; into x7. Yuck!
|
|
|
|
define i128 @test_i128_shadow([7 x i64] %x0_x6, i128 %sp) {
|
|
|
|
; CHECK-LABEL: test_i128_shadow:
|
|
|
|
; CHECK: ldp x0, x1, [sp]
|
|
|
|
|
|
|
|
ret i128 %sp
|
|
|
|
}
|
2014-04-25 20:07:03 +08:00
|
|
|
|
|
|
|
; This test is to check if fp128 can be correctly handled on stack.
|
|
|
|
define fp128 @test_fp128([8 x float] %arg0, fp128 %arg1) {
|
|
|
|
; CHECK-LABEL: test_fp128:
|
|
|
|
; CHECK: ldr {{q[0-9]+}}, [sp]
|
|
|
|
ret fp128 %arg1
|
|
|
|
}
|
2014-06-03 11:25:09 +08:00
|
|
|
|
|
|
|
; Check if VPR can be correctly pass by stack.
|
|
|
|
define <2 x double> @test_vreg_stack([8 x <2 x double>], <2 x double> %varg_stack) {
|
|
|
|
entry:
|
|
|
|
; CHECK-LABEL: test_vreg_stack:
|
|
|
|
; CHECK: ldr {{q[0-9]+}}, [sp]
|
|
|
|
ret <2 x double> %varg_stack;
|
|
|
|
}
|
2014-07-11 21:33:46 +08:00
|
|
|
|
|
|
|
; Check that f16 can be passed and returned (ACLE 2.0 extension)
|
|
|
|
define half @test_half(float, half %arg) {
|
|
|
|
; CHECK-LABEL: test_half:
|
2014-08-28 00:16:04 +08:00
|
|
|
; CHECK: mov v0.16b, v1.16b
|
2014-07-11 21:33:46 +08:00
|
|
|
ret half %arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check that f16 constants are materialized correctly
|
|
|
|
define half @test_half_const() {
|
|
|
|
; CHECK-LABEL: test_half_const:
|
|
|
|
; CHECK: ldr h0, [x{{[0-9]+}}, :lo12:{{.*}}]
|
|
|
|
ret half 0xH4248
|
|
|
|
}
|
2014-08-28 00:16:04 +08:00
|
|
|
|
|
|
|
; Check that v4f16 can be passed and returned in registers
|
|
|
|
define <4 x half> @test_v4_half_register(float, <4 x half> %arg) {
|
|
|
|
; CHECK-LABEL: test_v4_half_register:
|
|
|
|
; CHECK: mov v0.16b, v1.16b
|
|
|
|
ret <4 x half> %arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check that v8f16 can be passed and returned in registers
|
|
|
|
define <8 x half> @test_v8_half_register(float, <8 x half> %arg) {
|
|
|
|
; CHECK-LABEL: test_v8_half_register:
|
|
|
|
; CHECK: mov v0.16b, v1.16b
|
|
|
|
ret <8 x half> %arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check that v4f16 can be passed and returned on the stack
|
|
|
|
define <4 x half> @test_v4_half_stack([8 x <2 x double>], <4 x half> %arg) {
|
|
|
|
; CHECK-LABEL: test_v4_half_stack:
|
|
|
|
; CHECK: ldr d0, [sp]
|
|
|
|
ret <4 x half> %arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check that v8f16 can be passed and returned on the stack
|
|
|
|
define <8 x half> @test_v8_half_stack([8 x <2 x double>], <8 x half> %arg) {
|
|
|
|
; CHECK-LABEL: test_v8_half_stack:
|
|
|
|
; CHECK: ldr q0, [sp]
|
|
|
|
ret <8 x half> %arg;
|
|
|
|
}
|