1 /* MIPS3 submul_1 -- Multiply a limb vector with a single limb and
2 * subtract the product from a second limb vector.
4 * Copyright (C) 1992, 1994, 1995, 1998, 2000
5 * 2001 Free Software Foundation, Inc.
7 * This file is part of GnuPG.
9 * GnuPG is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * GnuPG is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
26 * mpihelp_submul_1( mpi_ptr_t res_ptr, (r4)
27 * mpi_ptr_t s1_ptr, (r5)
28 * mpi_size_t s1_size, (r6)
29 * mpi_limb_t s2_limb) (r7)
34 .globl mpihelp_submul_1
40 /* # warm up phase 0 */
43 /* # warm up phase 1 */
53 ld $8,0($5) # load new s1 limb as early as possible
59 daddu $3,$3,$2 # add old carry limb to low product limb
61 ld $8,0($5) # load new s1 limb as early as possible
62 daddiu $6,$6,-1 # decrement loop counter
63 sltu $2,$3,$2 # carry from previous addition -> $2
70 daddu $2,$9,$2 # add high product limb and carry from addition
72 /* # cool down phase 1 */
84 daddu $2,$9,$2 # add high product limb and carry from addition
86 /* # cool down phase 0 */
97 daddu $2,$9,$2 # add high product limb and carry from addition