2011-09-23 04:15:48 +08:00
|
|
|
; RUN: llc < %s -march=x86-64 -mattr=+sse3,-avx | FileCheck %s -check-prefix=SSE3
|
|
|
|
; RUN: llc < %s -march=x86-64 -mattr=-sse3,+avx | FileCheck %s -check-prefix=AVX
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddpd1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddpd
|
|
|
|
; SSE3: haddpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddpd1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddpd
|
|
|
|
define <2 x double> @haddpd1(<2 x double> %x, <2 x double> %y) {
|
|
|
|
%a = shufflevector <2 x double> %x, <2 x double> %y, <2 x i32> <i32 0, i32 2>
|
|
|
|
%b = shufflevector <2 x double> %x, <2 x double> %y, <2 x i32> <i32 1, i32 3>
|
|
|
|
%r = fadd <2 x double> %a, %b
|
|
|
|
ret <2 x double> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddpd2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddpd
|
|
|
|
; SSE3: haddpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddpd2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddpd
|
|
|
|
define <2 x double> @haddpd2(<2 x double> %x, <2 x double> %y) {
|
|
|
|
%a = shufflevector <2 x double> %x, <2 x double> %y, <2 x i32> <i32 1, i32 2>
|
|
|
|
%b = shufflevector <2 x double> %y, <2 x double> %x, <2 x i32> <i32 2, i32 1>
|
|
|
|
%r = fadd <2 x double> %a, %b
|
|
|
|
ret <2 x double> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddpd3:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddpd
|
|
|
|
; SSE3: haddpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddpd3:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddpd
|
|
|
|
define <2 x double> @haddpd3(<2 x double> %x) {
|
|
|
|
%a = shufflevector <2 x double> %x, <2 x double> undef, <2 x i32> <i32 0, i32 undef>
|
|
|
|
%b = shufflevector <2 x double> %x, <2 x double> undef, <2 x i32> <i32 1, i32 undef>
|
|
|
|
%r = fadd <2 x double> %a, %b
|
|
|
|
ret <2 x double> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps1(<4 x float> %x, <4 x float> %y) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> %y, <4 x i32> <i32 0, i32 2, i32 4, i32 6>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> %y, <4 x i32> <i32 1, i32 3, i32 5, i32 7>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps2(<4 x float> %x, <4 x float> %y) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> %y, <4 x i32> <i32 1, i32 2, i32 5, i32 6>
|
|
|
|
%b = shufflevector <4 x float> %y, <4 x float> %x, <4 x i32> <i32 4, i32 7, i32 0, i32 3>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps3:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps3:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps3(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 undef, i32 2, i32 4, i32 6>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 undef, i32 3, i32 5, i32 7>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps4:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps4:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps4(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 0, i32 2, i32 undef, i32 undef>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 1, i32 3, i32 undef, i32 undef>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps5:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps5:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps5(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 0, i32 3, i32 undef, i32 undef>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 1, i32 2, i32 undef, i32 undef>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps6:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps6:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps6(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 0, i32 undef, i32 undef, i32 undef>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 1, i32 undef, i32 undef, i32 undef>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: haddps7:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: haddps7:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <4 x float> @haddps7(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 undef, i32 3, i32 undef, i32 undef>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 undef, i32 2, i32 undef, i32 undef>
|
|
|
|
%r = fadd <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: hsubpd1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhsubpd
|
|
|
|
; SSE3: hsubpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: hsubpd1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhsubpd
|
|
|
|
define <2 x double> @hsubpd1(<2 x double> %x, <2 x double> %y) {
|
|
|
|
%a = shufflevector <2 x double> %x, <2 x double> %y, <2 x i32> <i32 0, i32 2>
|
|
|
|
%b = shufflevector <2 x double> %x, <2 x double> %y, <2 x i32> <i32 1, i32 3>
|
|
|
|
%r = fsub <2 x double> %a, %b
|
|
|
|
ret <2 x double> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: hsubpd2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhsubpd
|
|
|
|
; SSE3: hsubpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: hsubpd2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhsubpd
|
|
|
|
define <2 x double> @hsubpd2(<2 x double> %x) {
|
|
|
|
%a = shufflevector <2 x double> %x, <2 x double> undef, <2 x i32> <i32 0, i32 undef>
|
|
|
|
%b = shufflevector <2 x double> %x, <2 x double> undef, <2 x i32> <i32 1, i32 undef>
|
|
|
|
%r = fsub <2 x double> %a, %b
|
|
|
|
ret <2 x double> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: hsubps1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhsubps
|
|
|
|
; SSE3: hsubps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: hsubps1:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhsubps
|
|
|
|
define <4 x float> @hsubps1(<4 x float> %x, <4 x float> %y) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> %y, <4 x i32> <i32 0, i32 2, i32 4, i32 6>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> %y, <4 x i32> <i32 1, i32 3, i32 5, i32 7>
|
|
|
|
%r = fsub <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: hsubps2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhsubps
|
|
|
|
; SSE3: hsubps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: hsubps2:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhsubps
|
|
|
|
define <4 x float> @hsubps2(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 undef, i32 2, i32 4, i32 6>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 undef, i32 3, i32 5, i32 7>
|
|
|
|
%r = fsub <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: hsubps3:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhsubps
|
|
|
|
; SSE3: hsubps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: hsubps3:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhsubps
|
|
|
|
define <4 x float> @hsubps3(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 0, i32 2, i32 undef, i32 undef>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 1, i32 3, i32 undef, i32 undef>
|
|
|
|
%r = fsub <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: hsubps4:
|
2011-09-23 04:15:48 +08:00
|
|
|
; SSE3-NOT: vhsubps
|
|
|
|
; SSE3: hsubps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: hsubps4:
|
2011-09-23 04:15:48 +08:00
|
|
|
; AVX: vhsubps
|
|
|
|
define <4 x float> @hsubps4(<4 x float> %x) {
|
|
|
|
%a = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 0, i32 undef, i32 undef, i32 undef>
|
|
|
|
%b = shufflevector <4 x float> %x, <4 x float> undef, <4 x i32> <i32 1, i32 undef, i32 undef, i32 undef>
|
|
|
|
%r = fsub <4 x float> %a, %b
|
|
|
|
ret <4 x float> %r
|
|
|
|
}
|
2011-12-02 15:16:01 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhaddps1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhaddps1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <8 x float> @vhaddps1(<8 x float> %x, <8 x float> %y) {
|
|
|
|
%a = shufflevector <8 x float> %x, <8 x float> %y, <8 x i32> <i32 0, i32 2, i32 8, i32 10, i32 4, i32 6, i32 12, i32 14>
|
|
|
|
%b = shufflevector <8 x float> %x, <8 x float> %y, <8 x i32> <i32 1, i32 3, i32 9, i32 11, i32 5, i32 7, i32 13, i32 15>
|
|
|
|
%r = fadd <8 x float> %a, %b
|
|
|
|
ret <8 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhaddps2:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhaddps2:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <8 x float> @vhaddps2(<8 x float> %x, <8 x float> %y) {
|
|
|
|
%a = shufflevector <8 x float> %x, <8 x float> %y, <8 x i32> <i32 1, i32 2, i32 9, i32 10, i32 5, i32 6, i32 13, i32 14>
|
|
|
|
%b = shufflevector <8 x float> %y, <8 x float> %x, <8 x i32> <i32 8, i32 11, i32 0, i32 3, i32 12, i32 15, i32 4, i32 7>
|
|
|
|
%r = fadd <8 x float> %a, %b
|
|
|
|
ret <8 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhaddps3:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhaddps
|
|
|
|
; SSE3: haddps
|
|
|
|
; SSE3: haddps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhaddps3:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhaddps
|
|
|
|
define <8 x float> @vhaddps3(<8 x float> %x) {
|
|
|
|
%a = shufflevector <8 x float> %x, <8 x float> undef, <8 x i32> <i32 undef, i32 2, i32 8, i32 10, i32 4, i32 6, i32 undef, i32 14>
|
|
|
|
%b = shufflevector <8 x float> %x, <8 x float> undef, <8 x i32> <i32 1, i32 3, i32 9, i32 undef, i32 5, i32 7, i32 13, i32 15>
|
|
|
|
%r = fadd <8 x float> %a, %b
|
|
|
|
ret <8 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhsubps1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhsubps
|
|
|
|
; SSE3: hsubps
|
|
|
|
; SSE3: hsubps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhsubps1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhsubps
|
|
|
|
define <8 x float> @vhsubps1(<8 x float> %x, <8 x float> %y) {
|
|
|
|
%a = shufflevector <8 x float> %x, <8 x float> %y, <8 x i32> <i32 0, i32 2, i32 8, i32 10, i32 4, i32 6, i32 12, i32 14>
|
|
|
|
%b = shufflevector <8 x float> %x, <8 x float> %y, <8 x i32> <i32 1, i32 3, i32 9, i32 11, i32 5, i32 7, i32 13, i32 15>
|
|
|
|
%r = fsub <8 x float> %a, %b
|
|
|
|
ret <8 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhsubps3:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhsubps
|
|
|
|
; SSE3: hsubps
|
|
|
|
; SSE3: hsubps
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhsubps3:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhsubps
|
|
|
|
define <8 x float> @vhsubps3(<8 x float> %x) {
|
|
|
|
%a = shufflevector <8 x float> %x, <8 x float> undef, <8 x i32> <i32 undef, i32 2, i32 8, i32 10, i32 4, i32 6, i32 undef, i32 14>
|
|
|
|
%b = shufflevector <8 x float> %x, <8 x float> undef, <8 x i32> <i32 1, i32 3, i32 9, i32 undef, i32 5, i32 7, i32 13, i32 15>
|
|
|
|
%r = fsub <8 x float> %a, %b
|
|
|
|
ret <8 x float> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhaddpd1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhaddpd
|
|
|
|
; SSE3: haddpd
|
|
|
|
; SSE3: haddpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhaddpd1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhaddpd
|
|
|
|
define <4 x double> @vhaddpd1(<4 x double> %x, <4 x double> %y) {
|
|
|
|
%a = shufflevector <4 x double> %x, <4 x double> %y, <4 x i32> <i32 0, i32 4, i32 2, i32 6>
|
|
|
|
%b = shufflevector <4 x double> %x, <4 x double> %y, <4 x i32> <i32 1, i32 5, i32 3, i32 7>
|
|
|
|
%r = fadd <4 x double> %a, %b
|
|
|
|
ret <4 x double> %r
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; SSE3-LABEL: vhsubpd1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; SSE3-NOT: vhsubpd
|
|
|
|
; SSE3: hsubpd
|
|
|
|
; SSE3: hsubpd
|
2013-07-14 14:24:09 +08:00
|
|
|
; AVX-LABEL: vhsubpd1:
|
2011-12-02 15:16:01 +08:00
|
|
|
; AVX: vhsubpd
|
|
|
|
define <4 x double> @vhsubpd1(<4 x double> %x, <4 x double> %y) {
|
|
|
|
%a = shufflevector <4 x double> %x, <4 x double> %y, <4 x i32> <i32 0, i32 4, i32 2, i32 6>
|
|
|
|
%b = shufflevector <4 x double> %x, <4 x double> %y, <4 x i32> <i32 1, i32 5, i32 3, i32 7>
|
|
|
|
%r = fsub <4 x double> %a, %b
|
|
|
|
ret <4 x double> %r
|
|
|
|
}
|