localedata: dz_BT, bo_CN: convert to UTF-8
[glibc.git] / sysdeps / ia64 / fpu / e_acosf.S
blob7b32ffabc6c3171791efdd0088c06f870b701b4d
1 .file "acosf.s"
4 // Copyright (c) 2000 - 2003, Intel Corporation
5 // All rights reserved.
6 //
7 //
8 // Redistribution and use in source and binary forms, with or without
9 // modification, are permitted provided that the following conditions are
10 // met:
12 // * Redistributions of source code must retain the above copyright
13 // notice, this list of conditions and the following disclaimer.
15 // * Redistributions in binary form must reproduce the above copyright
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
19 // * The name of Intel Corporation may not be used to endorse or promote
20 // products derived from this software without specific prior written
21 // permission.
23 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR ITS
27 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
31 // OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING
32 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 // Intel Corporation is the author of this code, and requests that all
36 // problem reports or change requests be submitted to it directly at
37 // http://www.intel.com/software/products/opensource/libraries/num.htm.
39 // History
40 //==============================================================
41 // 02/02/00 Initial version
42 // 06/28/00 Improved speed
43 // 06/31/00 Changed register allocation because of some duplicate macros
44 //          moved nan exit bundle up to gain a cycle.
45 // 08/15/00 Bundle added after call to __libm_error_support to properly
46 //          set [the previously overwritten] GR_Parameter_RESULT.
47 // 08/17/00 Changed predicate register macro-usage to direct predicate
48 //          names due to an assembler bug.
49 // 10/17/00 Improved speed of x=0 and x=1 paths, set D flag if x denormal.
50 // 03/13/01 Corrected sign of imm1 value in dep instruction.
51 // 05/20/02 Cleaned up namespace and sf0 syntax
52 // 02/06/03 Reordered header: .section, .global, .proc, .align
53 // 04/17/03 Moved mutex after label
56 // Description
57 //=========================================
58 // The acosf function computes the principle value of the arc sine of x.
59 // A domain error occurs for arguments not in the range [-1,+1].
61 // The acosf function returns the arc cosine in the range [0, +pi] radians.
62 // acos(1) returns +0
63 // acos(x) returns a Nan and raises the invalid exception for |x| >1
65 // |x| <= sqrt(2)/2. get Ax and Bx
67 // poly_p1 = x p1
68 // poly_p3 = x2 p4 + p3
69 // poly_p1 = x2 (poly_p1) + x  = x2(x p1) + x
70 // poly_p2 = x2( poly_p3) + p2 = x2(x2 p4 + p3) + p2
72 // poly_Ax = x5(x2( poly_p3) + p2) + x2(x p1) + x
73 //         = x5(x2(x2 p4 + p3) + p2) + x2(x p1) + x
75 // poly_p7 = x2 p8 + p7
76 // poly_p5 = x2 p6 + p5
78 // poly_p7 = x4 p9 + (x2 p8 + p7)
79 // poly_Bx = x4 (x4 p9 + (x2 p8 + p7)) + x2 p6 + p5
81 // sinf1 = x11(x4 (x4 p9 + (x2 p8 + p7)) + x2 p6 + p5) + x5(x2(x2 p4 + p3) + p2) + x2(x p1) + x
82 //       = x19 p9 + x17 p8 + x15 p7 x13 p6 + x11 p5 + x9 p4 + x7 p3 + x5 p2 + x3 p1 + x
83 // answer1 = pi/2 - sinf1
87 // |x| >  sqrt(2)/2
89 // Get z = sqrt(1-x2)
91 // Get polynomial in t = 1-x2
93 // t2      = t t
94 // t4      = t2 t2
96 // poly_p4 = t p5 + p4
97 // poly_p1 = t p1 + 1
99 // poly_p6 = t p7 + p6
100 // poly_p2 = t p3 + p2
102 // poly_p8 = t p9 + p8
104 // poly_p4 = t2 poly_p6 + poly_p4
105 //         = t2 (t p7 + p6) + (t p5 + p4)
107 // poly_p2 = t2 poly_p2 + poly_p1
108 //         = t2 (t p3 + p2) + (t p1 + 1)
110 // poly_p4 = t4 poly_p8 + poly_p4
111 //         = t4 (t p9 + p8) + (t2 (t p7 + p6) + (t p5 + p4))
113 // P(t)    = poly_p2 + t4 poly_p8
114 //         = t2 (t p3 + p2) + (t p1 + 1) + t4 (t4 (t p9 + p8) + (t2 (t p7 + p6) + (t p5 + p4)))
115 //         = t3 p3 + t2 p2 + t p1 + 1 + t9 p9 + t8 p8 + t7 p7 + t6 p6 + t5 p5 + t4 p4
118 //  answer2 = sign(x) z P(t)       if x>0
119 //          = sign(x) z P(t) + pi  if x<0
123 // Assembly macros
124 //=========================================
126 // predicate registers
127 //acosf_pred_LEsqrt2by2            = p7
128 //acosf_pred_GTsqrt2by2            = p8
130 // integer registers
131 ACOSF_Addr1                      = r33
132 ACOSF_Addr2                      = r34
133 ACOSF_GR_1by2                    = r35
135 ACOSF_GR_3by2                    = r36
136 ACOSF_GR_5by2                    = r37
138 GR_SAVE_B0                    = r38
139 GR_SAVE_PFS                   = r39
140 GR_SAVE_GP                    = r40
142 GR_Parameter_X                = r41
143 GR_Parameter_Y                = r42
144 GR_Parameter_RESULT           = r43
145 GR_Parameter_TAG              = r44
147 // floating point registers
149 acosf_y                          = f32
150 acosf_abs_x                      = f33
151 acosf_x2                         = f34
152 acosf_sgn_x                      = f35
154 acosf_1by2                       = f36
155 acosf_3by2                       = f37
156 acosf_5by2                       = f38
157 acosf_coeff_P3                   = f39
158 acosf_coeff_P8                   = f40
160 acosf_coeff_P1                   = f41
161 acosf_coeff_P4                   = f42
162 acosf_coeff_P5                   = f43
163 acosf_coeff_P2                   = f44
164 acosf_coeff_P7                   = f45
166 acosf_coeff_P6                   = f46
167 acosf_coeff_P9                   = f47
168 acosf_x2                         = f48
169 acosf_x3                         = f49
170 acosf_x4                         = f50
172 acosf_x8                         = f51
173 acosf_x5                         = f52
174 acosf_const_piby2                = f53
175 acosf_const_sqrt2by2             = f54
176 acosf_x11                        = f55
178 acosf_poly_p1                    = f56
179 acosf_poly_p3                    = f57
180 acosf_sinf1                      = f58
181 acosf_poly_p2                    = f59
182 acosf_poly_Ax                    = f60
184 acosf_poly_p7                    = f61
185 acosf_poly_p5                    = f62
186 acosf_sgnx_t4                    = f63
187 acosf_poly_Bx                    = f64
188 acosf_t                          = f65
190 acosf_yby2                       = f66
191 acosf_B                          = f67
192 acosf_B2                         = f68
193 acosf_Az                         = f69
194 acosf_dz                         = f70
196 acosf_Sz                         = f71
197 acosf_d2z                        = f72
198 acosf_Fz                         = f73
199 acosf_z                          = f74
200 acosf_sgnx_z                     = f75
202 acosf_t2                         = f76
203 acosf_2poly_p4                   = f77
204 acosf_2poly_p6                   = f78
205 acosf_2poly_p1                   = f79
206 acosf_2poly_p2                   = f80
208 acosf_2poly_p8                   = f81
209 acosf_t4                         = f82
210 acosf_Pt                         = f83
211 acosf_sgnx_2poly_p2              = f84
212 acosf_sgn_x_piby2                = f85
214 acosf_poly_p7a                   = f86
215 acosf_2poly_p4a                  = f87
216 acosf_2poly_p4b                  = f88
217 acosf_2poly_p2a                  = f89
218 acosf_poly_p1a                   = f90
224 // Data tables
225 //==============================================================
227 RODATA
229 .align 16
231 LOCAL_OBJECT_START(acosf_coeff_1_table)
232 data8 0x3FC5555607DCF816 // P1
233 data8 0x3F9CF81AD9BAB2C6 // P4
234 data8 0x3FC59E0975074DF3 // P7
235 data8 0xBFA6F4CC2780AA1D // P6
236 data8 0x3FC2DD45292E93CB // P9
237 data8 0x3fe6a09e667f3bcd // sqrt(2)/2
238 LOCAL_OBJECT_END(acosf_coeff_1_table)
240 LOCAL_OBJECT_START(acosf_coeff_2_table)
241 data8 0x3FA6F108E31EFBA6 // P3
242 data8 0xBFCA31BF175D82A0 // P8
243 data8 0x3FA30C0337F6418B // P5
244 data8 0x3FB332C9266CB1F9 // P2
245 data8 0x3ff921fb54442d18 // pi_by_2
246 LOCAL_OBJECT_END(acosf_coeff_2_table)
249 .section .text
250 GLOBAL_LIBM_ENTRY(acosf)
252 // Load the addresses of the two tables.
253 // Then, load the coefficients and other constants.
255 {     .mfi
256      alloc      r32            = ar.pfs,1,8,4,0
257      fnma.s1   acosf_t        =    f8,f8,f1
258      dep.z ACOSF_GR_1by2 =    0x3f,24,8    // 0x3f000000
260 {     .mfi
261      addl ACOSF_Addr1    =    @ltoff(acosf_coeff_1_table),gp
262      fma.s1    acosf_x2       =    f8,f8,f0
263      addl      ACOSF_Addr2    =    @ltoff(acosf_coeff_2_table),gp ;;
267 {     .mfi
268      ld8       ACOSF_Addr1    =    [ACOSF_Addr1]
269      fmerge.s  acosf_abs_x    =    f1,f8
270      dep ACOSF_GR_3by2 =    -1,r0,22,8     // 0x3fc00000
272 {     .mlx
273      nop.m                      999
274      movl      ACOSF_GR_5by2  =    0x40200000;;
279 {     .mfi
280      setf.s    acosf_1by2     =    ACOSF_GR_1by2
281      fmerge.s  acosf_sgn_x    =    f8,f1
282      nop.i                      999
284 {     .mfi
285      ld8       ACOSF_Addr2    =    [ACOSF_Addr2]
286      nop.f 0
287      nop.i                      999;;
291 {     .mfi
292      setf.s    acosf_5by2     =    ACOSF_GR_5by2
293      fcmp.lt.s1 p11,p12 = f8,f0
294      nop.i                      999;;
297 { .mmf
298      ldfpd     acosf_coeff_P1,acosf_coeff_P4 =    [ACOSF_Addr1],16
299      setf.s    acosf_3by2     =    ACOSF_GR_3by2
300      fclass.m.unc p8,p0      = f8, 0xc3 ;;      //@qnan | @snan
304 {     .mfi
305      ldfpd     acosf_coeff_P7,acosf_coeff_P6 =    [ACOSF_Addr1],16
306      fma.s1    acosf_t2                      =    acosf_t,acosf_t,f0
307      nop.i                                     999
309 {     .mfi
310      ldfpd     acosf_coeff_P3,acosf_coeff_P8 =    [ACOSF_Addr2],16
311      fma.s1    acosf_x4                      =    acosf_x2,acosf_x2,f0
312      nop.i                                     999;;
316 {     .mfi
317      ldfpd     acosf_coeff_P9,acosf_const_sqrt2by2     =    [ACOSF_Addr1]
318      fclass.m.unc p10,p0      = f8, 0x07        //@zero
319      nop.i                                     999
321 {     .mfi
322      ldfpd     acosf_coeff_P5,acosf_coeff_P2 =    [ACOSF_Addr2],16
323      fma.s1    acosf_x3  =    f8,acosf_x2,f0
324      nop.i                                     999;;
328 {     .mfi
329      ldfd      acosf_const_piby2   =    [ACOSF_Addr2]
330      frsqrta.s1     acosf_B,p0                   =    acosf_t
331      nop.i                                               999
333 {     .mfb
334      nop.m                                               999
335 (p8) fma.s.s0 f8                = f8,f1,f0
336 (p8) br.ret.spnt   b0 ;;  // Exit if x=nan
340 {     .mfb
341      nop.m                 999
342      fcmp.eq.s1 p6,p0 = acosf_abs_x,f1
343 (p10) br.cond.spnt  ACOSF_ZERO ;;     // Branch if x=0
346 {     .mfi
347      nop.m                 999
348      fcmp.gt.s1 p9,p0 = acosf_abs_x,f1
349      nop.i                 999;;
352 {     .mfi
353      nop.m                 999
354      fma.s1    acosf_x8  =    acosf_x4,acosf_x4,f0
355      nop.i                 999
357 {     .mfb
358      nop.m                      999
359      fma.s1    acosf_t4  =    acosf_t2,acosf_t2,f0
360 (p6) br.cond.spnt  ACOSF_ABS_ONE ;;     // Branch if |x|=1
363 {     .mfi
364      nop.m                 999
365      fma.s1    acosf_x5  =    acosf_x2,acosf_x3,f0
366      nop.i                 999
368 {     .mfb
369 (p9) mov            GR_Parameter_TAG = 59
370      fma.s1    acosf_yby2     =    acosf_t,acosf_1by2,f0
371 (p9) br.cond.spnt  __libm_error_region ;;    // Branch if |x|>1
375 {     .mfi
376      nop.m                 999
377      fma.s1    acosf_Az  =    acosf_t,acosf_B,f0
378      nop.i                 999
380 {     .mfi
381      nop.m                 999
382      fma.s1    acosf_B2  =    acosf_B,acosf_B,f0
383      nop.i                 999;;
386 {     .mfi
387      nop.m                      999
388      fma.s1    acosf_poly_p1  =    f8,acosf_coeff_P1,f0
389      nop.i                      999
391 {     .mfi
392      nop.m                      999
393      fma.s1    acosf_2poly_p1 =    acosf_coeff_P1,acosf_t,f1
394      nop.i                      999;;
397 {     .mfi
398      nop.m                      999
399      fma.s1    acosf_poly_p3  =    acosf_coeff_P4,acosf_x2,acosf_coeff_P3
400      nop.i                      999
402 {     .mfi
403      nop.m                      999
404      fma.s1    acosf_2poly_p6 =    acosf_coeff_P7,acosf_t,acosf_coeff_P6
405      nop.i                      999;;
408 {     .mfi
409      nop.m                      999
410      fma.s1    acosf_poly_p7  =    acosf_x2,acosf_coeff_P8,acosf_coeff_P7
411      nop.i                      999
413 {     .mfi
414      nop.m                      999
415      fma.s1    acosf_2poly_p2 =    acosf_coeff_P3,acosf_t,acosf_coeff_P2
416      nop.i                      999;;
420 {     .mfi
421      nop.m                      999
422      fma.s1    acosf_poly_p5  =    acosf_x2,acosf_coeff_P6,acosf_coeff_P5
423      nop.i                      999
425 {     .mfi
426      nop.m                      999
427      fma.s1    acosf_2poly_p4 =    acosf_coeff_P5,acosf_t,acosf_coeff_P4
428      nop.i                      999;;
432 {     .mfi
433      nop.m                 999
434      fma.s1    acosf_x11 =    acosf_x8,acosf_x3,f0
435      nop.i                 999
437 {     .mfi
438      nop.m                 999
439      fnma.s1   acosf_dz  =    acosf_B2,acosf_yby2,acosf_1by2
440      nop.i                 999;;
444 {     .mfi
445      nop.m                      999
446      fma.s1    acosf_poly_p1a =    acosf_x2,acosf_poly_p1,f8
447      nop.i                      999
449 {     .mfi
450      nop.m                      999
451      fma.s1    acosf_2poly_p8 =    acosf_coeff_P9,acosf_t,acosf_coeff_P8
452      nop.i                      999;;
456 // Get the absolute value of x and determine the region in which x lies
458 {     .mfi
459      nop.m                      999
460      fcmp.le.s1     p7,p8 = acosf_abs_x,acosf_const_sqrt2by2
461      nop.i                      999
463 {     .mfi
464      nop.m                      999
465      fma.s1    acosf_poly_p2  =    acosf_x2,acosf_poly_p3,acosf_coeff_P2
466      nop.i                      999;;
470 {     .mfi
471      nop.m                      999
472      fma.s1    acosf_poly_p7a =    acosf_x4,acosf_coeff_P9,acosf_poly_p7
473      nop.i                      999
475 {     .mfi
476      nop.m                      999
477      fma.s1    acosf_2poly_p2a =    acosf_2poly_p2,acosf_t2,acosf_2poly_p1
478      nop.i                      999;;
482 {     .mfi
483      nop.m                                                         999
484 (p8) fma.s1    acosf_sgnx_t4  =    acosf_sgn_x,acosf_t4,f0
485      nop.i                                                         999
487 {     .mfi
488      nop.m                      999
489 (p8) fma.s1    acosf_2poly_p4a =    acosf_2poly_p6,acosf_t2,acosf_2poly_p4
490      nop.i                      999;;
494 {     .mfi
495      nop.m                 999
496 (p8) fma.s1    acosf_Sz  =    acosf_5by2,acosf_dz,acosf_3by2
497      nop.i                 999
499 {     .mfi
500      nop.m                 999
501 (p8) fma.s1    acosf_d2z =    acosf_dz,acosf_dz,f0
502      nop.i                 999;;
506 {     .mfi
507      nop.m                           999
508 (p8) fnma.d.s1   acosf_sgn_x_piby2 =    acosf_sgn_x,acosf_const_piby2,acosf_const_piby2
509      nop.i                           999
511 {     .mfi
512      nop.m                      999
513 (p7) fma.s1    acosf_poly_Ax  =    acosf_x5,acosf_poly_p2,acosf_poly_p1a
514      nop.i                 999;;
517 {     .mfi
518      nop.m                      999
519 (p7) fma.s1    acosf_poly_Bx  =    acosf_x4,acosf_poly_p7a,acosf_poly_p5
520      nop.i                      999
522 {     .mfi
523      nop.m                           999
524 (p8) fma.s1    acosf_sgnx_2poly_p2 =    acosf_sgn_x,acosf_2poly_p2a,f0
525      nop.i                           999;;
528 {     .mfi
529      nop.m                      999
530      fcmp.eq.s0 p6,p0 = f8,f0      // Only purpose is to set D if x denormal
531      nop.i                      999
533 {     .mfi
534      nop.m                      999
535 (p8) fma.s1    acosf_2poly_p4b =    acosf_2poly_p8,acosf_t4,acosf_2poly_p4a
536      nop.i                      999;;
540 {     .mfi
541      nop.m                      999
542 (p8) fma.s1    acosf_Fz  =    acosf_d2z,acosf_Sz,acosf_dz
543      nop.i                 999;;
547 {     .mfi
548      nop.m                 999
549 (p8) fma.d.s1  acosf_Pt  =    acosf_2poly_p4b,acosf_sgnx_t4,acosf_sgnx_2poly_p2
550      nop.i                 999;;
553 {     .mfi
554      nop.m                 999
555 (p8) fma.d.s1  acosf_z   =    acosf_Az,acosf_Fz,acosf_Az
556      nop.i                 999 ;;
559 {     .mfi
560      nop.m                      999
561 (p7) fma.d.s1  acosf_sinf1    =    acosf_x11,acosf_poly_Bx,acosf_poly_Ax
562      nop.i                      999;;
565 .pred.rel "mutex",p8,p7    //acosf_pred_GTsqrt2by2,acosf_pred_LEsqrt2by2
566 {     .mfi
567       nop.m            999
568 (p8)  fma.s.s0     f8   =    acosf_z,acosf_Pt,acosf_sgn_x_piby2
569       nop.i            999
572 {     .mfb
573       nop.m            999
574 (p7)  fms.s.s0     f8   =    acosf_const_piby2,f1,acosf_sinf1
575       br.ret.sptk b0 ;;
578 ACOSF_ZERO:
579 // Here if x=0
580 {     .mfb
581       nop.m                 999
582       fma.s.s0    f8 =    acosf_const_piby2,f1,f0  // acosf(0)=pi/2
583       br.ret.sptk b0 ;;
587 ACOSF_ABS_ONE:
588 .pred.rel "mutex",p11,p12
589 // Here if |x|=1
590 {     .mfi
591       nop.m                 999
592 (p11) fma.s.s0    f8 =    acosf_const_piby2,f1,acosf_const_piby2 // acosf(-1)=pi
593       nop.i                 999
595 {     .mfb
596       nop.m                 999
597 (p12) fma.s.s0    f8 =    f1,f0,f0 // acosf(1)=0
598       br.ret.sptk b0 ;;
601 GLOBAL_LIBM_END(acosf)
602 libm_alias_float_other (acos, acos)
605 // Stack operations when calling error support.
606 //       (1)               (2)
607 //   sp   -> +          psp -> +
608 //           |                 |
609 //           |                 | <- GR_Y
610 //           |                 |
611 //           | <-GR_Y      Y2->|
612 //           |                 |
613 //           |                 | <- GR_X
614 //           |                 |
615 //  sp-64 -> +          sp ->  +
616 //    save ar.pfs          save b0
617 //    save gp
620 // Stack operations when calling error support.
621 //     (3) (call)              (4)
622 //  psp -> +                   sp -> +
623 //         |                         |
624 //    R3 ->| <- GR_RESULT            | -> f8
625 //         |                         |
626 //    Y2 ->| <- GR_Y                 |
627 //         |                         |
628 //    X1 ->|                         |
629 //         |                         |
630 //  sp ->  +                         +
631 //                              restore gp
632 //                              restore ar.pfs
635 LOCAL_LIBM_ENTRY(__libm_error_region)
636 .prologue
637 { .mfi
638         add   GR_Parameter_Y=-32,sp             // Parameter 2 value
639                 nop.f 999
640 .save   ar.pfs,GR_SAVE_PFS
641         mov  GR_SAVE_PFS=ar.pfs                 // Save ar.pfs
643 { .mfi
644 .fframe 64
645         add sp=-64,sp                           // Create new stack
646         nop.f 0
647         mov GR_SAVE_GP=gp                       // Save gp
649 { .mmi
650         stfs [GR_Parameter_Y] = f1,16         // Store Parameter 2 on stack
651         add GR_Parameter_X = 16,sp              // Parameter 1 address
652 .save   b0, GR_SAVE_B0
653         mov GR_SAVE_B0=b0                       // Save b0
656 .body
657 { .mfi
658         nop.m 0
659         frcpa.s0 f9,p0 = f0,f0
660         nop.i 0
663 { .mib
664         stfs [GR_Parameter_X] = f8            // Store Parameter 1 on stack
665         add   GR_Parameter_RESULT = 0,GR_Parameter_Y
666         nop.b 0                                 // Parameter 3 address
668 { .mib
669         stfs [GR_Parameter_Y] = f9           // Store Parameter 3 on stack
670         add   GR_Parameter_Y = -16,GR_Parameter_Y
671         br.call.sptk b0=__libm_error_support#   // Call error handling function
673 { .mmi
674         nop.m 0
675         nop.m 0
676         add   GR_Parameter_RESULT = 48,sp
679 { .mmi
680         ldfs  f8 = [GR_Parameter_RESULT]       // Get return result off stack
681 .restore sp
682         add   sp = 64,sp                       // Restore stack pointer
683         mov   b0 = GR_SAVE_B0                  // Restore return address
685 { .mib
686         mov   gp = GR_SAVE_GP                  // Restore gp
687         mov   ar.pfs = GR_SAVE_PFS             // Restore ar.pfs
688         br.ret.sptk     b0                     // Return
691 LOCAL_LIBM_END(__libm_error_region)
693 .type   __libm_error_support#,@function
694 .global __libm_error_support#