mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
7e501cf4c3
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 llvm-svn: 186280
44 lines
1.3 KiB
LLVM
44 lines
1.3 KiB
LLVM
; RUN: llc < %s -march=x86 -mcpu=penryn -mattr=+sse,-sse2 -mtriple=i386-apple-darwin | FileCheck %s -check-prefix=sse
|
|
; RUN: llc < %s -march=x86 -mcpu=penryn -mattr=+sse2 -mtriple=i386-apple-darwin | FileCheck %s -check-prefix=sse2
|
|
|
|
; sse-LABEL: t1:
|
|
; sse2-LABEL: t1:
|
|
define <4 x float> @t1(<4 x float> %a, <4 x float> %b) nounwind {
|
|
; sse: shufps
|
|
; sse2: pshufd
|
|
; sse2-NEXT: ret
|
|
%tmp1 = shufflevector <4 x float> %b, <4 x float> undef, <4 x i32> zeroinitializer
|
|
ret <4 x float> %tmp1
|
|
}
|
|
|
|
; sse-LABEL: t2:
|
|
; sse2-LABEL: t2:
|
|
define <4 x float> @t2(<4 x float> %A, <4 x float> %B) nounwind {
|
|
; sse: shufps
|
|
; sse2: pshufd
|
|
; sse2-NEXT: ret
|
|
%tmp = shufflevector <4 x float> %A, <4 x float> %B, <4 x i32> < i32 3, i32 3, i32 3, i32 3 >
|
|
ret <4 x float> %tmp
|
|
}
|
|
|
|
; sse-LABEL: t3:
|
|
; sse2-LABEL: t3:
|
|
define <4 x float> @t3(<4 x float> %A, <4 x float> %B) nounwind {
|
|
; sse: shufps
|
|
; sse2: pshufd
|
|
; sse2-NEXT: ret
|
|
%tmp = shufflevector <4 x float> %A, <4 x float> %B, <4 x i32> < i32 4, i32 4, i32 4, i32 4 >
|
|
ret <4 x float> %tmp
|
|
}
|
|
|
|
; sse-LABEL: t4:
|
|
; sse2-LABEL: t4:
|
|
define <4 x float> @t4(<4 x float> %A, <4 x float> %B) nounwind {
|
|
|
|
; sse: shufps
|
|
; sse2: pshufd
|
|
; sse2-NEXT: ret
|
|
%tmp = shufflevector <4 x float> %A, <4 x float> %B, <4 x i32> < i32 1, i32 3, i32 2, i32 0 >
|
|
ret <4 x float> %tmp
|
|
}
|