Add Changelog ...
[glibc.git] / sysdeps / mips / mips64 / sub_n.S
bloba2c0c15652ad7f56c47501c9edfac7cd0d69d280
1 /* MIPS3 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and
2  * store difference in a third limb vector.
3  *
4  * Copyright (C) 1995, 2000, 2002, 2003 Free Software Foundation, Inc.
5  *
6  * This file is part of the GNU MP Library.
7  *
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.
12  *
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.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with the GNU MP Library.  If not, see
20  * <http://www.gnu.org/licenses/>.
21  */
23 #include <sysdep.h>
24 #include <sys/asm.h>
26 /* INPUT PARAMETERS
27  * res_ptr      $4
28  * s1_ptr       $5
29  * s2_ptr       $6
30  * size         $7
31  */
33 #ifdef __PIC__
34         .option pic2
35 #endif
36         .text
37         .align  2
38         .globl  __mpn_sub_n
39         .ent    __mpn_sub_n
40 __mpn_sub_n:
41 #ifdef __PIC__
42         SETUP_GP /* ??? unused */
43 #endif
44         .set    noreorder
45         .set    nomacro
47         ld      $10,0($5)
48         ld      $11,0($6)
50         daddiu  $7,$7,-1
51         and     $9,$7,4-1       # number of limbs in first loop
52         beq     $9,$0,L(L0)     # if multiple of 4 limbs, skip first loop
53         move    $2,$0
55         dsubu   $7,$7,$9
57 L(Loop0):       daddiu  $9,$9,-1
58         ld      $12,8($5)
59         daddu   $11,$11,$2
60         ld      $13,8($6)
61         sltu    $8,$11,$2
62         dsubu   $11,$10,$11
63         sltu    $2,$10,$11
64         sd      $11,0($4)
65         or      $2,$2,$8
67         daddiu  $5,$5,8
68         daddiu  $6,$6,8
69         move    $10,$12
70         move    $11,$13
71         bne     $9,$0,L(Loop0)
72         daddiu  $4,$4,8
74 L(L0):  beq     $7,$0,L(Lend)
75         nop
77 L(Loop):        daddiu  $7,$7,-4
79         ld      $12,8($5)
80         daddu   $11,$11,$2
81         ld      $13,8($6)
82         sltu    $8,$11,$2
83         dsubu   $11,$10,$11
84         sltu    $2,$10,$11
85         sd      $11,0($4)
86         or      $2,$2,$8
88         ld      $10,16($5)
89         daddu   $13,$13,$2
90         ld      $11,16($6)
91         sltu    $8,$13,$2
92         dsubu   $13,$12,$13
93         sltu    $2,$12,$13
94         sd      $13,8($4)
95         or      $2,$2,$8
97         ld      $12,24($5)
98         daddu   $11,$11,$2
99         ld      $13,24($6)
100         sltu    $8,$11,$2
101         dsubu   $11,$10,$11
102         sltu    $2,$10,$11
103         sd      $11,16($4)
104         or      $2,$2,$8
106         ld      $10,32($5)
107         daddu   $13,$13,$2
108         ld      $11,32($6)
109         sltu    $8,$13,$2
110         dsubu   $13,$12,$13
111         sltu    $2,$12,$13
112         sd      $13,24($4)
113         or      $2,$2,$8
115         daddiu  $5,$5,32
116         daddiu  $6,$6,32
118         bne     $7,$0,L(Loop)
119         daddiu  $4,$4,32
121 L(Lend):        daddu   $11,$11,$2
122         sltu    $8,$11,$2
123         dsubu   $11,$10,$11
124         sltu    $2,$10,$11
125         sd      $11,0($4)
126         j       $31
127         or      $2,$2,$8
129         .end    __mpn_sub_n