Update.
[glibc.git] / sysdeps / m68k / sub_n.S
blob92fb47a4c3af2e25fa81e2549ce96c801e215ae1
1 /* mc68020 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and
2    store difference in a third limb vector.
4 Copyright (C) 1992, 1994, 1996, 1998 Free Software Foundation, Inc.
6 This file is part of the GNU MP Library.
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Library General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or (at your
11 option) any later version.
13 The GNU MP Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
16 License for more details.
18 You should have received a copy of the GNU Library General Public License
19 along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21 MA 02111-1307, USA. */
24   INPUT PARAMETERS
25   res_ptr       (sp + 4)
26   s1_ptr        (sp + 8)
27   s2_ptr        (sp + 16)
28   size          (sp + 12)
31 #include "sysdep.h"
32 #include "asm-syntax.h"
34         TEXT
35 ENTRY(__mpn_sub_n)
36 /* Save used registers on the stack.  */
37         movel   R(d2),MEM_PREDEC(sp)
38         movel   R(a2),MEM_PREDEC(sp)
40 /* Copy the arguments to registers.  Better use movem?  */
41         movel   MEM_DISP(sp,12),R(a2)
42         movel   MEM_DISP(sp,16),R(a0)
43         movel   MEM_DISP(sp,20),R(a1)
44         movel   MEM_DISP(sp,24),R(d2)
46         eorw    #1,R(d2)
47         lsrl    #1,R(d2)
48         bcc     L(L1)
49         subql   #1,R(d2)        /* clears cy as side effect */
51 L(Loop:)
52         movel   MEM_POSTINC(a0),R(d0)
53         movel   MEM_POSTINC(a1),R(d1)
54         subxl   R(d1),R(d0)
55         movel   R(d0),MEM_POSTINC(a2)
56 L(L1:)  movel   MEM_POSTINC(a0),R(d0)
57         movel   MEM_POSTINC(a1),R(d1)
58         subxl   R(d1),R(d0)
59         movel   R(d0),MEM_POSTINC(a2)
61         dbf     R(d2),L(Loop)           /* loop until 16 lsb of %4 == -1 */
62         subxl   R(d0),R(d0)     /* d0 <= -cy; save cy as 0 or -1 in d0 */
63         subl    #0x10000,R(d2)
64         bcs     L(L2)
65         addl    R(d0),R(d0)     /* restore cy */
66         bra     L(Loop)
68 L(L2:)
69         negl    R(d0)
71 /* Restore used registers from stack frame.  */
72         movel   MEM_POSTINC(sp),R(a2)
73         movel   MEM_POSTINC(sp),R(d2)
75         rts
76 END(__mpn_sub_n)