1 /* mc68020 __mpn_lshift -- Shift left a low-level natural-number integer.
3 Copyright (C) 1996 Free Software Foundation, Inc.
5 This file is part of the GNU MP Library.
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Library General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or (at your
10 option) any later version.
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
15 License for more details.
17 You should have received a copy of the GNU Library General Public License
18 along with the GNU MP Library; see the file COPYING.LIB. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 MA 02111-1307, USA. */
31 #include "asm-syntax.h"
40 GLOBL C_SYMBOL_NAME(__mpn_lshift)
42 C_SYMBOL_NAME(__mpn_lshift:)
45 /* Save used registers on the stack. */
46 moveml R(d2)-R(d6)/R(a2),MEM_PREDEC(sp)
48 /* Copy the arguments to registers. */
49 movel MEM_DISP(sp,28),R(res_ptr)
50 movel MEM_DISP(sp,32),R(s_ptr)
51 movel MEM_DISP(sp,36),R(s_size)
52 movel MEM_DISP(sp,40),R(cnt)
57 cmpl R(s_ptr),R(res_ptr)
58 bls L(Lspecial) /* jump if s_ptr >= res_ptr */
59 #if (defined (__mc68020__) || defined (__NeXT__) || defined(mc68020))
60 lea MEM_INDX1(s_ptr,s_size,l,4),R(a2)
61 #else /* not mc68020 */
64 lea MEM_INDX(s_ptr,d0,l),R(a2)
67 bls L(Lspecial) /* jump if res_ptr >= s_ptr + s_size */
73 #if (defined (__mc68020__) || defined (__NeXT__) || defined(mc68020))
74 lea MEM_INDX1(s_ptr,s_size,l,4),R(s_ptr)
75 lea MEM_INDX1(res_ptr,s_size,l,4),R(res_ptr)
76 #else /* not mc68000 */
79 addl R(s_size),R(s_ptr)
80 addl R(s_size),R(res_ptr)
82 movel MEM_PREDEC(s_ptr),R(d2)
84 lsrl R(d5),R(d0) /* compute carry limb */
95 movel MEM_PREDEC(s_ptr),R(d2)
99 movel R(d1),MEM_PREDEC(res_ptr)
102 movel MEM_PREDEC(s_ptr),R(d1)
106 movel R(d2),MEM_PREDEC(res_ptr)
109 dbf R(s_size),L(Loop)
110 subl #0x10000,R(s_size)
114 movel R(d1),MEM_PREDEC(res_ptr) /* store least significant limb */
116 /* Restore used registers from stack frame. */
117 moveml MEM_POSTINC(sp),R(d2)-R(d6)/R(a2)
120 /* We loop from least significant end of the arrays, which is only
121 permissable if the source and destination don't overlap, since the
122 function is documented to work for overlapping source and destination. */
125 clrl R(d0) /* initialize carry */
132 movel MEM_POSTINC(s_ptr),R(d2)
134 movel R(d2),MEM_POSTINC(res_ptr)
136 movel MEM_POSTINC(s_ptr),R(d2)
138 movel R(d2),MEM_POSTINC(res_ptr)
140 dbf R(s_size),L(LLoop)
141 addxl R(d0),R(d0) /* save cy in lsb */
142 subl #0x10000,R(s_size)
144 lsrl #1,R(d0) /* restore cy */
148 /* Restore used registers from stack frame. */
149 moveml MEM_POSTINC(sp),R(d2)-R(d6)/R(a2)