OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [machine/] [i386/] [f_logf.S] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 9 jlechner
/*
2
 * ====================================================
3
 * Copyright (C) 1998, 2002 by Red Hat Inc. All rights reserved.
4
 *
5
 * Permission to use, copy, modify, and distribute this
6
 * software is freely granted, provided that this notice
7
 * is preserved.
8
 * ====================================================
9
 */
10
 
11
#if !defined(_SOFT_FLOAT)
12
 
13
/*
14
Fast version of logf using Intel float instructions.
15
 
16
   float _f_logf (float x);
17
 
18
Function calculates the log base e of x.
19
There is no error checking or setting of errno.
20
*/
21
 
22
        #include "i386mach.h"
23
 
24
        .global SYM (_f_logf)
25
       SOTYPE_FUNCTION(_f_logf)
26
 
27
SYM (_f_logf):
28
        pushl ebp
29
        movl esp,ebp
30
 
31
        fld1
32
        fldl2e
33
        fdivrp
34
        flds 8(ebp)
35
        fyl2x
36
 
37
        leave
38
        ret
39
 
40
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.