mirror of
https://github.com/RPCSX/llvm.git
synced 2025-05-13 19:06:05 +00:00
[X86][SSE] Added fast-isel tests to sync with clang/test/CodeGen/sse-builtins.c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270081 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
625707515f
commit
9ea46b8e15
35
test/CodeGen/X86/sse-intrinsics-fast-isel-x86_64.ll
Normal file
35
test/CodeGen/X86/sse-intrinsics-fast-isel-x86_64.ll
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||||
|
; RUN: llc < %s -fast-isel -mtriple=x86_64-unknown-unknown -mattr=+sse | FileCheck %s --check-prefix=X64
|
||||||
|
|
||||||
|
; NOTE: This should use IR equivalent to what is generated by clang/test/CodeGen/sse-builtins.c
|
||||||
|
|
||||||
|
define <4 x float> @test_mm_cvtsi64_ss(<4 x float> %a0, i64 %a1) nounwind {
|
||||||
|
; X64-LABEL: test_mm_cvtsi64_ss:
|
||||||
|
; X64: # BB#0:
|
||||||
|
; X64-NEXT: cvtsi2ssq %rdi, %xmm1
|
||||||
|
; X64-NEXT: movss {{.*#+}} xmm0 = xmm1[0],xmm0[1,2,3]
|
||||||
|
; X64-NEXT: retq
|
||||||
|
%cvt = sitofp i64 %a1 to float
|
||||||
|
%res = insertelement <4 x float> %a0, float %cvt, i32 0
|
||||||
|
ret <4 x float> %res
|
||||||
|
}
|
||||||
|
|
||||||
|
define i64 @test_mm_cvtss_si64(<4 x float> %a0) nounwind {
|
||||||
|
; X64-LABEL: test_mm_cvtss_si64:
|
||||||
|
; X64: # BB#0:
|
||||||
|
; X64-NEXT: cvtss2si %xmm0, %rax
|
||||||
|
; X64-NEXT: retq
|
||||||
|
%res = call i64 @llvm.x86.sse.cvtss2si64(<4 x float> %a0)
|
||||||
|
ret i64 %res
|
||||||
|
}
|
||||||
|
declare i64 @llvm.x86.sse.cvtss2si64(<4 x float>) nounwind readnone
|
||||||
|
|
||||||
|
define i64 @test_mm_cvttss_si64(<4 x float> %a0) nounwind {
|
||||||
|
; X64-LABEL: test_mm_cvttss_si64:
|
||||||
|
; X64: # BB#0:
|
||||||
|
; X64-NEXT: cvttss2si %xmm0, %rax
|
||||||
|
; X64-NEXT: retq
|
||||||
|
%cvt = extractelement <4 x float> %a0, i32 0
|
||||||
|
%res = fptosi float %cvt to i64
|
||||||
|
ret i64 %res
|
||||||
|
}
|
2280
test/CodeGen/X86/sse-intrinsics-fast-isel.ll
Normal file
2280
test/CodeGen/X86/sse-intrinsics-fast-isel.ll
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user