2014-10-18 01:27:06 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=corei7 | FileCheck %s -check-prefix=CHECK -check-prefix=SSE
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=corei7-avx | FileCheck %s -check-prefix=CHECK -check-prefix=AVX
|
2015-03-31 11:16:51 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=core-avx2 | FileCheck %s -check-prefix=CHECK -check-prefix=AVX2
|
2014-10-18 01:27:06 +08:00
|
|
|
|
|
|
|
; Make sure that we generate non-temporal stores for the test cases below.
|
2015-03-31 11:16:51 +08:00
|
|
|
; We use xorps for zeroing, so domain information isn't available anymore.
|
2014-10-18 01:27:06 +08:00
|
|
|
|
2015-03-31 11:16:51 +08:00
|
|
|
define void @test_zero_v4f32(<4 x float>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v4f32:
|
2014-10-18 01:27:06 +08:00
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <4 x float> zeroinitializer, <4 x float>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-03-31 11:16:51 +08:00
|
|
|
define void @test_zero_v4i32(<4 x i32>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v4i32:
|
2014-10-18 01:27:06 +08:00
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <4 x i32> zeroinitializer, <4 x i32>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-03-31 11:16:51 +08:00
|
|
|
define void @test_zero_v2f64(<2 x double>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v2f64:
|
2014-10-18 01:27:06 +08:00
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <2 x double> zeroinitializer, <2 x double>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-03-31 11:16:51 +08:00
|
|
|
define void @test_zero_v2i64(<2 x i64>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v2i64:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <2 x i64> zeroinitializer, <2 x i64>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v8i16(<8 x i16>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v8i16:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <8 x i16> zeroinitializer, <8 x i16>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v16i8(<16 x i8>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v16i8:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <16 x i8> zeroinitializer, <16 x i8>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; And now YMM versions.
|
|
|
|
|
|
|
|
define void @test_zero_v8f32(<8 x float>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v8f32:
|
|
|
|
; AVX: vmovntps %ymm
|
|
|
|
store <8 x float> zeroinitializer, <8 x float>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v8i32(<8 x i32>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v8i32:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <8 x i32> zeroinitializer, <8 x i32>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v4f64(<4 x double>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v4f64:
|
|
|
|
; AVX: vmovntps %ymm
|
|
|
|
store <4 x double> zeroinitializer, <4 x double>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v4i64(<4 x i64>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v4i64:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <4 x i64> zeroinitializer, <4 x i64>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v16i16(<16 x i16>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v16i16:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <16 x i16> zeroinitializer, <16 x i16>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_zero_v32i8(<32 x i8>* %dst) {
|
|
|
|
; CHECK-LABEL: test_zero_v32i8:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <32 x i8> zeroinitializer, <32 x i8>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
; Check that we also handle arguments. Here the type survives longer.
|
|
|
|
|
|
|
|
define void @test_arg_v4f32(<4 x float> %arg, <4 x float>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v4f32:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <4 x float> %arg, <4 x float>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v4i32(<4 x i32> %arg, <4 x i32>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v4i32:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <4 x i32> %arg, <4 x i32>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v2f64(<2 x double> %arg, <2 x double>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v2f64:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <2 x double> %arg, <2 x double>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v2i64(<2 x i64> %arg, <2 x i64>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v2i64:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <2 x i64> %arg, <2 x i64>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v8i16(<8 x i16> %arg, <8 x i16>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v8i16:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <8 x i16> %arg, <8 x i16>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v16i8(<16 x i8> %arg, <16 x i8>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v16i8:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
store <16 x i8> %arg, <16 x i8>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; And now YMM versions.
|
|
|
|
|
|
|
|
define void @test_arg_v8f32(<8 x float> %arg, <8 x float>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v8f32:
|
|
|
|
; AVX: vmovntps %ymm
|
|
|
|
store <8 x float> %arg, <8 x float>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v8i32(<8 x i32> %arg, <8 x i32>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v8i32:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <8 x i32> %arg, <8 x i32>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v4f64(<4 x double> %arg, <4 x double>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v4f64:
|
|
|
|
; AVX: vmovntps %ymm
|
|
|
|
store <4 x double> %arg, <4 x double>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v4i64(<4 x i64> %arg, <4 x i64>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v4i64:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <4 x i64> %arg, <4 x i64>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v16i16(<16 x i16> %arg, <16 x i16>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v16i16:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <16 x i16> %arg, <16 x i16>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_arg_v32i8(<32 x i8> %arg, <32 x i8>* %dst) {
|
|
|
|
; CHECK-LABEL: test_arg_v32i8:
|
|
|
|
; AVX2: vmovntps %ymm
|
|
|
|
store <32 x i8> %arg, <32 x i8>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
; Now check that if the execution domain is trivially visible, we use it.
|
|
|
|
; We use an add to make the type survive all the way to the MOVNT.
|
|
|
|
|
|
|
|
define void @test_op_v4f32(<4 x float> %a, <4 x float> %b, <4 x float>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v4f32:
|
|
|
|
; SSE: movntps
|
|
|
|
; AVX: vmovntps
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
store <4 x float> %r, <4 x float>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v4i32(<4 x i32> %a, <4 x i32> %b, <4 x i32>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v4i32:
|
|
|
|
; SSE: movntdq
|
|
|
|
; AVX: vmovntdq
|
|
|
|
%r = add <4 x i32> %a, %b
|
|
|
|
store <4 x i32> %r, <4 x i32>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v2f64(<2 x double> %a, <2 x double> %b, <2 x double>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v2f64:
|
|
|
|
; SSE: movntpd
|
|
|
|
; AVX: vmovntpd
|
|
|
|
%r = fadd <2 x double> %a, %b
|
|
|
|
store <2 x double> %r, <2 x double>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v2i64(<2 x i64> %a, <2 x i64> %b, <2 x i64>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v2i64:
|
|
|
|
; SSE: movntdq
|
|
|
|
; AVX: vmovntdq
|
|
|
|
%r = add <2 x i64> %a, %b
|
|
|
|
store <2 x i64> %r, <2 x i64>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v8i16(<8 x i16> %a, <8 x i16> %b, <8 x i16>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v8i16:
|
|
|
|
; SSE: movntdq
|
|
|
|
; AVX: vmovntdq
|
|
|
|
%r = add <8 x i16> %a, %b
|
|
|
|
store <8 x i16> %r, <8 x i16>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v16i8(<16 x i8> %a, <16 x i8> %b, <16 x i8>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v16i8:
|
|
|
|
; SSE: movntdq
|
|
|
|
; AVX: vmovntdq
|
|
|
|
%r = add <16 x i8> %a, %b
|
|
|
|
store <16 x i8> %r, <16 x i8>* %dst, align 16, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; And now YMM versions.
|
|
|
|
|
|
|
|
define void @test_op_v8f32(<8 x float> %a, <8 x float> %b, <8 x float>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v8f32:
|
|
|
|
; AVX: vmovntps %ymm
|
|
|
|
%r = fadd <8 x float> %a, %b
|
|
|
|
store <8 x float> %r, <8 x float>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v8i32(<8 x i32> %a, <8 x i32> %b, <8 x i32>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v8i32:
|
|
|
|
; AVX2: vmovntdq %ymm
|
|
|
|
%r = add <8 x i32> %a, %b
|
|
|
|
store <8 x i32> %r, <8 x i32>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v4f64(<4 x double> %a, <4 x double> %b, <4 x double>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v4f64:
|
|
|
|
; AVX: vmovntpd %ymm
|
|
|
|
%r = fadd <4 x double> %a, %b
|
|
|
|
store <4 x double> %r, <4 x double>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v4i64(<4 x i64> %a, <4 x i64> %b, <4 x i64>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v4i64:
|
|
|
|
; AVX2: vmovntdq %ymm
|
|
|
|
%r = add <4 x i64> %a, %b
|
|
|
|
store <4 x i64> %r, <4 x i64>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v16i16(<16 x i16> %a, <16 x i16> %b, <16 x i16>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v16i16:
|
|
|
|
; AVX2: vmovntdq %ymm
|
|
|
|
%r = add <16 x i16> %a, %b
|
|
|
|
store <16 x i16> %r, <16 x i16>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test_op_v32i8(<32 x i8> %a, <32 x i8> %b, <32 x i8>* %dst) {
|
|
|
|
; CHECK-LABEL: test_op_v32i8:
|
|
|
|
; AVX2: vmovntdq %ymm
|
|
|
|
%r = add <32 x i8> %a, %b
|
|
|
|
store <32 x i8> %r, <32 x i8>* %dst, align 32, !nontemporal !1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
IR: Make metadata typeless in assembly
Now that `Metadata` is typeless, reflect that in the assembly. These
are the matching assembly changes for the metadata/value split in
r223802.
- Only use the `metadata` type when referencing metadata from a call
intrinsic -- i.e., only when it's used as a `Value`.
- Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
when referencing it from call intrinsics.
So, assembly like this:
define @foo(i32 %v) {
call void @llvm.foo(metadata !{i32 %v}, metadata !0)
call void @llvm.foo(metadata !{i32 7}, metadata !0)
call void @llvm.foo(metadata !1, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{metadata !3}, metadata !0)
ret void, !bar !2
}
!0 = metadata !{metadata !2}
!1 = metadata !{i32* @global}
!2 = metadata !{metadata !3}
!3 = metadata !{}
turns into this:
define @foo(i32 %v) {
call void @llvm.foo(metadata i32 %v, metadata !0)
call void @llvm.foo(metadata i32 7, metadata !0)
call void @llvm.foo(metadata i32* @global, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{!3}, metadata !0)
ret void, !bar !2
}
!0 = !{!2}
!1 = !{i32* @global}
!2 = !{!3}
!3 = !{}
I wrote an upgrade script that handled almost all of the tests in llvm
and many of the tests in cfe (even handling many `CHECK` lines). I've
attached it (or will attach it in a moment if you're speedy) to PR21532
to help everyone update their out-of-tree testcases.
This is part of PR21532.
llvm-svn: 224257
2014-12-16 03:07:53 +08:00
|
|
|
!1 = !{i32 1}
|