4 // Copyright (c) 2000 - 2003, Intel Corporation
5 // All rights reserved.
7 // Contributed 2000 by the Intel Numerics Group, Intel Corporation
9 // Redistribution and use in source and binary forms, with or without
10 // modification, are permitted provided that the following conditions are
13 // * Redistributions of source code must retain the above copyright
14 // notice, this list of conditions and the following disclaimer.
16 // * Redistributions in binary form must reproduce the above copyright
17 // notice, this list of conditions and the following disclaimer in the
18 // documentation and/or other materials provided with the distribution.
20 // * The name of Intel Corporation may not be used to endorse or promote
21 // products derived from this software without specific prior written
24 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR ITS
28 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
32 // OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING
33 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 // Intel Corporation is the author of this code, and requests that all
37 // problem reports or change requests be submitted to it directly at
38 // http://www.intel.com/software/products/opensource/libraries/num.htm.
41 //==============================================================
42 // 02/02/00 Initial version
43 // 01/26/01 ldexp completely reworked and now standalone version
44 // 01/04/02 Added handling for int 32 or 64 bits
45 // 05/20/02 Cleaned up namespace and sf0 syntax
46 // 02/10/03 Reordered header: .section, .global, .proc, .align
47 // 08/04/03 Improved performance
50 //==============================================================
51 // double __libm_ldexp (double x, int n, int int_type)
52 // input floating point f8 and int n (r33), int int_type (r34)
53 // output floating point f8
55 // int_type = 0 if int is 32 bits
56 // int_type = 1 if int is 64 bits
58 // Returns x* 2**n using an fma and detects overflow
63 // Compute biased exponent of result exp_Result = N + exp_X
65 // exp_Result > 0x103fe -> Certain overflow
66 // exp_Result = 0x103fe -> Possible overflow
67 // 0x0fc01 <= exp_Result < 0x103fe -> No over/underflow (main path)
68 // 0x0fc01 - 52 <= exp_Result < 0x0fc01 -> Possible underflow
69 // exp_Result < 0x0fc01 - 52 -> Certain underflow
100 GR_Parameter_RESULT = r37
104 GLOBAL_LIBM_ENTRY(__libm_ldexp)
107 // Is x NAN, INF, ZERO, +-?
108 // Build the exponent Bias
111 getf.exp GR_signexp_X = FR_Floating_X // Get signexp of x
112 fclass.m p6,p0 = FR_Floating_X, 0xe7 // @snan | @qnan | @inf | @zero
113 mov GR_Bias = 0x0ffff
117 // Is integer type 32 bits?
120 mov GR_Big = 35000 // If N this big then certain overflow
121 fnorm.s1 FR_Norm_X = FR_Floating_X
122 cmp.eq p8,p9 = r34,r0
126 // Sign extend N if int is 32 bits
128 (p9) mov GR_N_as_int = r33 // Copy N if int is 64 bits
129 fclass.m p9,p0 = FR_Floating_X, 0x0b // Test for x=unorm
130 (p8) sxt4 GR_N_as_int = r33 // Sign extend N if int is 32 bits
133 mov GR_NBig = -35000 // If N this small then certain underflow
135 mov GR_max_exp = 0x103fe // Exponent of maximum double
139 // Create biased exponent for 2**N
141 add GR_N_Biased = GR_Bias,GR_N_as_int
143 cmp.ge p7, p0 = GR_N_as_int, GR_Big // Certain overflow?
146 cmp.le p8, p0 = GR_N_as_int, GR_NBig // Certain underflow?
147 mov GR_min_exp = 0x0fc01 // Exponent of minimum double
148 (p9) br.cond.spnt LDEXP_UNORM // Branch if x=unorm
153 // Main path continues. Also return here from x=unorm path.
155 .pred.rel "mutex",p7,p8
157 setf.exp FR_Two_N = GR_N_Biased
159 (p7) mov GR_N_as_int = GR_Big // Limit max N
162 (p8) mov GR_N_as_int = GR_NBig // Limit min N
164 (p8) cmp.eq p7,p0 = r0,r0 // Set p7 if |N| big
169 // Create biased exponent for 2**N for N big
173 (p7) add GR_N_Biased = GR_Bias,GR_N_as_int
175 cmp.eq.or p6,p0 = r33,r0
178 mov GR_pos_ov_limit = 0x103ff // Exponent for positive overflow
180 mov GR_exp_mask = 0x1ffff // Exponent mask
185 // Create 2**N for N big
186 // Return x when N = 0 or X = Nan, Inf, Zero
189 (p7) setf.exp FR_Two_N = GR_N_Biased
191 mov GR_min_den_exp = 0x0fc01 - 52 // Exponent of min denorm dble
194 and GR_exp_X = GR_exp_mask, GR_signexp_X
195 (p6) fma.d.s0 FR_Result = FR_Floating_X, f1, f0
201 // Raise Denormal operand flag with compare
202 // Compute biased result exponent
205 add GR_exp_Result = GR_exp_X, GR_N_as_int
206 fcmp.ge.s0 p0,p11 = FR_Floating_X,f0
207 mov GR_neg_ov_limit = 0x303ff // Exponent for negative overflow
212 // Do final operation
215 cmp.lt p7,p6 = GR_exp_Result, GR_max_exp // Test no overflow
216 fma.d.s0 FR_Result = FR_Two_N,FR_Norm_X,f0
217 cmp.lt p9,p0 = GR_exp_Result, GR_min_den_exp // Test sure underflow
222 (p9) br.cond.spnt LDEXP_UNDERFLOW // Branch if certain underflow
227 (p6) cmp.gt.unc p6,p8 = GR_exp_Result, GR_max_exp // Test sure overflow
228 (p7) cmp.ge.unc p7,p9 = GR_exp_Result, GR_min_exp // Test no over/underflow
229 (p7) br.ret.sptk b0 // Return from main path
234 (p6) br.cond.spnt LDEXP_OVERFLOW // Branch if certain overflow
235 (p8) br.cond.spnt LDEXP_POSSIBLE_OVERFLOW // Branch if possible overflow
236 (p9) br.cond.spnt LDEXP_POSSIBLE_UNDERFLOW // Branch if possible underflow
240 // Here if possible underflow.
241 // Resulting exponent: 0x0fc01-52 <= exp_Result < 0x0fc01
242 LDEXP_POSSIBLE_UNDERFLOW:
244 // Here if possible overflow.
245 // Resulting exponent: 0x103fe = exp_Result
246 LDEXP_POSSIBLE_OVERFLOW:
248 // Set up necessary status fields
250 // S0 user supplied status
251 // S2 user supplied status + WRE + TD (Overflows)
252 // S3 user supplied status + FZ + TD (Underflows)
267 // Do final operation with s2 and s3
270 setf.exp FR_NBig = GR_neg_ov_limit
271 fma.d.s3 FR_Result3 = FR_Two_N,FR_Norm_X,f0
275 setf.exp FR_Big = GR_pos_ov_limit
276 fma.d.s2 FR_Result2 = FR_Two_N,FR_Norm_X,f0
281 // Check for overflow or underflow.
298 // Is the result zero?
302 fclass.m p6, p0 = FR_Result3, 0x007
307 fcmp.ge.s1 p7, p8 = FR_Result2 , FR_Big
313 // Detect masked underflow - Tiny + Inexact Only
317 (p6) fcmp.neq.unc.s1 p6, p0 = FR_Result , FR_Result2
323 // Is result bigger the allowed range?
324 // Branch out for underflow
328 (p8) fcmp.le.unc.s1 p9, p10 = FR_Result2 , FR_NBig
329 (p6) br.cond.spnt LDEXP_UNDERFLOW
334 // Branch out for overflow
337 (p7) br.cond.spnt LDEXP_OVERFLOW
338 (p9) br.cond.spnt LDEXP_OVERFLOW
339 br.ret.sptk b0 // Return from main path.
343 // Here if result overflows
346 alloc r32=ar.pfs,3,0,4,0
347 addl GR_Tag = 146, r0 // Set error tag for overflow
348 br.cond.sptk __libm_error_region // Call error support for overflow
352 // Here if result underflows
355 alloc r32=ar.pfs,3,0,4,0
356 addl GR_Tag = 147, r0 // Set error tag for underflow
357 br.cond.sptk __libm_error_region // Call error support for underflow
364 getf.exp GR_signexp_X = FR_Norm_X // Get signexp of normalized x
366 br.cond.sptk LDEXP_COMMON // Return to main path
371 GLOBAL_LIBM_END(__libm_ldexp)
372 LOCAL_LIBM_ENTRY(__libm_error_region)
375 // Get stack address of N
379 add GR_Parameter_Y=-32,sp
381 .save ar.pfs,GR_SAVE_PFS
382 mov GR_SAVE_PFS=ar.pfs
395 // Store N on stack in correct position
396 // Locate the address of x on stack
399 st8 [GR_Parameter_Y] = GR_N_as_int,16
400 add GR_Parameter_X = 16,sp
406 // Store x on the stack.
407 // Get address for result on stack.
411 stfd [GR_Parameter_X] = FR_Norm_X
412 add GR_Parameter_RESULT = 0,GR_Parameter_Y
416 stfd [GR_Parameter_Y] = FR_Result
417 add GR_Parameter_Y = -16,GR_Parameter_Y
418 br.call.sptk b0=__libm_error_support#
422 // Get location of result on stack
425 add GR_Parameter_RESULT = 48,sp
431 // Get the new result
434 ldfd FR_Result = [GR_Parameter_RESULT]
441 // Restore gp, ar.pfs and return
445 mov ar.pfs = GR_SAVE_PFS
449 LOCAL_LIBM_END(__libm_error_region)
451 .type __libm_error_support#,@function
452 .global __libm_error_support#