aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/ARM/sincos.ll
blob: e1b683a8a66575fc0379dd479a8c4fd76dc92ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
; 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 | FileCheck %s --check-prefix=SINCOS-GNU
; RUN: llc < %s -mtriple=armv7-linux-android -mcpu=cortex-a8 | FileCheck %s --check-prefix=NOOPT-ANDROID
; RUN: llc < %s -mtriple=armv7-linux-android9 -mcpu=cortex-a8 | 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

; NOOPT-ANDROID-LABEL: test1:
; NOOPT-ANDROID: bl sinf
; NOOPT-ANDROID: 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_fast(float %x) nounwind {
entry:
; SINCOS-LABEL: test1_fast:
; SINCOS: bl ___sincosf_stret

; SINCOS-GNU-LABEL: test1_fast:
; SINCOS-GNU: bl sincosf

; NOOPT-LABEL: test1_fast:
; NOOPT: bl _sinf
; NOOPT: bl _cosf

; NOOPT-ANDROID-LABEL: test1_fast:
; NOOPT-ANDROID: bl sinf
; NOOPT-ANDROID: bl cosf

  %call = tail call fast float @sinf(float %x) readnone
  %call1 = tail call fast 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

; NOOPT-ANDROID-LABEL: test1_errno:
; NOOPT-ANDROID: bl sinf
; NOOPT-ANDROID: 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

; NOOPT-ANDROID-LABEL: test2:
; NOOPT-ANDROID: bl sin
; NOOPT-ANDROID: 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_fast(double %x) nounwind {
entry:
; SINCOS-LABEL: test2_fast:
; SINCOS: bl ___sincos_stret

; SINCOS-GNU-LABEL: test2_fast:
; SINCOS-GNU: bl sincos

; NOOPT-LABEL: test2_fast:
; NOOPT: bl _sin
; NOOPT: bl _cos

; NOOPT-ANDROID-LABEL: test2_fast:
; NOOPT-ANDROID: bl sin
; NOOPT-ANDROID: bl cos

  %call = tail call fast double @sin(double %x) readnone
  %call1 = tail call fast 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

; NOOPT-ANDROID-LABEL: test2_errno:
; NOOPT-ANDROID: bl sin
; NOOPT-ANDROID: 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)