The motivation is that the update script has at least two deviations (`<...>@GOT`/`<...>@PLT`/ and not hiding pointer arithmetics) from what pretty much all the checklines were generated with, and most of the tests are still not updated, so each time one of the non-up-to-date tests is updated to see the effect of the code change, there is a lot of noise. Instead of having to deal with that each time, let's just deal with everything at once. This has been done via: ``` cd llvm-project/llvm/test/CodeGen/X86 grep -rl "; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py" | xargs -L1 <...>/llvm-project/llvm/utils/update_llc_test_checks.py --llc-binary <...>/llvm-project/build/bin/llc ``` Not all tests were regenerated, however.
82 lines
2.3 KiB
LLVM
82 lines
2.3 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=i686-darwin -mattr=+mmx,+sse2 | FileCheck %s --check-prefix=X32
|
|
; RUN: llc < %s -mtriple=x86_64-darwin -mattr=+mmx,+sse4.1 | FileCheck %s --check-prefix=X64
|
|
|
|
; This is not an MMX operation; promoted to xmm.
|
|
define x86_mmx @t0(i32 %A) nounwind {
|
|
; X32-LABEL: t0:
|
|
; X32: ## %bb.0:
|
|
; X32-NEXT: movd {{[0-9]+}}(%esp), %mm1
|
|
; X32-NEXT: pxor %mm0, %mm0
|
|
; X32-NEXT: punpckldq %mm1, %mm0 ## mm0 = mm0[0],mm1[0]
|
|
; X32-NEXT: retl
|
|
;
|
|
; X64-LABEL: t0:
|
|
; X64: ## %bb.0:
|
|
; X64-NEXT: movd %edi, %xmm0
|
|
; X64-NEXT: pshufd {{.*#+}} xmm0 = xmm0[1,0,1,1]
|
|
; X64-NEXT: retq
|
|
%tmp3 = insertelement <2 x i32> < i32 0, i32 undef >, i32 %A, i32 1
|
|
%tmp4 = bitcast <2 x i32> %tmp3 to x86_mmx
|
|
ret x86_mmx %tmp4
|
|
}
|
|
|
|
define <8 x i8> @t1(i8 zeroext %x) nounwind {
|
|
; X32-LABEL: t1:
|
|
; X32: ## %bb.0:
|
|
; X32-NEXT: movss {{.*#+}} xmm0 = mem[0],zero,zero,zero
|
|
; X32-NEXT: retl
|
|
;
|
|
; X64-LABEL: t1:
|
|
; X64: ## %bb.0:
|
|
; X64-NEXT: movd %edi, %xmm0
|
|
; X64-NEXT: retq
|
|
%r = insertelement <8 x i8> undef, i8 %x, i32 0
|
|
ret <8 x i8> %r
|
|
}
|
|
|
|
; PR2574
|
|
define <2 x float> @t2(<2 x float> %a0) {
|
|
; X32-LABEL: t2:
|
|
; X32: ## %bb.0:
|
|
; X32-NEXT: xorps %xmm0, %xmm0
|
|
; X32-NEXT: retl
|
|
;
|
|
; X64-LABEL: t2:
|
|
; X64: ## %bb.0:
|
|
; X64-NEXT: xorps %xmm0, %xmm0
|
|
; X64-NEXT: retq
|
|
%v1 = insertelement <2 x float> %a0, float 0.000000e+00, i32 0
|
|
%v2 = insertelement <2 x float> %v1, float 0.000000e+00, i32 1
|
|
ret <2 x float> %v2
|
|
}
|
|
|
|
@g0 = external global i16
|
|
@g1 = external global <4 x i16>
|
|
|
|
; PR2562
|
|
define void @t3() {
|
|
; X32-LABEL: t3:
|
|
; X32: ## %bb.0:
|
|
; X32-NEXT: movl L_g0$non_lazy_ptr, %eax
|
|
; X32-NEXT: movl L_g1$non_lazy_ptr, %ecx
|
|
; X32-NEXT: movq {{.*#+}} xmm0 = mem[0],zero
|
|
; X32-NEXT: pinsrw $0, (%eax), %xmm0
|
|
; X32-NEXT: movq %xmm0, (%ecx)
|
|
; X32-NEXT: retl
|
|
;
|
|
; X64-LABEL: t3:
|
|
; X64: ## %bb.0:
|
|
; X64-NEXT: movq _g0@GOTPCREL(%rip), %rax
|
|
; X64-NEXT: movq _g1@GOTPCREL(%rip), %rcx
|
|
; X64-NEXT: movq {{.*#+}} xmm0 = mem[0],zero
|
|
; X64-NEXT: pinsrw $0, (%rax), %xmm0
|
|
; X64-NEXT: movq %xmm0, (%rcx)
|
|
; X64-NEXT: retq
|
|
load i16, i16* @g0
|
|
load <4 x i16>, <4 x i16>* @g1
|
|
insertelement <4 x i16> %2, i16 %1, i32 0
|
|
store <4 x i16> %3, <4 x i16>* @g1
|
|
ret void
|
|
}
|