1 # IBM POWER __mpn_mul_1 -- Multiply a limb vector with a limb and store
2 # the result in a second limb vector.
4 # Copyright (C) 1992, 1994 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 Lesser General Public License as published by
10 # the Free Software Foundation; either version 2.1 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 Lesser General Public
16 # License for more details.
18 # You should have received a copy of the GNU Lesser 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,
30 # The RS/6000 has no unsigned 32x32->64 bit multiplication instruction. To
31 # obtain that operation, we have to use the 32x32->64 signed multiplication
32 # instruction, and add the appropriate compensation to the high limb of the
33 # result. We add the multiplicand if the multiplier has its most significant
34 # bit set, and we add the multiplier if the multiplicand has its most
35 # significant bit set. We need to preserve the carry flag between each
36 # iteration, so we have to compute the compensation carefully (the natural,
37 # srai+and doesn't work). Since the POWER architecture has a branch unit
38 # we can branch in zero cycles, so that's how we perform the additions.
41 .csect .__mpn_mul_1[PR]
45 .csect __mpn_mul_1[DS]
47 .long .__mpn_mul_1[PR], TOC[tc0], 0
48 .csect .__mpn_mul_1[PR]
59 ai 0,0,0 # reset carry
70 cax 10,10,6 # adjust high limb for negative limb from s1
79 cax 9,9,6 # adjust high limb for negative limb from s1
89 cax 10,10,0 # adjust high limb for negative s2_limb
93 cax 10,10,6 # adjust high limb for negative limb from s1
99 cax 9,9,0 # adjust high limb for negative s2_limb
103 cax 9,9,6 # adjust high limb for negative limb from s1