1 /* mc68020 __mpn_add_n -- Add two limb vectors of the same length > 0 and store
2 sum in a third limb vector.
4 Copyright (C) 1992, 1994, 1996 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
31 #include "asm-syntax.h"
35 GLOBL C_SYMBOL_NAME(__mpn_add_n)
37 C_SYMBOL_NAME(__mpn_add_n:)
39 /* Save used registers on the stack. */
40 movel R(d2),MEM_PREDEC(sp)
41 movel R(a2),MEM_PREDEC(sp)
43 /* Copy the arguments to registers. Better use movem? */
44 movel MEM_DISP(sp,12),R(a2)
45 movel MEM_DISP(sp,16),R(a0)
46 movel MEM_DISP(sp,20),R(a1)
47 movel MEM_DISP(sp,24),R(d2)
52 subql #1,R(d2) /* clears cy as side effect */
55 movel MEM_POSTINC(a0),R(d0)
56 movel MEM_POSTINC(a1),R(d1)
58 movel R(d0),MEM_POSTINC(a2)
59 L(L1:) movel MEM_POSTINC(a0),R(d0)
60 movel MEM_POSTINC(a1),R(d1)
62 movel R(d0),MEM_POSTINC(a2)
64 dbf R(d2),L(Loop) /* loop until 16 lsb of %4 == -1 */
65 subxl R(d0),R(d0) /* d0 <= -cy; save cy as 0 or -1 in d0 */
68 addl R(d0),R(d0) /* restore cy */
74 /* Restore used registers from stack frame. */
75 movel MEM_POSTINC(sp),R(a2)
76 movel MEM_POSTINC(sp),R(d2)