1dnl  RISC-V/64 mpn_mul_1.
2
3dnl  Copyright 2016 Free Software Foundation, Inc.
4
5dnl  This file is part of the GNU MP Library.
6dnl
7dnl  The GNU MP Library is free software; you can redistribute it and/or modify
8dnl  it under the terms of either:
9dnl
10dnl    * the GNU Lesser General Public License as published by the Free
11dnl      Software Foundation; either version 3 of the License, or (at your
12dnl      option) any later version.
13dnl
14dnl  or
15dnl
16dnl    * the GNU General Public License as published by the Free Software
17dnl      Foundation; either version 2 of the License, or (at your option) any
18dnl      later version.
19dnl
20dnl  or both in parallel, as here.
21dnl
22dnl  The GNU MP Library is distributed in the hope that it will be useful, but
23dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25dnl  for more details.
26dnl
27dnl  You should have received copies of the GNU General Public License and the
28dnl  GNU Lesser General Public License along with the GNU MP Library.  If not,
29dnl  see https://www.gnu.org/licenses/.
30
31include(`../config.m4')
32
33C  INPUT PARAMETERS
34define(`rp',	`a0')
35define(`up',	`a1')
36define(`n',	`a2')
37define(`v0',	`a3')
38
39ASM_START()
40PROLOGUE(mpn_mul_1)
41	li	a6, 0
42
43L(top):	ld	a7, 0(up)
44	addi	up, up, 8	C bookkeeping
45	addi	rp, rp, 8	C bookkeeping
46	mul	a5, a7, v0
47	addi	n, n, -1	C bookkeeping
48	mulhu	a7, a7, v0
49	add	a6, a5, a6	C cycle 0, 3, ...
50	sltu	a5, a6, a5	C cycle 1, 4, ...
51	sd	a6, -8(rp)
52	add	a6, a7, a5	C cycle 2, 5, ...
53	bne	n, x0, L(top)	C bookkeeping
54
55L(end):	mv	a0, a6
56	ret
57EPILOGUE()
58ASM_END()
59