diff options
author | jb <jb@FreeBSD.org> | 1998-03-08 21:09:04 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-03-08 21:09:04 +0000 |
commit | 875cc1421c2ce2c9ae46dfe9cb7d9026c685aa1e (patch) | |
tree | deccde849bf8b59ad7198e4be2832bf000593d1b /contrib/libgmp | |
parent | 81b26c08967177a4c0345a855c1108af83ec9327 (diff) | |
download | FreeBSD-src-875cc1421c2ce2c9ae46dfe9cb7d9026c685aa1e.zip FreeBSD-src-875cc1421c2ce2c9ae46dfe9cb7d9026c685aa1e.tar.gz |
Our default rules tend to shove asm code through cpp, so comments
starting with hashes have a sub-optimal impact. This change adds
/* */ around the block comment in the header of each file to make
them friendly to cpp. Also added an Id keyword cause I like to
see revision numbers in source.
Diffstat (limited to 'contrib/libgmp')
-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 426556e..4a3cf48 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 048238a..d360954 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 13bd24a..935223a 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 a1f5a94..98ee19b 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 389054a..810ccf7 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 3c90c11..a6a600d 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 1ed0c6a..7e5a4b3 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 d3d2cee..fa7faa2 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 |