mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
c275334e12
I had manually removed unused prefixes from CodeGen/X86 directory for more than 100 tests. I checked the change history for each of them at the beginning, and then I mainly focused on the format since I found all of the unused prefixes were result from either insensible copy or residuum after functional update. I think it's OK to remove the remaining X86 tests by script now. I wrote a rough script which works for me in most tests. I put it in llvm/utils temporarily for review and hope it may help other components owners. The tests in this patch are all generated by the tool and checked by update tool for the autogenerated tests. I skimmed them and checked about 30 tests and didn't find any unexpected changes. Reviewed By: mtrofin, MaskRay Differential Revision: https://reviews.llvm.org/D91496
102 lines
2.8 KiB
LLVM
102 lines
2.8 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; Make sure this testcase codegens to the sin and cos instructions, not calls
|
|
; RUN: llc < %s -mtriple=i686-apple-macosx -mattr=-sse,-sse2,-sse3 -enable-unsafe-fp-math | FileCheck %s
|
|
; RUN: llc < %s -mtriple=i686-apple-macosx -mattr=-sse,-sse2,-sse3 | FileCheck %s
|
|
|
|
declare float @sinf(float) readonly
|
|
|
|
declare double @sin(double) readonly
|
|
|
|
declare x86_fp80 @sinl(x86_fp80) readonly
|
|
|
|
define float @test1(float %X) {
|
|
; CHECK-LABEL: test1:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: subl $12, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 16
|
|
; CHECK-NEXT: flds {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fstps (%esp)
|
|
; CHECK-NEXT: calll _sinf
|
|
; CHECK-NEXT: addl $12, %esp
|
|
; CHECK-NEXT: retl
|
|
%Y = call float @sinf(float %X) readonly
|
|
ret float %Y
|
|
}
|
|
|
|
define double @test2(double %X) {
|
|
; CHECK-LABEL: test2:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: subl $12, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 16
|
|
; CHECK-NEXT: fldl {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fstpl (%esp)
|
|
; CHECK-NEXT: calll _sin
|
|
; CHECK-NEXT: addl $12, %esp
|
|
; CHECK-NEXT: retl
|
|
%Y = call double @sin(double %X) readonly
|
|
ret double %Y
|
|
}
|
|
|
|
define x86_fp80 @test3(x86_fp80 %X) {
|
|
; CHECK-LABEL: test3:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: subl $28, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 32
|
|
; CHECK-NEXT: fldt {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fstpt (%esp)
|
|
; CHECK-NEXT: calll _sinl
|
|
; CHECK-NEXT: addl $28, %esp
|
|
; CHECK-NEXT: retl
|
|
%Y = call x86_fp80 @sinl(x86_fp80 %X) readonly
|
|
ret x86_fp80 %Y
|
|
}
|
|
|
|
declare float @cosf(float) readonly
|
|
|
|
declare double @cos(double) readonly
|
|
|
|
declare x86_fp80 @cosl(x86_fp80) readonly
|
|
|
|
|
|
define float @test4(float %X) {
|
|
; CHECK-LABEL: test4:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: subl $12, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 16
|
|
; CHECK-NEXT: flds {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fstps (%esp)
|
|
; CHECK-NEXT: calll _cosf
|
|
; CHECK-NEXT: addl $12, %esp
|
|
; CHECK-NEXT: retl
|
|
%Y = call float @cosf(float %X) readonly
|
|
ret float %Y
|
|
}
|
|
|
|
define double @test5(double %X) {
|
|
; CHECK-LABEL: test5:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: subl $12, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 16
|
|
; CHECK-NEXT: fldl {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fstpl (%esp)
|
|
; CHECK-NEXT: calll _cos
|
|
; CHECK-NEXT: addl $12, %esp
|
|
; CHECK-NEXT: retl
|
|
%Y = call double @cos(double %X) readonly
|
|
ret double %Y
|
|
}
|
|
|
|
define x86_fp80 @test6(x86_fp80 %X) {
|
|
; CHECK-LABEL: test6:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: subl $28, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 32
|
|
; CHECK-NEXT: fldt {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fstpt (%esp)
|
|
; CHECK-NEXT: calll _cosl
|
|
; CHECK-NEXT: addl $28, %esp
|
|
; CHECK-NEXT: retl
|
|
%Y = call x86_fp80 @cosl(x86_fp80 %X) readonly
|
|
ret x86_fp80 %Y
|
|
}
|