mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6ea2cff39a
Summary: This change enables the sin(x) cos(x) -> sincos(x) optimization on GNU target triples. This optimization was being inhibited when -ffast-math wasn't set because sincos in GLibC does not set errno, while sin and cos do. However, this optimization will only run if the attributes on the sin/cos calls include readnone, which is how clang represents the fact that it doesn't care about the errno values set by these functions (via the -fno-math-errno flag). Reviewers: hfinkel, bogner Subscribers: mcrosier, javed.absar, llvm-commits, paul.redmond Differential Revision: https://reviews.llvm.org/D32921 llvm-svn: 305204
92 lines
2.2 KiB
LLVM
92 lines
2.2 KiB
LLVM
; RUN: llc < %s -mtriple=armv7-apple-ios6 -mcpu=cortex-a8 | FileCheck %s --check-prefix=NOOPT
|
|
; RUN: llc < %s -mtriple=armv7-apple-ios7 -mcpu=cortex-a8 | FileCheck %s --check-prefix=SINCOS
|
|
; RUN: llc < %s -mtriple=armv7-linux-gnu -mcpu=cortex-a8 | FileCheck %s --check-prefix=SINCOS-GNU
|
|
; RUN: llc < %s -mtriple=armv7-linux-gnueabi -mcpu=cortex-a8 \
|
|
; RUN: --enable-unsafe-fp-math | FileCheck %s --check-prefix=SINCOS-GNU
|
|
|
|
; Combine sin / cos into a single call unless they may write errno (as
|
|
; captured by readnone attrbiute, controlled by clang -fmath-errno
|
|
; setting).
|
|
; rdar://12856873
|
|
|
|
define float @test1(float %x) nounwind {
|
|
entry:
|
|
; SINCOS-LABEL: test1:
|
|
; SINCOS: bl ___sincosf_stret
|
|
|
|
; SINCOS-GNU-LABEL: test1:
|
|
; SINCOS-GNU: bl sincosf
|
|
|
|
; NOOPT-LABEL: test1:
|
|
; NOOPT: bl _sinf
|
|
; NOOPT: bl _cosf
|
|
|
|
%call = tail call float @sinf(float %x) readnone
|
|
%call1 = tail call float @cosf(float %x) readnone
|
|
%add = fadd float %call, %call1
|
|
ret float %add
|
|
}
|
|
|
|
define float @test1_errno(float %x) nounwind {
|
|
entry:
|
|
; SINCOS-LABEL: test1_errno:
|
|
; SINCOS: bl _sinf
|
|
; SINCOS: bl _cosf
|
|
|
|
; SINCOS-GNU-LABEL: test1_errno:
|
|
; SINCOS-GNU: bl sinf
|
|
; SINCOS-GNU: bl cosf
|
|
|
|
; NOOPT-LABEL: test1_errno:
|
|
; NOOPT: bl _sinf
|
|
; NOOPT: bl _cosf
|
|
|
|
%call = tail call float @sinf(float %x)
|
|
%call1 = tail call float @cosf(float %x)
|
|
%add = fadd float %call, %call1
|
|
ret float %add
|
|
}
|
|
|
|
define double @test2(double %x) nounwind {
|
|
entry:
|
|
; SINCOS-LABEL: test2:
|
|
; SINCOS: bl ___sincos_stret
|
|
|
|
; SINCOS-GNU-LABEL: test2:
|
|
; SINCOS-GNU: bl sincos
|
|
|
|
; NOOPT-LABEL: test2:
|
|
; NOOPT: bl _sin
|
|
; NOOPT: bl _cos
|
|
|
|
%call = tail call double @sin(double %x) readnone
|
|
%call1 = tail call double @cos(double %x) readnone
|
|
%add = fadd double %call, %call1
|
|
ret double %add
|
|
}
|
|
|
|
define double @test2_errno(double %x) nounwind {
|
|
entry:
|
|
; SINCOS-LABEL: test2_errno:
|
|
; SINCOS: bl _sin
|
|
; SINCOS: bl _cos
|
|
|
|
; SINCOS-GNU-LABEL: test2_errno:
|
|
; SINCOS-GNU: bl sin
|
|
; SINCOS-GNU: bl cos
|
|
|
|
; NOOPT-LABEL: test2_errno:
|
|
; NOOPT: bl _sin
|
|
; NOOPT: bl _cos
|
|
|
|
%call = tail call double @sin(double %x)
|
|
%call1 = tail call double @cos(double %x)
|
|
%add = fadd double %call, %call1
|
|
ret double %add
|
|
}
|
|
|
|
declare float @sinf(float)
|
|
declare double @sin(double)
|
|
declare float @cosf(float)
|
|
declare double @cos(double)
|