Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / i386 / fpu / s_frexpf.S
blobcfdf28e8ed310c7cc4a67dad09c99eef8dadf8b9
1 /* ix87 specific frexp implementation for float.
2    Copyright (C) 1997-2014 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
20 #include <machine/asm.h>
22         .section .rodata
24         .align ALIGNARG(4)
25         .type two25,@object
26 two25:  .byte 0, 0, 0, 0x4c
27         ASM_SIZE_DIRECTIVE(two25)
29 #ifdef PIC
30 #define MO(op) op##@GOTOFF(%edx)
31 #else
32 #define MO(op) op
33 #endif
35 #define PARMS   4               /* no space for saved regs */
36 #define VAL     PARMS
37 #define EXPP    VAL+4
39         .text
40 ENTRY (__frexpf)
42         movl    VAL(%esp), %eax
43         xorl    %ecx, %ecx
44         movl    %eax, %edx
45         andl    $0x7fffffff, %eax
46         jz      1f
47         cmpl    $0x7f800000, %eax
48         jae     1f
50         cmpl    $0x00800000, %eax
51         jae     2f
53         flds    VAL(%esp)
54 #ifdef  PIC
55         LOAD_PIC_REG (dx)
56 #endif
57         fmuls   MO(two25)
58         movl    $-25, %ecx
59         fstps   VAL(%esp)
60         fwait
61         movl    VAL(%esp), %eax
62         movl    %eax, %edx
63         andl    $0x7fffffff, %eax
65 2:      shrl    $23, %eax
66         andl    $0x807fffff, %edx
67         subl    $126, %eax
68         orl     $0x3f000000, %edx
69         addl    %eax, %ecx
70         movl    %edx, VAL(%esp)
72         /* Store %ecx in the variable pointed to by the second argument,
73            get the factor from the stack and return.  */
74 1:      movl    EXPP(%esp), %eax
75         flds    VAL(%esp)
76         movl    %ecx, (%eax)
78         ret
79 END (__frexpf)
80 weak_alias (__frexpf, frexpf)