Tizen 2.1 base
[external/gmp.git] / mpn / x86 / copyi.asm
1 dnl  x86 mpn_copyi -- copy limb vector, incrementing.
2
3 dnl  Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 dnl
5 dnl  This file is part of the GNU MP Library.
6 dnl
7 dnl  The GNU MP Library is free software; you can redistribute it and/or
8 dnl  modify it under the terms of the GNU Lesser General Public License as
9 dnl  published by the Free Software Foundation; either version 3 of the
10 dnl  License, or (at your option) any later version.
11 dnl
12 dnl  The GNU MP Library is distributed in the hope that it will be useful,
13 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 dnl  Lesser General Public License for more details.
16 dnl
17 dnl  You should have received a copy of the GNU Lesser General Public License
18 dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
19
20 include(`../config.m4')
21
22
23 C     cycles/limb  startup (approx)
24 C P5:     1.0         35
25 C P6      0.75        45
26 C K6      1.0         30
27 C K7:     1.3         65
28 C P4:     1.0        120
29 C
30 C (Startup time includes some function call overheads.)
31
32
33 C void mpn_copyi (mp_ptr dst, mp_srcptr src, mp_size_t size);
34 C
35 C Copy src,size to dst,size, working from low to high addresses.
36 C
37 C The code here is very generic and can be expected to be reasonable on all
38 C the x86 family.
39 C
40 C P6 -  An MMX based copy was tried, but was found to be slower than a rep
41 C       movs in all cases.  The fastest MMX found was 0.8 cycles/limb (when
42 C       fully aligned).  A rep movs seems to have a startup time of about 15
43 C       cycles, but doing something special for small sizes could lead to a
44 C       branch misprediction that would destroy any saving.  For now a plain
45 C       rep movs seems ok.
46 C
47 C K62 - We used to have a big chunk of code doing an MMX copy at 0.56 c/l if
48 C       aligned or a 1.0 rep movs if not.  But that seemed excessive since
49 C       it only got an advantage half the time, and even then only showed it
50 C       above 50 limbs or so.
51
52 defframe(PARAM_SIZE,12)
53 defframe(PARAM_SRC, 8)
54 defframe(PARAM_DST, 4)
55 deflit(`FRAME',0)
56
57         TEXT
58         ALIGN(32)
59
60         C eax   saved esi
61         C ebx
62         C ecx   counter
63         C edx   saved edi
64         C esi   src
65         C edi   dst
66         C ebp
67
68 PROLOGUE(mpn_copyi)
69
70         movl    PARAM_SIZE, %ecx
71         movl    %esi, %eax
72
73         movl    PARAM_SRC, %esi
74         movl    %edi, %edx
75
76         movl    PARAM_DST, %edi
77
78         cld     C better safe than sorry, see mpn/x86/README
79
80         rep
81         movsl
82
83         movl    %eax, %esi
84         movl    %edx, %edi
85
86         ret
87
88 EPILOGUE()