1 .file "libm_scalblnf.s"
4 // Copyright (c) 2001 - 2003, Intel Corporation
5 // All rights reserved.
7 // Contributed 2001 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 // 08/03/01 Initial version
43 // 08/23/01 Corrected error tag number
44 // 02/06/02 Corrected to handle 32- or 64-bit integers
45 // 05/20/02 Cleaned up namespace and sf0 syntax
46 // 02/10/03 Reordered header: .section, .global, .proc, .align
47 // 08/25/03 Improved performance
50 //==============================================================
51 // float __libm_scalblnf (float x, long int n, int long_int_type)
52 // input floating point f8 and long int n (r33)
53 // input long_int_type = 0 if long int defined as 32 bits, = 1 if 64 bits
54 // output floating point f8
56 // Returns x* 2**n using an fma and detects overflow
61 // Compute biased exponent of result exp_Result = N + exp_X
63 // exp_Result > 0x1007e -> Certain overflow
64 // exp_Result = 0x1007e -> Possible overflow
65 // 0x0ff81 <= exp_Result < 0x1007e -> No over/underflow (main path)
66 // 0x0ff81 - 23 <= exp_Result < 0x0ff81 -> Possible underflow
67 // exp_Result < 0x0ff81 - 23 -> Certain underflow
98 GR_Parameter_RESULT = r37
102 GLOBAL_LIBM_ENTRY(__libm_scalblnf)
105 // Is x NAN, INF, ZERO, +-?
106 // Build the exponent Bias
109 getf.exp GR_signexp_X = FR_Floating_X // Get signexp of x
110 fclass.m p6,p0 = FR_Floating_X, 0xe7 // @snan | @qnan | @inf | @zero
111 mov GR_Bias = 0x0ffff
115 // Is long integer type 32 bits?
118 mov GR_Big = 35000 // If N this big then certain overflow
119 fnorm.s1 FR_Norm_X = FR_Floating_X
120 cmp.eq p8,p9 = r34,r0
124 // Sign extend N if long int is 32 bits
126 (p9) mov GR_N_as_int = r33 // Copy N if long int is 64 bits
127 fclass.m p9,p0 = FR_Floating_X, 0x0b // Test for x=unorm
128 (p8) sxt4 GR_N_as_int = r33 // Sign extend N if long int is 32 bits
131 mov GR_NBig = -35000 // If N this small then certain underflow
133 mov GR_max_exp = 0x1007e // Exponent of maximum float
137 // Create biased exponent for 2**N
139 add GR_N_Biased = GR_Bias,GR_N_as_int
141 cmp.ge p7, p0 = GR_N_as_int, GR_Big // Certain overflow?
144 cmp.le p8, p0 = GR_N_as_int, GR_NBig // Certain underflow?
145 mov GR_min_exp = 0x0ff81 // Exponent of minimum float
146 (p9) br.cond.spnt SCALBNF_UNORM // Branch if x=unorm
151 // Main path continues. Also return here from x=unorm path.
153 .pred.rel "mutex",p7,p8
155 setf.exp FR_Two_N = GR_N_Biased
157 (p7) mov GR_N_as_int = GR_Big // Limit max N
160 (p8) mov GR_N_as_int = GR_NBig // Limit min N
162 (p8) cmp.eq p7,p0 = r0,r0 // Set p7 if |N| big
167 // Create biased exponent for 2**N for N big
171 (p7) add GR_N_Biased = GR_Bias,GR_N_as_int
173 cmp.eq.or p6,p0 = r33,r0
176 mov GR_pos_ov_limit = 0x1007f // Exponent for positive overflow
178 mov GR_exp_mask = 0x1ffff // Exponent mask
183 // Create 2**N for N big
184 // Return x when N = 0 or X = Nan, Inf, Zero
187 (p7) setf.exp FR_Two_N = GR_N_Biased
189 mov GR_min_den_exp = 0x0ff81 - 23 // Exponent of min denorm float
192 and GR_exp_X = GR_exp_mask, GR_signexp_X
193 (p6) fma.s.s0 FR_Result = FR_Floating_X, f1, f0
199 // Raise Denormal operand flag with compare
200 // Compute biased result exponent
203 add GR_exp_Result = GR_exp_X, GR_N_as_int
204 fcmp.ge.s0 p0,p11 = FR_Floating_X,f0
205 mov GR_neg_ov_limit = 0x3007f // Exponent for negative overflow
210 // Do final operation
213 cmp.lt p7,p6 = GR_exp_Result, GR_max_exp // Test no overflow
214 fma.s.s0 FR_Result = FR_Two_N,FR_Norm_X,f0
215 cmp.lt p9,p0 = GR_exp_Result, GR_min_den_exp // Test sure underflow
220 (p9) br.cond.spnt SCALBNF_UNDERFLOW // Branch if certain underflow
225 (p6) cmp.gt.unc p6,p8 = GR_exp_Result, GR_max_exp // Test sure overflow
226 (p7) cmp.ge.unc p7,p9 = GR_exp_Result, GR_min_exp // Test no over/underflow
227 (p7) br.ret.sptk b0 // Return from main path
232 (p6) br.cond.spnt SCALBNF_OVERFLOW // Branch if certain overflow
233 (p8) br.cond.spnt SCALBNF_POSSIBLE_OVERFLOW // Branch if possible overflow
234 (p9) br.cond.spnt SCALBNF_POSSIBLE_UNDERFLOW // Branch if possible underflow
238 // Here if possible underflow.
239 // Resulting exponent: 0x0ff81-23 <= exp_Result < 0x0ff81
240 SCALBNF_POSSIBLE_UNDERFLOW:
242 // Here if possible overflow.
243 // Resulting exponent: 0x1007e = exp_Result
244 SCALBNF_POSSIBLE_OVERFLOW:
246 // Set up necessary status fields
248 // S0 user supplied status
249 // S2 user supplied status + WRE + TD (Overflows)
250 // S3 user supplied status + FZ + TD (Underflows)
265 // Do final operation with s2 and s3
268 setf.exp FR_NBig = GR_neg_ov_limit
269 fma.s.s3 FR_Result3 = FR_Two_N,FR_Norm_X,f0
273 setf.exp FR_Big = GR_pos_ov_limit
274 fma.s.s2 FR_Result2 = FR_Two_N,FR_Norm_X,f0
279 // Check for overflow or underflow.
296 // Is the result zero?
300 fclass.m p6, p0 = FR_Result3, 0x007
305 fcmp.ge.s1 p7, p8 = FR_Result2 , FR_Big
311 // Detect masked underflow - Tiny + Inexact Only
315 (p6) fcmp.neq.unc.s1 p6, p0 = FR_Result , FR_Result2
321 // Is result bigger the allowed range?
322 // Branch out for underflow
326 (p8) fcmp.le.unc.s1 p9, p10 = FR_Result2 , FR_NBig
327 (p6) br.cond.spnt SCALBNF_UNDERFLOW
332 // Branch out for overflow
335 (p7) br.cond.spnt SCALBNF_OVERFLOW
336 (p9) br.cond.spnt SCALBNF_OVERFLOW
337 br.ret.sptk b0 // Return from main path.
341 // Here if result overflows
344 alloc r32=ar.pfs,3,0,4,0
345 addl GR_Tag = 205, r0 // Set error tag for overflow
346 br.cond.sptk __libm_error_region // Call error support for overflow
350 // Here if result underflows
353 alloc r32=ar.pfs,3,0,4,0
354 addl GR_Tag = 206, r0 // Set error tag for underflow
355 br.cond.sptk __libm_error_region // Call error support for underflow
362 getf.exp GR_signexp_X = FR_Norm_X // Get signexp of normalized x
364 br.cond.sptk SCALBNF_COMMON // Return to main path
369 GLOBAL_LIBM_END(__libm_scalblnf)
370 LOCAL_LIBM_ENTRY(__libm_error_region)
373 // Get stack address of N
377 add GR_Parameter_Y=-32,sp
379 .save ar.pfs,GR_SAVE_PFS
380 mov GR_SAVE_PFS=ar.pfs
393 // Store N on stack in correct position
394 // Locate the address of x on stack
397 st8 [GR_Parameter_Y] = GR_N_as_int,16
398 add GR_Parameter_X = 16,sp
404 // Store x on the stack.
405 // Get address for result on stack.
409 stfs [GR_Parameter_X] = FR_Norm_X
410 add GR_Parameter_RESULT = 0,GR_Parameter_Y
414 stfs [GR_Parameter_Y] = FR_Result
415 add GR_Parameter_Y = -16,GR_Parameter_Y
416 br.call.sptk b0=__libm_error_support#
420 // Get location of result on stack
423 add GR_Parameter_RESULT = 48,sp
429 // Get the new result
432 ldfs FR_Result = [GR_Parameter_RESULT]
439 // Restore gp, ar.pfs and return
443 mov ar.pfs = GR_SAVE_PFS
447 LOCAL_LIBM_END(__libm_error_region)
449 .type __libm_error_support#,@function
450 .global __libm_error_support#