README revision 59191
155714SkrisAll assember in this directory are just version of the file
259191Skriscrypto/bn/bn_asm.c.
355714Skris
455714SkrisQuite a few of these files are just the assember output from gcc since on 
555714Skrisquite a few machines they are 2 times faster than the system compiler.
655714Skris
755714SkrisFor the x86, I have hand written assember because of the bad job all
855714Skriscompilers seem to do on it.  This normally gives a 2 time speed up in the RSA
955714Skrisroutines.
1055714Skris
1155714SkrisFor the DEC alpha, I also hand wrote the assember (except the division which
1255714Skrisis just the output from the C compiler pasted on the end of the file).
1355714SkrisOn the 2 alpha C compilers I had access to, it was not possible to do
1455714Skris64b x 64b -> 128b calculations (both long and the long long data types
1555714Skriswere 64 bits).  So the hand assember gives access to the 128 bit result and
1655714Skrisa 2 times speedup :-).
1755714Skris
1855714SkrisThere are 2 versions of assember for the HP PA-RISC.
1955714Skrispa-risc.s is the origional one which works fine.
2055714Skrispa-risc2.s is a new version that often generates warnings but if the
2155714Skristests pass, it gives performance that is over 2 times faster than
2255714Skrispa-risc.s.
2355714SkrisBoth were generated using gcc :-)
24