mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-09 10:50:08 +00:00
77a58cad3f
* libio/Makefile [routines]: Remove iofscanf, add iopopen, pclose. * libio/iofscanf.c: Remove file. * libio/iogetdelim.c (_IO_getdelim): Correct stupid bug at string termination. * libio/iopopen.c: New file from GNU libio. * libio/memstream.c: Fixed bug in fclose handling. Instead of providing a close callback we need a finish callback. * libio/pclose.c: New file. Derived from popen.c in GNU libio. * posix/gnu/types.h: Fixed typo. * stdio-common/errnobug.c: fputs returns EOF in error case. Do not test for != 0. * stdio-common/printf-parse.h (parse_one_spec): Do not force padding with ' ' if precision is given. Fix by HJ Lu. * stdio-common/printf_fp.c: Fix comment. * stdio-common/tfformat.c, stdio-common/tiformat.c, stdio-common/tstdiomisc.c: New files from GNU libio test suite. * stdio-common/tstgetln.c: Provide ssize_t type when testing libio. * stdio-common/vfprintf.c (outchar): Use PUTC instead of putc. (vfprintf): Cleasr args_type array before using it. When printing 0 as an integer with precision 0 nothing must be written for the number. Based on patch by HJ Lu. * stdio-common/vfscanf.c: Remove fixed input buffer. Now we have a dynamically extended buffer. * stdlib/strtod.c: Merge with version in Linux libc. This fixes some bugs with handling of very small numbers and has different solution for formaer patches. * sysdeps/i386/i586/add_n.S, sysdeps/i386/i586/sub_n.S: Rename macros r1 and r2 to t1, and t2 resp. This is necessary because glibc headers also define r1. Tue Dec 5 02:27:32 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu> * libio/Makefile [routines]: Remove iofscanf, add iopopen, pclose. * libio/iofscanf.c: Remove file. * libio/iogetdelim.c (_IO_getdelim): Correct stupid bug at string termination. * libio/iopopen.c: New file from GNU libio. * libio/memstream.c: Fixed bug in fclose handling. Instead of providing a close callback we need a finish callback. * libio/pclose.c: New file. Derived from popen.c in GNU libio. * posix/gnu/types.h: Fixed typo. * stdio-common/errnobug.c: fputs returns EOF in error case. Do not test for != 0. * stdio-common/printf-parse.h (parse_one_spec): Do not force padding with ' ' if precision is given. Fix by HJ Lu. * stdio-common/printf_fp.c: Fix comment. * stdio-common/tfformat.c, stdio-common/tiformat.c, stdio-common/tstdiomisc.c: New files from GNU libio test suite. * stdio-common/tstgetln.c: Provide ssize_t type when testing libio. * stdio-common/vfprintf.c (outchar): Use PUTC instead of putc. (vfprintf): Cleasr args_type array before using it. When printing 0 as an integer with precision 0 nothing must be written for the number. Based on patch by HJ Lu. * stdio-common/vfscanf.c: Remove fixed input buffer. Now we have a dynamically extended buffer. * stdlib/strtod.c: Merge with version in Linux libc. This fixes some bugs with handling of very small numbers and has different solution for formaer patches. * sysdeps/i386/i586/add_n.S, sysdeps/i386/i586/sub_n.S: Rename macros r1 and r2 to t1, and t2 resp. This is necessary because glibc headers also define r1.
137 lines
2.6 KiB
ArmAsm
137 lines
2.6 KiB
ArmAsm
/* Pentium __mpn_sub_n -- Subtract two limb vectors of the same length > 0
|
|
and store difference in a third limb vector.
|
|
|
|
Copyright (C) 1992, 1994, 1995 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU MP Library.
|
|
|
|
The GNU MP Library is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
The GNU MP Library is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with the GNU MP Library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
/*
|
|
INPUT PARAMETERS
|
|
res_ptr (sp + 4)
|
|
s1_ptr (sp + 8)
|
|
s2_ptr (sp + 12)
|
|
size (sp + 16)
|
|
*/
|
|
|
|
#include "sysdep.h"
|
|
#include "asm-syntax.h"
|
|
|
|
#define t1 %eax
|
|
#define t2 %edx
|
|
#define src1 %esi
|
|
#define src2 %ebp
|
|
#define dst %edi
|
|
#define x %ebx
|
|
|
|
.text
|
|
ALIGN (3)
|
|
.globl C_SYMBOL_NAME(__mpn_sub_n)
|
|
C_SYMBOL_NAME(__mpn_sub_n:)
|
|
pushl %edi
|
|
pushl %esi
|
|
pushl %ebx
|
|
pushl %ebp
|
|
|
|
movl 20(%esp),dst /* res_ptr */
|
|
movl 24(%esp),src1 /* s1_ptr */
|
|
movl 28(%esp),src2 /* s2_ptr */
|
|
movl 32(%esp),%ecx /* size */
|
|
|
|
movl (src2),x
|
|
|
|
decl %ecx
|
|
movl %ecx,t2
|
|
shrl $3,%ecx
|
|
andl $7,t2
|
|
testl %ecx,%ecx /* zero carry flag */
|
|
jz Lend
|
|
pushl t2
|
|
|
|
ALIGN (3)
|
|
Loop: movl 28(dst),%eax /* fetch destination cache line */
|
|
leal 32(dst),dst
|
|
|
|
L1: movl (src1),t1
|
|
movl 4(src1),t2
|
|
sbbl x,t1
|
|
movl 4(src2),x
|
|
sbbl x,t2
|
|
movl 8(src2),x
|
|
movl t1,-32(dst)
|
|
movl t2,-28(dst)
|
|
|
|
L2: movl 8(src1),t1
|
|
movl 12(src1),t2
|
|
sbbl x,t1
|
|
movl 12(src2),x
|
|
sbbl x,t2
|
|
movl 16(src2),x
|
|
movl t1,-24(dst)
|
|
movl t2,-20(dst)
|
|
|
|
L3: movl 16(src1),t1
|
|
movl 20(src1),t2
|
|
sbbl x,t1
|
|
movl 20(src2),x
|
|
sbbl x,t2
|
|
movl 24(src2),x
|
|
movl t1,-16(dst)
|
|
movl t2,-12(dst)
|
|
|
|
L4: movl 24(src1),t1
|
|
movl 28(src1),t2
|
|
sbbl x,t1
|
|
movl 28(src2),x
|
|
sbbl x,t2
|
|
movl 32(src2),x
|
|
movl t1,-8(dst)
|
|
movl t2,-4(dst)
|
|
|
|
leal 32(src1),src1
|
|
leal 32(src2),src2
|
|
decl %ecx
|
|
jnz Loop
|
|
|
|
popl t2
|
|
Lend:
|
|
decl t2 /* test t2 w/o clobbering carry */
|
|
js Lend2
|
|
incl t2
|
|
Loop2:
|
|
leal 4(dst),dst
|
|
movl (src1),t1
|
|
sbbl x,t1
|
|
movl 4(src2),x
|
|
movl t1,-4(dst)
|
|
leal 4(src1),src1
|
|
leal 4(src2),src2
|
|
decl t2
|
|
jnz Loop2
|
|
Lend2:
|
|
movl (src1),t1
|
|
sbbl x,t1
|
|
movl t1,(dst)
|
|
|
|
sbbl %eax,%eax
|
|
negl %eax
|
|
|
|
popl %ebp
|
|
popl %ebx
|
|
popl %esi
|
|
popl %edi
|
|
ret
|