Home | History | Annotate | only in /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm
Up to higher level directory
NameDateSize
alpha-mont.pl04-Nov-20145.5K
armv4-gf2m.pl04-Nov-20146.6K
armv4-gf2m.S04-Nov-20144.2K
armv4-mont.pl04-Nov-20145.3K
armv4-mont.S04-Nov-20143.2K
bn-586-mac.S04-Nov-201421.3K
bn-586.pl04-Nov-201416K
bn-586.S04-Nov-201420.2K
bn-mips.S04-Nov-201433.4K
co-586-mac.S04-Nov-201420.7K
co-586.pl04-Nov-20145.5K
co-586.S04-Nov-201416.6K
ia64-mont.pl04-Nov-201425.4K
ia64.S04-Nov-201444.3K
mips-mont.pl04-Nov-20148.7K
mips-mont.S04-Nov-20143.8K
mips.pl04-Nov-201449.2K
mips3-mont.pl04-Nov-20145.2K
mips3.s04-Nov-201436.7K
modexp512-x86_64.pl04-Nov-201433.7K
modexp512-x86_64.S04-Nov-201423.5K
pa-risc2.s04-Nov-201447.5K
pa-risc2W.s04-Nov-201445.6K
parisc-mont.pl04-Nov-201426.4K
ppc-mont.pl04-Nov-20147.4K
ppc.pl04-Nov-201443.9K
ppc64-mont.pl04-Nov-201425.8K
README04-Nov-20141K
s390x-gf2m.pl04-Nov-20145K
s390x-mont.pl04-Nov-20146.5K
s390x.S04-Nov-201412.3K
sparcv8.S04-Nov-201427.6K
sparcv8plus.S04-Nov-201432.4K
sparcv9-mont.pl04-Nov-201413.4K
sparcv9a-mont.pl04-Nov-201420.2K
via-mont.pl04-Nov-20148.8K
x86/04-Nov-2014
x86-gf2m-mac.S04-Nov-20145.7K
x86-gf2m.pl04-Nov-20147.5K
x86-gf2m.S04-Nov-20145.8K
x86-mont-mac.S04-Nov-20146K
x86-mont.pl04-Nov-201416.1K
x86-mont.S04-Nov-20146.1K
x86.pl04-Nov-2014623
x86_64-gcc.c04-Nov-201413.2K
x86_64-gf2m.pl04-Nov-20148.4K
x86_64-gf2m.S04-Nov-20145K
x86_64-mont.pl04-Nov-201436.1K
x86_64-mont.S04-Nov-201421.3K
x86_64-mont5.pl04-Nov-201422K
x86_64-mont5.S04-Nov-201412.6K

README

      1 <OBSOLETE>
      2 
      3 All assember in this directory are just version of the file
      4 crypto/bn/bn_asm.c.
      5 
      6 Quite a few of these files are just the assember output from gcc since on 
      7 quite a few machines they are 2 times faster than the system compiler.
      8 
      9 For the x86, I have hand written assember because of the bad job all
     10 compilers seem to do on it.  This normally gives a 2 time speed up in the RSA
     11 routines.
     12 
     13 For the DEC alpha, I also hand wrote the assember (except the division which
     14 is just the output from the C compiler pasted on the end of the file).
     15 On the 2 alpha C compilers I had access to, it was not possible to do
     16 64b x 64b -> 128b calculations (both long and the long long data types
     17 were 64 bits).  So the hand assember gives access to the 128 bit result and
     18 a 2 times speedup :-).
     19 
     20 There are 3 versions of assember for the HP PA-RISC.
     21 
     22 pa-risc.s is the origional one which works fine and generated using gcc :-)
     23 
     24 pa-risc2W.s and pa-risc2.s are 64 and 32-bit PA-RISC 2.0 implementations
     25 by Chris Ruemmler from HP (with some help from the HP C compiler).
     26 
     27 </OBSOLETE>
     28