mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
8b2b8a1835
This update was done with the following bash script: find test/CodeGen -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc.*debug" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_-]*\):\( *\)$FUNC: *\$/;\1\2-LABEL:\3$FUNC:/g" $TEMP done sed -i '' "s/;\(.*\)-LABEL-LABEL:/;\1-LABEL:/" $TEMP sed -i '' "s/;\(.*\)-NEXT-LABEL:/;\1-NEXT:/" $TEMP sed -i '' "s/;\(.*\)-NOT-LABEL:/;\1-NOT:/" $TEMP sed -i '' "s/;\(.*\)-DAG-LABEL:/;\1-DAG:/" $TEMP mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186280 91177308-0d34-0410-b5e6-96231b3b80d8
171 lines
5.6 KiB
LLVM
171 lines
5.6 KiB
LLVM
; RUN: llc < %s -march=x86-64 -mattr=+ssse3,-avx | FileCheck %s -check-prefix=SSSE3
|
|
; RUN: llc < %s -march=x86-64 -mattr=-ssse3,+avx | FileCheck %s -check-prefix=AVX
|
|
|
|
; SSSE3-LABEL: phaddw1:
|
|
; SSSE3-NOT: vphaddw
|
|
; SSSE3: phaddw
|
|
; AVX-LABEL: phaddw1:
|
|
; AVX: vphaddw
|
|
define <8 x i16> @phaddw1(<8 x i16> %x, <8 x i16> %y) {
|
|
%a = shufflevector <8 x i16> %x, <8 x i16> %y, <8 x i32> <i32 0, i32 2, i32 4, i32 6, i32 8, i32 10, i32 12, i32 14>
|
|
%b = shufflevector <8 x i16> %x, <8 x i16> %y, <8 x i32> <i32 1, i32 3, i32 5, i32 7, i32 9, i32 11, i32 13, i32 15>
|
|
%r = add <8 x i16> %a, %b
|
|
ret <8 x i16> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddw2:
|
|
; SSSE3-NOT: vphaddw
|
|
; SSSE3: phaddw
|
|
; AVX-LABEL: phaddw2:
|
|
; AVX: vphaddw
|
|
define <8 x i16> @phaddw2(<8 x i16> %x, <8 x i16> %y) {
|
|
%a = shufflevector <8 x i16> %x, <8 x i16> %y, <8 x i32> <i32 1, i32 2, i32 5, i32 6, i32 9, i32 10, i32 13, i32 14>
|
|
%b = shufflevector <8 x i16> %y, <8 x i16> %x, <8 x i32> <i32 8, i32 11, i32 12, i32 15, i32 0, i32 3, i32 4, i32 7>
|
|
%r = add <8 x i16> %a, %b
|
|
ret <8 x i16> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd1:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd1:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd1(<4 x i32> %x, <4 x i32> %y) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> %y, <4 x i32> <i32 0, i32 2, i32 4, i32 6>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> %y, <4 x i32> <i32 1, i32 3, i32 5, i32 7>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd2:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd2:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd2(<4 x i32> %x, <4 x i32> %y) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> %y, <4 x i32> <i32 1, i32 2, i32 5, i32 6>
|
|
%b = shufflevector <4 x i32> %y, <4 x i32> %x, <4 x i32> <i32 4, i32 7, i32 0, i32 3>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd3:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd3:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd3(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 undef, i32 2, i32 4, i32 6>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 undef, i32 3, i32 5, i32 7>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd4:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd4:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd4(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 0, i32 2, i32 undef, i32 undef>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 1, i32 3, i32 undef, i32 undef>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd5:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd5:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd5(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 0, i32 3, i32 undef, i32 undef>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 1, i32 2, i32 undef, i32 undef>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd6:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd6:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd6(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 0, i32 undef, i32 undef, i32 undef>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 1, i32 undef, i32 undef, i32 undef>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phaddd7:
|
|
; SSSE3-NOT: vphaddd
|
|
; SSSE3: phaddd
|
|
; AVX-LABEL: phaddd7:
|
|
; AVX: vphaddd
|
|
define <4 x i32> @phaddd7(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 undef, i32 3, i32 undef, i32 undef>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 undef, i32 2, i32 undef, i32 undef>
|
|
%r = add <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phsubw1:
|
|
; SSSE3-NOT: vphsubw
|
|
; SSSE3: phsubw
|
|
; AVX-LABEL: phsubw1:
|
|
; AVX: vphsubw
|
|
define <8 x i16> @phsubw1(<8 x i16> %x, <8 x i16> %y) {
|
|
%a = shufflevector <8 x i16> %x, <8 x i16> %y, <8 x i32> <i32 0, i32 2, i32 4, i32 6, i32 8, i32 10, i32 12, i32 14>
|
|
%b = shufflevector <8 x i16> %x, <8 x i16> %y, <8 x i32> <i32 1, i32 3, i32 5, i32 7, i32 9, i32 11, i32 13, i32 15>
|
|
%r = sub <8 x i16> %a, %b
|
|
ret <8 x i16> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phsubd1:
|
|
; SSSE3-NOT: vphsubd
|
|
; SSSE3: phsubd
|
|
; AVX-LABEL: phsubd1:
|
|
; AVX: vphsubd
|
|
define <4 x i32> @phsubd1(<4 x i32> %x, <4 x i32> %y) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> %y, <4 x i32> <i32 0, i32 2, i32 4, i32 6>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> %y, <4 x i32> <i32 1, i32 3, i32 5, i32 7>
|
|
%r = sub <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phsubd2:
|
|
; SSSE3-NOT: vphsubd
|
|
; SSSE3: phsubd
|
|
; AVX-LABEL: phsubd2:
|
|
; AVX: vphsubd
|
|
define <4 x i32> @phsubd2(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 undef, i32 2, i32 4, i32 6>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 undef, i32 3, i32 5, i32 7>
|
|
%r = sub <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phsubd3:
|
|
; SSSE3-NOT: vphsubd
|
|
; SSSE3: phsubd
|
|
; AVX-LABEL: phsubd3:
|
|
; AVX: vphsubd
|
|
define <4 x i32> @phsubd3(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 0, i32 2, i32 undef, i32 undef>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 1, i32 3, i32 undef, i32 undef>
|
|
%r = sub <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|
|
|
|
; SSSE3-LABEL: phsubd4:
|
|
; SSSE3-NOT: vphsubd
|
|
; SSSE3: phsubd
|
|
; AVX-LABEL: phsubd4:
|
|
; AVX: vphsubd
|
|
define <4 x i32> @phsubd4(<4 x i32> %x) {
|
|
%a = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 0, i32 undef, i32 undef, i32 undef>
|
|
%b = shufflevector <4 x i32> %x, <4 x i32> undef, <4 x i32> <i32 1, i32 undef, i32 undef, i32 undef>
|
|
%r = sub <4 x i32> %a, %b
|
|
ret <4 x i32> %r
|
|
}
|