diff options
author | John Birrell <jb@FreeBSD.org> | 1998-03-08 21:09:04 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 1998-03-08 21:09:04 +0000 |
commit | 27dd36da4985aa780639ed258c3e0bd68e245a0e (patch) | |
tree | fc7a50d40913ec45a7d4c60cf398faaaddcff389 | |
parent | 0c312497c7ed1121997eb1078d868cc1193a0d64 (diff) |
Notes
-rw-r--r-- | contrib/libgmp/mpn/alpha/add_n.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/addmul_1.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/lshift.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/mul_1.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/rshift.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/sub_n.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/submul_1.s | 2 | ||||
-rw-r--r-- | contrib/libgmp/mpn/alpha/udiv_qrnnd.S | 2 |
8 files changed, 16 insertions, 0 deletions
diff --git a/contrib/libgmp/mpn/alpha/add_n.s b/contrib/libgmp/mpn/alpha/add_n.s index 426556e3986e5..4a3cf48f32b05 100644 --- a/contrib/libgmp/mpn/alpha/add_n.s +++ b/contrib/libgmp/mpn/alpha/add_n.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha __mpn_add_n -- Add two limb vectors of the same length > 0 and # store sum in a third limb vector. @@ -26,6 +27,7 @@ # s1_ptr $17 # s2_ptr $18 # size $19 +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/addmul_1.s b/contrib/libgmp/mpn/alpha/addmul_1.s index 048238ae9d662..d360954a9f7fe 100644 --- a/contrib/libgmp/mpn/alpha/addmul_1.s +++ b/contrib/libgmp/mpn/alpha/addmul_1.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha 21064 __mpn_addmul_1 -- Multiply a limb vector with a limb and add # the result to a second limb vector. @@ -28,6 +29,7 @@ # s2_limb r19 # This code runs at 42 cycles/limb on EV4 and 18 cycles/limb on EV5. +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/lshift.s b/contrib/libgmp/mpn/alpha/lshift.s index 13bd24a4271dc..935223ac19821 100644 --- a/contrib/libgmp/mpn/alpha/lshift.s +++ b/contrib/libgmp/mpn/alpha/lshift.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha 21064 __mpn_lshift -- # Copyright (C) 1994, 1995 Free Software Foundation, Inc. @@ -35,6 +36,7 @@ # 1. ldq has a 3 cycle delay, srl and sll have a 2 cycle delay. # 2. Only aligned instruction pairs can be paired. # 3. The store buffer or silo might not be able to deal with the bandwidth. +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/mul_1.s b/contrib/libgmp/mpn/alpha/mul_1.s index a1f5a94b9e69c..98ee19bce9494 100644 --- a/contrib/libgmp/mpn/alpha/mul_1.s +++ b/contrib/libgmp/mpn/alpha/mul_1.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha 21064 __mpn_mul_1 -- Multiply a limb vector with a limb and store # the result in a second limb vector. @@ -37,6 +38,7 @@ # between RES_PTR and S1_PTR. Maybe we can simply divide the current # loop into an inner and outer loop, having the inner loop handle # exactly one prefetch block? +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/rshift.s b/contrib/libgmp/mpn/alpha/rshift.s index 389054ab0e92a..810ccf7311047 100644 --- a/contrib/libgmp/mpn/alpha/rshift.s +++ b/contrib/libgmp/mpn/alpha/rshift.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha 21064 __mpn_rshift -- # Copyright (C) 1994, 1995 Free Software Foundation, Inc. @@ -35,6 +36,7 @@ # 1. ldq has a 3 cycle delay, srl and sll have a 2 cycle delay. # 2. Only aligned instruction pairs can be paired. # 3. The store buffer or silo might not be able to deal with the bandwidth. +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/sub_n.s b/contrib/libgmp/mpn/alpha/sub_n.s index 3c90c116973bd..a6a600deb7bb7 100644 --- a/contrib/libgmp/mpn/alpha/sub_n.s +++ b/contrib/libgmp/mpn/alpha/sub_n.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and # store difference in a third limb vector. @@ -26,6 +27,7 @@ # s1_ptr $17 # s2_ptr $18 # size $19 +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/submul_1.s b/contrib/libgmp/mpn/alpha/submul_1.s index 1ed0c6a8d9e8e..7e5a4b3977665 100644 --- a/contrib/libgmp/mpn/alpha/submul_1.s +++ b/contrib/libgmp/mpn/alpha/submul_1.s @@ -1,3 +1,4 @@ +/* $Id$ # Alpha 21064 __mpn_submul_1 -- Multiply a limb vector with a limb and # subtract the result from a second limb vector. @@ -28,6 +29,7 @@ # s2_limb r19 # This code runs at 42 cycles/limb on EV4 and 18 cycles/limb on EV5. +*/ .set noreorder .set noat diff --git a/contrib/libgmp/mpn/alpha/udiv_qrnnd.S b/contrib/libgmp/mpn/alpha/udiv_qrnnd.S index d3d2cee93d138..fa7faa2749599 100644 --- a/contrib/libgmp/mpn/alpha/udiv_qrnnd.S +++ b/contrib/libgmp/mpn/alpha/udiv_qrnnd.S @@ -1,3 +1,4 @@ +/* $Id$ # Alpha 21064 __udiv_qrnnd # Copyright (C) 1992, 1994, 1995 Free Software Foundation, Inc. @@ -18,6 +19,7 @@ # along with the GNU MP Library; see the file COPYING.LIB. If not, write to # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, # MA 02111-1307, USA. +*/ .set noreorder |