id
stringlengths
22
129
text
stringlengths
60
19.5k
arch
stringclasses
9 values
syntax
stringclasses
5 values
kind
stringclasses
4 values
repo
stringclasses
32 values
path
stringlengths
7
108
license
stringclasses
10 values
commit
stringlengths
40
40
source_host
stringclasses
1 value
category
stringclasses
15 values
source_url
stringlengths
85
192
line_start
int64
1
5.48k
line_end
int64
4
5.5k
bminor/glibc:sysdeps/i386/fpu/s_ceill.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <libm-alias-ldouble.h> #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__ceill) fldt 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_ceill.S
LGPL-2.1
2ce30701e6df07deda6fb205808769d237aa2460
github
libc
https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_ceill.S
1
41
bminor/glibc:sysdeps/i386/fpu/s_ceill.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__ceill) fldt 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use here...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_ceill.S
LGPL-2.1
26b0bf96000a825ad3381be52ebd8adf2afc785f
github
libc
https://github.com/bminor/glibc/blob/26b0bf96000a825ad3381be52ebd8adf2afc785f/sysdeps/i386/fpu/s_ceill.S
1
40
bminor/glibc:sysdeps/i386/fpu/s_ceill.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__ceill) fldt 4(%esp) subl $8,%esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) /* store fpu control word */ /* We use here %e...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_ceill.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_ceill.S
1
35
bminor/glibc:sysdeps/i386/fpu/s_copysign.S:1
/* * Public domain. */ #include <machine/asm.h> #include <libm-alias-double.h> RCSID("$NetBSD: s_copysign.S,v 1.4 1995/05/08 23:53:02 jtc Exp $") ENTRY(__copysign) movl 16(%esp),%edx movl 8(%esp),%eax andl $0x80000000,%edx andl $0x7fffffff,%eax orl %edx,%eax movl %eax,8(%esp) fldl 4(%esp) ret END (__copysi...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysign.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_copysign.S
1
20
bminor/glibc:sysdeps/i386/fpu/s_copysign.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> #include <libm-alias-double.h> RCSID("$NetBSD: s_copysign.S,v 1.4 1995/05/08 23:53:02 jtc Exp $") ENTRY(__copysign) movl 16(%esp),%edx movl 8(%esp),%eax andl $0x80000000,%edx andl $0x7fffffff,%eax orl %edx,%eax movl ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysign.S
LGPL-2.1
bc4e8f9b49950c982f22d4f4c602a972a63abf65
github
libc
https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_copysign.S
1
21
bminor/glibc:sysdeps/i386/fpu/s_copysign.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: s_copysign.S,v 1.4 1995/05/08 23:53:02 jtc Exp $") ENTRY(__copysign) movl 16(%esp),%edx movl 8(%esp),%eax andl $0x80000000,%edx andl $0x7fffffff,%eax orl %edx,%eax movl %eax,8(%esp) fldl 4(%esp) ret...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysign.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_copysign.S
1
20
bminor/glibc:sysdeps/i386/fpu/s_copysignf.S:1
/* * Public domain. */ #include <machine/asm.h> #include <libm-alias-float.h> RCSID("$NetBSD: s_copysignf.S,v 1.3 1995/05/08 23:53:25 jtc Exp $") ENTRY(__copysignf) movl 8(%esp),%edx movl 4(%esp),%eax andl $0x80000000,%edx andl $0x7fffffff,%eax orl %edx,%eax movl %eax,4(%esp) flds 4(%esp) ret END (__copysi...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysignf.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_copysignf.S
1
20
bminor/glibc:sysdeps/i386/fpu/s_copysignf.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> #include <libm-alias-float.h> RCSID("$NetBSD: s_copysignf.S,v 1.3 1995/05/08 23:53:25 jtc Exp $") ENTRY(__copysignf) movl 8(%esp),%edx movl 4(%esp),%eax andl $0x80000000,%edx andl $0x7fffffff,%eax orl %edx,%eax movl ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysignf.S
LGPL-2.1
e4602cba2fb919546bee0eacbd10ab8ade7b7b6f
github
libc
https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_copysignf.S
1
21
bminor/glibc:sysdeps/i386/fpu/s_copysignf.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: s_copysignf.S,v 1.3 1995/05/08 23:53:25 jtc Exp $") ENTRY(__copysignf) movl 8(%esp),%edx movl 4(%esp),%eax andl $0x80000000,%edx andl $0x7fffffff,%eax orl %edx,%eax movl %eax,4(%esp) flds 4(%esp) re...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysignf.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_copysignf.S
1
20
bminor/glibc:sysdeps/i386/fpu/s_copysignl.S:1
/* * Public domain. */ #include <libm-alias-ldouble.h> #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__copysignl) movl 24(%esp),%edx movl 12(%esp),%eax andl $0x8000,%edx andl $0x7fff,%eax orl %edx,%eax movl %eax,12(%esp) fldt 4(%esp) ret END (__copysignl) libm_alias_ldouble (__copysign, copysign)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysignl.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_copysignl.S
1
20
bminor/glibc:sysdeps/i386/fpu/s_copysignl.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <libm-alias-ldouble.h> #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__copysignl) movl 24(%esp),%edx movl 12(%esp),%eax andl $0x8000,%edx andl $0x7fff,%eax orl %e...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysignl.S
LGPL-2.1
2ce30701e6df07deda6fb205808769d237aa2460
github
libc
https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_copysignl.S
1
22
bminor/glibc:sysdeps/i386/fpu/s_copysignl.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__copysignl) movl 24(%esp),%edx movl 12(%esp),%eax andl $0x8000,%edx andl $0x7fff,%eax orl %edx,%eax movl %eax,12(%esp) fld...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_copysignl.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_copysignl.S
1
21
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2026 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:2
#ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1) movzwl 4+6(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc086, %eax // is num >= 704? jae HIDDEN_JUMPTARGET (__exp) fldl 4(%esp) // x fxam // Is NaN, +-Inf or +-0? xorb $0x80, %ah ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_expm1.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:3
fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $8, %esp cfi_adjust_cfa_offset (-...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_expm1.S
81
112
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
2642002380aafb71a1d3b569b6d7ebeab3284816
github
libc
https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2024 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
dff8da6b3e89b986bb7f6b1ec18cf65d5972e307
github
libc
https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2023 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
6d7e8eda9b85b08f207a6dc6f187e94e4817270f
github
libc
https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
114e299ca66353fa7be1ee45bb4e1307d3de1fa2
github
libc
https://github.com/bminor/glibc/blob/114e299ca66353fa7be1ee45bb4e1307d3de1fa2/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
581c785bf31bc74430320c7856bbfa3875d025fe
github
libc
https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:2
#ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1) movzwl 4+6(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc086, %eax // is num >= 704? jae HIDDEN_JUMPTARGET (__exp) fldl 4(%esp) // x fxam // Is NaN, +-Inf or +-0? xorb $0x80, %ah ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
581c785bf31bc74430320c7856bbfa3875d025fe
github
libc
https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_expm1.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:3
fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $8, %esp cfi_adjust_cfa_offset (-8) fsubr %st, %st(1) ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
581c785bf31bc74430320c7856bbfa3875d025fe
github
libc
https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_expm1.S
81
111
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
2b778ceb4010c28d70de9b8eab20e8d88eed586b
github
libc
https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:2
DEFINE_DBL_MIN #ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1) movzwl 4+6(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc086, %eax // is num >= 704? jae HIDDEN_JUMPTARGET (__exp) fldl 4(%esp) // x fxam // Is NaN, +-Inf or +-0? ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
2b778ceb4010c28d70de9b8eab20e8d88eed586b
github
libc
https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_expm1.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:3
5: fldt MO(l2e) // log2(e) : x fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
2b778ceb4010c28d70de9b8eab20e8d88eed586b
github
libc
https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_expm1.S
81
114
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2020 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
d614a7539657941a9201c236b2f15afac18e1213
github
libc
https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2019 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
5a82c74822d3272df2f5929133680478c0cfb4bd
github
libc
https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2019 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
04277e02d7f54d3582bebcf8386b317018cd5e1d
github
libc
https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2018 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
688903eb3ef01301d239ab753d309d45720610a7
github
libc
https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2017 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
bc4e8f9b49950c982f22d4f4c602a972a63abf65
github
libc
https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2017 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
bfff8b1becd7d01c074177df7196ab327cd8c844
github
libc
https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:2
DEFINE_DBL_MIN #ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1) movzwl 4+6(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc086, %eax // is num >= 704? jae HIDDEN_JUMPTARGET (__exp) fldl 4(%esp) // x fxam // Is NaN, +-Inf or +-0? ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
bfff8b1becd7d01c074177df7196ab327cd8c844
github
libc
https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_expm1.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:3
5: fldt MO(l2e) // log2(e) : x fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
bfff8b1becd7d01c074177df7196ab327cd8c844
github
libc
https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_expm1.S
81
113
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
f7a9f785e547bd599dee496fd906a28bcb4ec7fe
github
libc
https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
37825319ee64d51bf8b1774f4964e9743eaf5ef6
github
libc
https://github.com/bminor/glibc/blob/37825319ee64d51bf8b1774f4964e9743eaf5ef6/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:2
.p2align 3 .type dbl_min,@object dbl_min: .byte 0, 0, 0, 0, 0, 0, 0x10, 0 ASM_SIZE_DIRECTIVE(dbl_min) #ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1) movzwl 4+6(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc086, %eax // is num >= 70...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:3
#ifdef PIC LOAD_PIC_REG (dx) #endif fld %st fabs fcoml MO(dbl_min) fstp %st fnstsw sahf jae 5f subl $8, %esp cfi_adjust_cfa_offset (8) fld %st(0) fmul %st(0) fstpl (%esp) addl $8, %esp cfi_adjust_cfa_offset (-8) ret 5: fldt MO(l2e) // log2(e) : x fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1.S
81
131
bminor/glibc:sysdeps/i386/fpu/s_expm1.S:4
fscale // 2^int(log2(e)*x) : int(log2(e)*x) : 2^(log2(e)*x)-2^int(log2(e)*x) fsubrl MO(one) // 1-2^int(log2(e)*x) : int(log2(e)*x) : 2^(log2(e)*x)-2^int(log2(e)*x) fstp %st(1) // 1-2^int(log2(e)*x) : 2^(log2(e)*x)-2^int(log2(e)*x) fsubrp %st, %st(1) // 2^(log2(e)*x) ret 2: fstp %st fldl MO(minus1) // Set resu...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1.S
121
131
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2024 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
dff8da6b3e89b986bb7f6b1ec18cf65d5972e307
github
libc
https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:2
#ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1f) movzwl 4+2(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc2b1, %eax // is num >= 88.5? jae HIDDEN_JUMPTARGET (__expf) flds 4(%esp) // x fxam // Is NaN, +-Inf or +-0? xorb $0x80, %...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
dff8da6b3e89b986bb7f6b1ec18cf65d5972e307
github
libc
https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_expm1f.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:3
fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $8, %esp cfi_adjust_cfa_offset (-...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
dff8da6b3e89b986bb7f6b1ec18cf65d5972e307
github
libc
https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_expm1f.S
81
112
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2023 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
6d7e8eda9b85b08f207a6dc6f187e94e4817270f
github
libc
https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
114e299ca66353fa7be1ee45bb4e1307d3de1fa2
github
libc
https://github.com/bminor/glibc/blob/114e299ca66353fa7be1ee45bb4e1307d3de1fa2/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
581c785bf31bc74430320c7856bbfa3875d025fe
github
libc
https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:2
#ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1f) movzwl 4+2(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc2b1, %eax // is num >= 88.5? jae HIDDEN_JUMPTARGET (__expf) flds 4(%esp) // x fxam // Is NaN, +-Inf or +-0? xorb $0x80, %...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
581c785bf31bc74430320c7856bbfa3875d025fe
github
libc
https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_expm1f.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:3
fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $8, %esp cfi_adjust_cfa_offset (-8) fsubr %st, %st(1) ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
581c785bf31bc74430320c7856bbfa3875d025fe
github
libc
https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_expm1f.S
81
111
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softw...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
2b778ceb4010c28d70de9b8eab20e8d88eed586b
github
libc
https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:2
DEFINE_FLT_MIN #ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1f) movzwl 4+2(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc2b1, %eax // is num >= 88.5? jae HIDDEN_JUMPTARGET (__expf) flds 4(%esp) // x fxam // Is NaN, +-Inf or +-0...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
2b778ceb4010c28d70de9b8eab20e8d88eed586b
github
libc
https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_expm1f.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:3
5: fldt MO(l2e) // log2(e) : x fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
2b778ceb4010c28d70de9b8eab20e8d88eed586b
github
libc
https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_expm1f.S
81
114
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2020 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
d614a7539657941a9201c236b2f15afac18e1213
github
libc
https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2019 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
5a82c74822d3272df2f5929133680478c0cfb4bd
github
libc
https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2019 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
04277e02d7f54d3582bebcf8386b317018cd5e1d
github
libc
https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2018 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
688903eb3ef01301d239ab753d309d45720610a7
github
libc
https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2017 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
e4602cba2fb919546bee0eacbd10ab8ade7b7b6f
github
libc
https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2017 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
bfff8b1becd7d01c074177df7196ab327cd8c844
github
libc
https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:2
DEFINE_FLT_MIN #ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1f) movzwl 4+2(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc2b1, %eax // is num >= 88.5? jae HIDDEN_JUMPTARGET (__expf) flds 4(%esp) // x fxam // Is NaN, +-Inf or +-0...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
bfff8b1becd7d01c074177df7196ab327cd8c844
github
libc
https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_expm1f.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:3
5: fldt MO(l2e) // log2(e) : x fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*x // Set round-to-nearest temporarily. subl $8, %esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) movl $0xf3ff, %ecx andl 4(%esp), %ecx movl %ecx, (%esp) fldcw (%esp) frndint // int(log2(e)*x) : log2(e)*x fldcw 4(%esp) addl $...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
bfff8b1becd7d01c074177df7196ab327cd8c844
github
libc
https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_expm1f.S
81
113
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
f7a9f785e547bd599dee496fd906a28bcb4ec7fe
github
libc
https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
37825319ee64d51bf8b1774f4964e9743eaf5ef6
github
libc
https://github.com/bminor/glibc/blob/37825319ee64d51bf8b1774f4964e9743eaf5ef6/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:1
/* ix87 specific implementation of exp(x)-1. Copyright (C) 1996-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. Based on code by John C. Bowman <bowman@ipp-garching.mpg.de>. Corrections by H.J. Lu (hjl@gnu.ai.mit.edu), ...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1f.S
1
60
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:2
.p2align 2 .type flt_min,@object flt_min: .byte 0, 0, 0x80, 0 ASM_SIZE_DIRECTIVE(flt_min) #ifdef PIC #define MO(op) op##@GOTOFF(%edx) #else #define MO(op) op #endif .text ENTRY(__expm1f) movzwl 4+2(%esp), %eax xorb $0x80, %ah // invert sign bit (now 1 is "positive") cmpl $0xc2b1, %eax // is num >= 88.5? jae HI...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1f.S
41
100
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:3
#ifdef PIC LOAD_PIC_REG (dx) #endif fld %st fabs fcoms MO(flt_min) fstp %st fnstsw sahf jae 5f subl $4, %esp cfi_adjust_cfa_offset (4) fld %st(0) fmul %st(0) fstps (%esp) addl $4, %esp cfi_adjust_cfa_offset (-4) ret 5: fldt MO(l2e) // log2(e) : x fmulp // log2(e)*x fld %st // log2(e)*x : log2(e)*...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1f.S
81
131
bminor/glibc:sysdeps/i386/fpu/s_expm1f.S:4
fscale // 2^int(log2(e)*x) : int(log2(e)*x) : 2^(log2(e)*x)-2^int(log2(e)*x) fsubrl MO(one) // 1-2^int(log2(e)*x) : int(log2(e)*x) : 2^(log2(e)*x)-2^int(log2(e)*x) fstp %st(1) // 1-2^int(log2(e)*x) : 2^(log2(e)*x)-2^int(log2(e)*x) fsubrp %st, %st(1) // 2^(log2(e)*x) ret 2: fstp %st fldl MO(minus1) // Set resu...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_expm1f.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_expm1f.S
121
131
bminor/glibc:sysdeps/i386/fpu/s_fabs.S:1
#include <sysdep.h> #include <libm-alias-double.h> .text ENTRY(__fabs) fldl 4(%esp) fabs ret END(__fabs) libm_alias_double (__fabs, fabs)
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fabs.S
LGPL-2.1
bc4e8f9b49950c982f22d4f4c602a972a63abf65
github
libc
https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_fabs.S
1
10
bminor/glibc:sysdeps/i386/fpu/s_fabs.S:1
#include <sysdep.h> .text ENTRY(__fabs) fldl 4(%esp) fabs ret END(__fabs) weak_alias (__fabs, fabs)
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fabs.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_fabs.S
1
9
bminor/glibc:sysdeps/i386/fpu/s_fabsf.S:1
#include <sysdep.h> #include <libm-alias-float.h> .text ENTRY(__fabsf) flds 4(%esp) fabs ret END(__fabsf) libm_alias_float (__fabs, fabs)
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fabsf.S
LGPL-2.1
e4602cba2fb919546bee0eacbd10ab8ade7b7b6f
github
libc
https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_fabsf.S
1
10
bminor/glibc:sysdeps/i386/fpu/s_fabsf.S:1
#include <sysdep.h> .text ENTRY(__fabsf) flds 4(%esp) fabs ret END(__fabsf) weak_alias (__fabsf, fabsf)
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fabsf.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_fabsf.S
1
9
bminor/glibc:sysdeps/i386/fpu/s_fabsl.S:1
#include <libm-alias-ldouble.h> #include <sysdep.h> .text ENTRY(__fabsl) fldt 4(%esp) fabs ret END(__fabsl) libm_alias_ldouble (__fabs, fabs)
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fabsl.S
LGPL-2.1
2ce30701e6df07deda6fb205808769d237aa2460
github
libc
https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_fabsl.S
1
10
bminor/glibc:sysdeps/i386/fpu/s_fabsl.S:1
#include <sysdep.h> .text ENTRY(__fabsl) fldt 4(%esp) fabs ret END(__fabsl) weak_alias (__fabsl, fabsl)
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fabsl.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_fabsl.S
1
9
bminor/glibc:sysdeps/i386/fpu/s_fdim.S:1
/* Compute positive difference. Copyright (C) 1997-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fdim.S
LGPL-2.1
f7a9f785e547bd599dee496fd906a28bcb4ec7fe
github
libc
https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_fdim.S
1
51
bminor/glibc:sysdeps/i386/fpu/s_fdim.S:1
/* Compute positive difference. Copyright (C) 1997-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fdim.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_fdim.S
1
51
bminor/glibc:sysdeps/i386/fpu/s_fdimf.S:1
/* Compute positive difference. Copyright (C) 1997-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fdimf.S
LGPL-2.1
f7a9f785e547bd599dee496fd906a28bcb4ec7fe
github
libc
https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_fdimf.S
1
51
bminor/glibc:sysdeps/i386/fpu/s_fdimf.S:1
/* Compute positive difference. Copyright (C) 1997-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fdimf.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_fdimf.S
1
51
bminor/glibc:sysdeps/i386/fpu/s_fdiml.S:1
/* Compute positive difference. Copyright (C) 1997-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fdiml.S
LGPL-2.1
f7a9f785e547bd599dee496fd906a28bcb4ec7fe
github
libc
https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_fdiml.S
1
51
bminor/glibc:sysdeps/i386/fpu/s_fdiml.S:1
/* Compute positive difference. Copyright (C) 1997-2015 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fdiml.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_fdiml.S
1
51
bminor/glibc:sysdeps/i386/fpu/s_finite.S:1
#include <machine/asm.h> ENTRY(__finite) movl 8(%esp),%eax movl $0xFFEFFFFF,%ecx subl %eax,%ecx xorl %ecx,%eax shrl $31, %eax ret END (__finite) weak_alias (__finite, finite) hidden_def (__finite)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_finite.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_finite.S
1
12
bminor/glibc:sysdeps/i386/fpu/s_finite.S:1
/* * Written by Joe Keane <jgk@jgk.org>. */ #include <machine/asm.h> ENTRY(__finite) movl 8(%esp),%eax movl $0xFFEFFFFF,%ecx subl %eax,%ecx xorl %ecx,%eax shrl $31, %eax ret END (__finite) weak_alias (__finite, finite) hidden_def (__finite)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_finite.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_finite.S
1
16
bminor/glibc:sysdeps/i386/fpu/s_finitef.S:1
#include <machine/asm.h> ENTRY(__finitef) movl 4(%esp),%eax movl $0xFF7FFFFF,%ecx subl %eax,%ecx xorl %ecx,%eax shrl $31,%eax ret END (__finitef) weak_alias (__finitef, finitef) hidden_def (__finitef)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_finitef.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_finitef.S
1
12
bminor/glibc:sysdeps/i386/fpu/s_finitef.S:1
/* * Written by Joe Keane <jgk@jgk.org>. */ #include <machine/asm.h> ENTRY(__finitef) movl 4(%esp),%eax movl $0xFF7FFFFF,%ecx subl %eax,%ecx xorl %ecx,%eax shrl $31,%eax ret END (__finitef) weak_alias (__finitef, finitef) hidden_def (__finitef)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_finitef.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_finitef.S
1
16
bminor/glibc:sysdeps/i386/fpu/s_finitel.S:1
#include <machine/asm.h> ENTRY(__finitel) movl 12(%esp),%eax orl $0xffff8000, %eax incl %eax shrl $31, %eax ret END (__finitel) weak_alias (__finitel, finitel) hidden_def (__finitel)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_finitel.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_finitel.S
1
11
bminor/glibc:sysdeps/i386/fpu/s_finitel.S:1
/* * Written by Joe Keane <jgk@jgk.org>. */ #include <machine/asm.h> ENTRY(__finitel) movl 12(%esp),%eax orl $0xffff8000, %eax incl %eax shrl $31, %eax ret END (__finitel) weak_alias (__finitel, finitel) hidden_def (__finitel)
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_finitel.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_finitel.S
1
15
bminor/glibc:sysdeps/i386/fpu/s_floor.S:1
/* * Public domain. */ #include <machine/asm.h> #include <libm-alias-double.h> RCSID("$NetBSD: s_floor.S,v 1.4 1995/05/09 00:01:59 jtc Exp $") ENTRY(__floor) fldl 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use here %edx although only the low 1 bits a...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floor.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_floor.S
1
34
bminor/glibc:sysdeps/i386/fpu/s_floor.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> #include <libm-alias-double.h> RCSID("$NetBSD: s_floor.S,v 1.4 1995/05/09 00:01:59 jtc Exp $") ENTRY(__floor) fldl 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floor.S
LGPL-2.1
bc4e8f9b49950c982f22d4f4c602a972a63abf65
github
libc
https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_floor.S
1
35
bminor/glibc:sysdeps/i386/fpu/s_floor.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: s_floor.S,v 1.4 1995/05/09 00:01:59 jtc Exp $") ENTRY(__floor) fldl 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use here %edx although only th...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floor.S
LGPL-2.1
623629de066dc2f404470e76ff074fc5ba643c6c
github
libc
https://github.com/bminor/glibc/blob/623629de066dc2f404470e76ff074fc5ba643c6c/sysdeps/i386/fpu/s_floor.S
1
34
bminor/glibc:sysdeps/i386/fpu/s_floor.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: s_floor.S,v 1.4 1995/05/09 00:01:59 jtc Exp $") ENTRY(__floor) fldl 4(%esp) subl $8,%esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) /* store fpu control word */ /* We use here %edx although only the l...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floor.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_floor.S
1
34
bminor/glibc:sysdeps/i386/fpu/s_floorf.S:1
/* * Public domain. */ #include <machine/asm.h> #include <libm-alias-float.h> RCSID("$NetBSD: s_floorf.S,v 1.3 1995/05/09 00:04:32 jtc Exp $") ENTRY(__floorf) flds 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use here %edx although only the low 1 bits ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorf.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_floorf.S
1
34
bminor/glibc:sysdeps/i386/fpu/s_floorf.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> #include <libm-alias-float.h> RCSID("$NetBSD: s_floorf.S,v 1.3 1995/05/09 00:04:32 jtc Exp $") ENTRY(__floorf) flds 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* W...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorf.S
LGPL-2.1
e4602cba2fb919546bee0eacbd10ab8ade7b7b6f
github
libc
https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_floorf.S
1
35
bminor/glibc:sysdeps/i386/fpu/s_floorf.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: s_floorf.S,v 1.3 1995/05/09 00:04:32 jtc Exp $") ENTRY(__floorf) flds 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use here %edx although only ...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorf.S
LGPL-2.1
623629de066dc2f404470e76ff074fc5ba643c6c
github
libc
https://github.com/bminor/glibc/blob/623629de066dc2f404470e76ff074fc5ba643c6c/sysdeps/i386/fpu/s_floorf.S
1
34
bminor/glibc:sysdeps/i386/fpu/s_floorf.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: s_floorf.S,v 1.3 1995/05/09 00:04:32 jtc Exp $") ENTRY(__floorf) flds 4(%esp) subl $8,%esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) /* store fpu control word */ /* We use here %edx although only the...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorf.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_floorf.S
1
34
bminor/glibc:sysdeps/i386/fpu/s_floorl.S:1
/* * Public domain. */ #include <libm-alias-ldouble.h> #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__floorl) fldt 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use here %edx although only the low 1 bits are defined. But none of the operations...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorl.S
LGPL-2.1
30891f35fa7da832b66d80d0807610df361851f3
github
libc
https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_floorl.S
1
39
bminor/glibc:sysdeps/i386/fpu/s_floorl.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <libm-alias-ldouble.h> #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__floorl) fldt 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fp...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorl.S
LGPL-2.1
2ce30701e6df07deda6fb205808769d237aa2460
github
libc
https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_floorl.S
1
41
bminor/glibc:sysdeps/i386/fpu/s_floorl.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__floorl) fldt 4(%esp) subl $32,%esp cfi_adjust_cfa_offset (32) fnstenv 4(%esp) /* store fpu environment */ /* We use her...
x86
gas-att
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorl.S
LGPL-2.1
623629de066dc2f404470e76ff074fc5ba643c6c
github
libc
https://github.com/bminor/glibc/blob/623629de066dc2f404470e76ff074fc5ba643c6c/sysdeps/i386/fpu/s_floorl.S
1
40
bminor/glibc:sysdeps/i386/fpu/s_floorl.S:1
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com> * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: $") ENTRY(__floorl) fldt 4(%esp) subl $8,%esp cfi_adjust_cfa_offset (8) fstcw 4(%esp) /* store fpu control word */ /* We use here %...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_floorl.S
LGPL-2.1
890b7a4b33d482b5c768ab47d70758b80227e9bc
github
libc
https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_floorl.S
1
35
bminor/glibc:sysdeps/i386/fpu/s_fmax.S:1
/* Compute maximum of two numbers, regarding NaN as missing argument. Copyright (C) 1997-2026 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as pu...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fmax.S
LGPL-2.1
04e750e75b73957cf1c791535a3f4319534a52fc
github
libc
https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_fmax.S
1
43
bminor/glibc:sysdeps/i386/fpu/s_fmax.S:1
/* Compute maximum of two numbers, regarding NaN as missing argument. Copyright (C) 1997-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as pu...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fmax.S
LGPL-2.1
2642002380aafb71a1d3b569b6d7ebeab3284816
github
libc
https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/i386/fpu/s_fmax.S
1
43
bminor/glibc:sysdeps/i386/fpu/s_fmax.S:1
/* Compute maximum of two numbers, regarding NaN as missing argument. Copyright (C) 1997-2024 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as pu...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fmax.S
LGPL-2.1
dff8da6b3e89b986bb7f6b1ec18cf65d5972e307
github
libc
https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_fmax.S
1
43
bminor/glibc:sysdeps/i386/fpu/s_fmax.S:1
/* Compute maximum of two numbers, regarding NaN as missing argument. Copyright (C) 1997-2023 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as pu...
x86
gas-like
handwritten
bminor/glibc
sysdeps/i386/fpu/s_fmax.S
LGPL-2.1
6d7e8eda9b85b08f207a6dc6f187e94e4817270f
github
libc
https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/i386/fpu/s_fmax.S
1
43