1/* i80586 mul_1 -- Multiply a limb vector with a limb and store
2 *			 the result in a second limb vector.
3 *
4 *      Copyright (C) 1992, 1994, 1996, 1998,
5 *                    2001, 2002 Free Software Foundation, Inc.
6 *
7 * This file is part of Libgcrypt.
8 *
9 * Libgcrypt is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as
11 * published by the Free Software Foundation; either version 2.1 of
12 * the License, or (at your option) any later version.
13 *
14 * Libgcrypt 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 Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
22 *
23 * Note: This code is heavily based on the GNU MP Library.
24 *	 Actually it's the same code with only minor changes in the
25 *	 way the data is stored; this is to support the abstraction
26 *	 of an optional secure memory allocation which may be used
27 *	 to avoid revealing of sensitive data due to paging etc.
28 */
29
30
31#include "sysdep.h"
32#include "asm-syntax.h"
33
34
35/*******************
36 * mpi_limb_t
37 * _gcry_mpih_mul_1( mpi_ptr_t res_ptr,	(sp + 4)
38 *		  mpi_ptr_t s1_ptr,	(sp + 8)
39 *		  mpi_size_t s1_size,	(sp + 12)
40 *		  mpi_limb_t s2_limb)	(sp + 16)
41 */
42
43#define res_ptr edi
44#define s1_ptr	esi
45#define size	ecx
46#define s2_limb ebp
47
48	TEXT
49	ALIGN (3)
50	GLOBL	C_SYMBOL_NAME(_gcry_mpih_mul_1)
51C_SYMBOL_NAME(_gcry_mpih_mul_1:)
52
53	INSN1(push,l	,R(edi))
54	INSN1(push,l	,R(esi))
55	INSN1(push,l	,R(ebx))
56	INSN1(push,l	,R(ebp))
57
58	INSN2(mov,l	,R(res_ptr),MEM_DISP(esp,20))
59	INSN2(mov,l	,R(s1_ptr),MEM_DISP(esp,24))
60	INSN2(mov,l	,R(size),MEM_DISP(esp,28))
61	INSN2(mov,l	,R(s2_limb),MEM_DISP(esp,32))
62
63	INSN2(lea,l	,R(res_ptr),MEM_INDEX(res_ptr,size,4))
64	INSN2(lea,l	,R(s1_ptr),MEM_INDEX(s1_ptr,size,4))
65	INSN1(neg,l	,R(size))
66	INSN2(xor,l	,R(ebx),R(ebx))
67	ALIGN (3)
68
69Loop:	INSN2(adc,l	,R(ebx),$0)
70	INSN2(mov,l	,R(eax),MEM_INDEX(s1_ptr,size,4))
71
72	INSN1(mul,l	,R(s2_limb))
73
74	INSN2(add,l	,R(ebx),R(eax))
75
76	INSN2(mov,l	,MEM_INDEX(res_ptr,size,4),R(ebx))
77	INSN1(inc,l	,R(size))
78
79	INSN2(mov,l	,R(ebx),R(edx))
80	INSN1(jnz,	,Loop)
81
82	INSN2(adc,l	,R(ebx),$0)
83	INSN2(mov,l	,R(eax),R(ebx))
84	INSN1(pop,l	,R(ebp))
85	INSN1(pop,l	,R(ebx))
86	INSN1(pop,l	,R(esi))
87	INSN1(pop,l	,R(edi))
88	ret
89
90