From 7bff3543d8495e130543a4e9d5a67d4ac4941aac Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Fri, 6 Jun 2014 20:18:20 +0000 Subject: s/assember/assembler/ before someone gets offended. At the last hackathon, just saying 'ass ember' was enough to start giggles. Unfortunately far more offensive stuff remains in here... --- src/lib/libcrypto/bn/asm/README | 12 ++++++------ src/lib/libcrypto/bn/asm/x86/add.pl | 2 +- src/lib/libcrypto/bn/asm/x86/comba.pl | 2 +- src/lib/libcrypto/bn/asm/x86/div.pl | 2 +- src/lib/libcrypto/bn/asm/x86/mul.pl | 2 +- src/lib/libcrypto/bn/asm/x86/mul_add.pl | 2 +- src/lib/libcrypto/bn/asm/x86/sqr.pl | 2 +- src/lib/libcrypto/bn/asm/x86/sub.pl | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) (limited to 'src/lib/libcrypto/bn/asm') diff --git a/src/lib/libcrypto/bn/asm/README b/src/lib/libcrypto/bn/asm/README index b0f3a68a06..323d1a06b9 100644 --- a/src/lib/libcrypto/bn/asm/README +++ b/src/lib/libcrypto/bn/asm/README @@ -1,23 +1,23 @@ -All assember in this directory are just version of the file +All assembler in this directory are just version of the file crypto/bn/bn_asm.c. -Quite a few of these files are just the assember output from gcc since on +Quite a few of these files are just the assembler output from gcc since on quite a few machines they are 2 times faster than the system compiler. -For the x86, I have hand written assember because of the bad job all +For the x86, I have hand written assembler because of the bad job all compilers seem to do on it. This normally gives a 2 time speed up in the RSA routines. -For the DEC alpha, I also hand wrote the assember (except the division which +For the DEC alpha, I also hand wrote the assembler (except the division which is just the output from the C compiler pasted on the end of the file). On the 2 alpha C compilers I had access to, it was not possible to do 64b x 64b -> 128b calculations (both long and the long long data types -were 64 bits). So the hand assember gives access to the 128 bit result and +were 64 bits). So the hand assembler gives access to the 128 bit result and a 2 times speedup :-). -There are 3 versions of assember for the HP PA-RISC. +There are 3 versions of assembler for the HP PA-RISC. pa-risc.s is the origional one which works fine and generated using gcc :-) diff --git a/src/lib/libcrypto/bn/asm/x86/add.pl b/src/lib/libcrypto/bn/asm/x86/add.pl index 0b5cf583e3..3bb0080922 100644 --- a/src/lib/libcrypto/bn/asm/x86/add.pl +++ b/src/lib/libcrypto/bn/asm/x86/add.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub bn_add_words { diff --git a/src/lib/libcrypto/bn/asm/x86/comba.pl b/src/lib/libcrypto/bn/asm/x86/comba.pl index 2291253629..dc4ec97ff5 100644 --- a/src/lib/libcrypto/bn/asm/x86/comba.pl +++ b/src/lib/libcrypto/bn/asm/x86/comba.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub mul_add_c { diff --git a/src/lib/libcrypto/bn/asm/x86/div.pl b/src/lib/libcrypto/bn/asm/x86/div.pl index 0e90152caa..e771eda82f 100644 --- a/src/lib/libcrypto/bn/asm/x86/div.pl +++ b/src/lib/libcrypto/bn/asm/x86/div.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub bn_div_words { diff --git a/src/lib/libcrypto/bn/asm/x86/mul.pl b/src/lib/libcrypto/bn/asm/x86/mul.pl index 674cb9b055..92b5542dac 100644 --- a/src/lib/libcrypto/bn/asm/x86/mul.pl +++ b/src/lib/libcrypto/bn/asm/x86/mul.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub bn_mul_words { diff --git a/src/lib/libcrypto/bn/asm/x86/mul_add.pl b/src/lib/libcrypto/bn/asm/x86/mul_add.pl index 61830d3a90..9803dbdad0 100644 --- a/src/lib/libcrypto/bn/asm/x86/mul_add.pl +++ b/src/lib/libcrypto/bn/asm/x86/mul_add.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub bn_mul_add_words { diff --git a/src/lib/libcrypto/bn/asm/x86/sqr.pl b/src/lib/libcrypto/bn/asm/x86/sqr.pl index 1f90993cf6..6cf75a76e2 100644 --- a/src/lib/libcrypto/bn/asm/x86/sqr.pl +++ b/src/lib/libcrypto/bn/asm/x86/sqr.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub bn_sqr_words { diff --git a/src/lib/libcrypto/bn/asm/x86/sub.pl b/src/lib/libcrypto/bn/asm/x86/sub.pl index 837b0e1b07..0c5364cce5 100644 --- a/src/lib/libcrypto/bn/asm/x86/sub.pl +++ b/src/lib/libcrypto/bn/asm/x86/sub.pl @@ -1,5 +1,5 @@ #!/usr/local/bin/perl -# x86 assember +# x86 assembler sub bn_sub_words { -- cgit v1.2.3-55-g6feb