ruby_nacl 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Changelog +0 -0
- data/README.md +49 -0
- data/ext/ruby_nacl/NaCl/MACROS +56 -0
- data/ext/ruby_nacl/NaCl/OPERATIONS +11 -0
- data/ext/ruby_nacl/NaCl/PROTOTYPES.c +26 -0
- data/ext/ruby_nacl/NaCl/PROTOTYPES.cpp +17 -0
- data/ext/ruby_nacl/NaCl/README +1 -0
- data/ext/ruby_nacl/NaCl/commandline/nacl-sha256.c +64 -0
- data/ext/ruby_nacl/NaCl/commandline/nacl-sha512.c +64 -0
- data/ext/ruby_nacl/NaCl/cpucycles/alpha.c +80 -0
- data/ext/ruby_nacl/NaCl/cpucycles/alpha.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/amd64cpuinfo.c +16 -0
- data/ext/ruby_nacl/NaCl/cpucycles/amd64cpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/amd64cpuspeed.c +25 -0
- data/ext/ruby_nacl/NaCl/cpucycles/amd64cpuspeed.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/amd64tscfreq.c +18 -0
- data/ext/ruby_nacl/NaCl/cpucycles/amd64tscfreq.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/celllinux.c +83 -0
- data/ext/ruby_nacl/NaCl/cpucycles/celllinux.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/cortex.c +73 -0
- data/ext/ruby_nacl/NaCl/cpucycles/cortex.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/dev4ns.c +62 -0
- data/ext/ruby_nacl/NaCl/cpucycles/dev4ns.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/do +105 -0
- data/ext/ruby_nacl/NaCl/cpucycles/gettimeofday.c +32 -0
- data/ext/ruby_nacl/NaCl/cpucycles/gettimeofday.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/hppapstat.c +26 -0
- data/ext/ruby_nacl/NaCl/cpucycles/hppapstat.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/ia64cpuinfo.c +15 -0
- data/ext/ruby_nacl/NaCl/cpucycles/ia64cpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/mips.c +65 -0
- data/ext/ruby_nacl/NaCl/cpucycles/mips.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/monotonic.c +34 -0
- data/ext/ruby_nacl/NaCl/cpucycles/monotonic.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/monotoniccpuinfo.c +33 -0
- data/ext/ruby_nacl/NaCl/cpucycles/monotoniccpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/osfreq.c +65 -0
- data/ext/ruby_nacl/NaCl/cpucycles/powerpccpuinfo.c +95 -0
- data/ext/ruby_nacl/NaCl/cpucycles/powerpccpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/powerpcmacos.c +42 -0
- data/ext/ruby_nacl/NaCl/cpucycles/powerpcmacos.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/sgi.c +38 -0
- data/ext/ruby_nacl/NaCl/cpucycles/sgi.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/sparc32cpuinfo.c +16 -0
- data/ext/ruby_nacl/NaCl/cpucycles/sparc32cpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/sparccpuinfo.c +15 -0
- data/ext/ruby_nacl/NaCl/cpucycles/sparccpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/test.c +77 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86cpuinfo.c +15 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86cpuinfo.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86cpuspeed.c +24 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86cpuspeed.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86estimate.c +59 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86estimate.h +27 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86tscfreq.c +17 -0
- data/ext/ruby_nacl/NaCl/cpucycles/x86tscfreq.h +27 -0
- data/ext/ruby_nacl/NaCl/cpuid/cbytes.c +16 -0
- data/ext/ruby_nacl/NaCl/cpuid/cpuid.c +41 -0
- data/ext/ruby_nacl/NaCl/cpuid/do +37 -0
- data/ext/ruby_nacl/NaCl/cpuid/unknown.c +7 -0
- data/ext/ruby_nacl/NaCl/cpuid/x86.c +41 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha256/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha256/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha256/ref/hmac.c +83 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha256/ref/verify.c +9 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha256/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha512256/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha512256/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha512256/ref/hmac.c +86 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha512256/ref/verify.c +9 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha512256/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/hmacsha512256/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/measure.c +69 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/try.c +119 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/wrapper-auth.cpp +11 -0
- data/ext/ruby_nacl/NaCl/crypto_auth/wrapper-verify.cpp +14 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/after.c +22 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/api.h +6 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/before.c +17 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/box.c +27 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/keypair.c +12 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_box/measure.c +137 -0
- data/ext/ruby_nacl/NaCl/crypto_box/try.c +195 -0
- data/ext/ruby_nacl/NaCl/crypto_box/wrapper-box.cpp +24 -0
- data/ext/ruby_nacl/NaCl/crypto_box/wrapper-keypair.cpp +12 -0
- data/ext/ruby_nacl/NaCl/crypto_box/wrapper-open.cpp +27 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/ref/api.h +4 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/ref/core.c +135 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/ref2/api.h +4 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/ref2/core.c +108 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/ref2/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/hsalsa20/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_core/measure.c +18 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa20/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa20/ref/api.h +4 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa20/ref/core.c +134 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa20/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa20/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa2012/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa2012/ref/api.h +4 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa2012/ref/core.c +134 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa2012/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa2012/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa208/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa208/ref/api.h +4 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa208/ref/core.c +134 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa208/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_core/salsa208/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_core/try.c +116 -0
- data/ext/ruby_nacl/NaCl/crypto_core/wrapper-empty.cpp +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/measure.c +66 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha256/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha256/ref/api.h +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha256/ref/hash.c +69 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha256/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha256/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha512/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha512/ref/api.h +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha512/ref/hash.c +71 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha512/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha512/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/sha512/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/try.c +77 -0
- data/ext/ruby_nacl/NaCl/crypto_hash/wrapper-hash.cpp +10 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/measure.c +18 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/inplace/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/inplace/blocks.c +228 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/inplace/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/ref/blocks.c +212 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha256/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/inplace/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/inplace/blocks.c +256 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/inplace/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/ref/blocks.c +239 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/sha512/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/try.c +79 -0
- data/ext/ruby_nacl/NaCl/crypto_hashblocks/wrapper-empty.cpp +0 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/measure.c +69 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/53/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/53/auth.c +1616 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/53/verify.c +9 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/amd64/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/amd64/auth.s +2787 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/amd64/constants.s +85 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/amd64/verify.c +9 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/ref/auth.c +104 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/ref/verify.c +9 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/x86/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/x86/auth.s +2779 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/x86/constants.s +85 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/poly1305/x86/verify.c +9 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/try.c +119 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/wrapper-auth.cpp +11 -0
- data/ext/ruby_nacl/NaCl/crypto_onetimeauth/wrapper-verify.cpp +14 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/base.c +8 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/const.s +114 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/fromdouble.s +195 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/init.s +13 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/mainloop.s +3990 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/mult.s +410 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/smult.c +91 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/square.s +298 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/athlon/todouble.s +144 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/donna_c64/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/donna_c64/base.c +8 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/donna_c64/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/donna_c64/smult.c +477 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/ref/base.c +16 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/ref/smult.c +265 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/curve25519/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/measure.c +61 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/try.c +126 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/wrapper-base.cpp +11 -0
- data/ext/ruby_nacl/NaCl/crypto_scalarmult/wrapper-mult.cpp +12 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/measure.c +75 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/try.c +129 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/wrapper-box.cpp +19 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/wrapper-open.cpp +22 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/xsalsa20poly1305/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/xsalsa20poly1305/ref/api.h +4 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/xsalsa20poly1305/ref/box.c +35 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/xsalsa20poly1305/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_secretbox/xsalsa20poly1305/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/api.h +3 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/fe25519.c +345 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/fe25519.h +54 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/ge25519.c +227 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/ge25519.h +34 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/sc25519.c +146 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/sc25519.h +51 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/ref/sign.c +103 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/edwards25519sha512batch/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/measure.c +83 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/try.c +86 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/wrapper-keypair.cpp +12 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/wrapper-sign-open.cpp +24 -0
- data/ext/ruby_nacl/NaCl/crypto_sign/wrapper-sign.cpp +23 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/core2/afternm.s +12308 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/core2/api.h +3 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/core2/beforenm.s +13694 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/core2/stream.c +14 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/core2/xor.c +15 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/core2/xor_afternm.s +12407 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/afternm.c +158 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/api.h +3 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/beforenm.c +59 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/common.c +64 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/common.h +788 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/consts.c +14 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/consts.h +28 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/int128.c +128 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/int128.h +47 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/stream.c +28 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/types.h +10 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/portable/xor_afternm.c +180 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/aes128ctr/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/measure.c +73 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/amd64_xmm6/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/amd64_xmm6/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/amd64_xmm6/stream.s +4823 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/ref/stream.c +49 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/ref/xor.c +52 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/x86_xmm5/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/x86_xmm5/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa20/x86_xmm5/stream.s +5078 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/amd64_xmm6/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/amd64_xmm6/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/amd64_xmm6/stream.s +4823 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/ref/stream.c +49 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/ref/xor.c +52 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/x86_xmm5/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/x86_xmm5/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa2012/x86_xmm5/stream.s +5078 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/amd64_xmm6/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/amd64_xmm6/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/amd64_xmm6/stream.s +4823 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/ref/stream.c +49 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/ref/xor.c +52 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/x86_xmm5/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/x86_xmm5/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/salsa208/x86_xmm5/stream.s +5078 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/try.c +124 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/wrapper-stream.cpp +12 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/wrapper-xor.cpp +17 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/ref/api.h +2 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/ref/implementors +1 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/ref/stream.c +22 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/ref/xor.c +23 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/selected +0 -0
- data/ext/ruby_nacl/NaCl/crypto_stream/xsalsa20/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_stream.h +18 -0
- data/ext/ruby_nacl/NaCl/crypto_stream_aes128ctr.h +33 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/16/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/16/ref/api.h +1 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/16/ref/verify.c +24 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/16/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/32/checksum +1 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/32/ref/api.h +1 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/32/ref/verify.c +40 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/32/used +0 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/measure.c +18 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/try.c +75 -0
- data/ext/ruby_nacl/NaCl/crypto_verify/wrapper-empty.cpp +0 -0
- data/ext/ruby_nacl/NaCl/curvecp/LIBS +31 -0
- data/ext/ruby_nacl/NaCl/curvecp/README +10 -0
- data/ext/ruby_nacl/NaCl/curvecp/SOURCES +36 -0
- data/ext/ruby_nacl/NaCl/curvecp/TARGETS +5 -0
- data/ext/ruby_nacl/NaCl/curvecp/blocking.c +12 -0
- data/ext/ruby_nacl/NaCl/curvecp/blocking.h +7 -0
- data/ext/ruby_nacl/NaCl/curvecp/byte.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/byte_copy.c +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/byte_isequal.c +10 -0
- data/ext/ruby_nacl/NaCl/curvecp/byte_zero.c +7 -0
- data/ext/ruby_nacl/NaCl/curvecp/crypto_block.c +35 -0
- data/ext/ruby_nacl/NaCl/curvecp/crypto_block.h +4 -0
- data/ext/ruby_nacl/NaCl/curvecp/curvecpclient.c +476 -0
- data/ext/ruby_nacl/NaCl/curvecp/curvecpmakekey.c +57 -0
- data/ext/ruby_nacl/NaCl/curvecp/curvecpmessage.c +654 -0
- data/ext/ruby_nacl/NaCl/curvecp/curvecpprintkey.c +46 -0
- data/ext/ruby_nacl/NaCl/curvecp/curvecpserver.c +497 -0
- data/ext/ruby_nacl/NaCl/curvecp/die.c +42 -0
- data/ext/ruby_nacl/NaCl/curvecp/die.h +16 -0
- data/ext/ruby_nacl/NaCl/curvecp/e.c +106 -0
- data/ext/ruby_nacl/NaCl/curvecp/e.h +438 -0
- data/ext/ruby_nacl/NaCl/curvecp/hexparse.c +25 -0
- data/ext/ruby_nacl/NaCl/curvecp/hexparse.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/load.c +33 -0
- data/ext/ruby_nacl/NaCl/curvecp/load.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/nameparse.c +19 -0
- data/ext/ruby_nacl/NaCl/curvecp/nameparse.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/nanoseconds.c +27 -0
- data/ext/ruby_nacl/NaCl/curvecp/nanoseconds.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/open.h +10 -0
- data/ext/ruby_nacl/NaCl/curvecp/open_cwd.c +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/open_lock.c +19 -0
- data/ext/ruby_nacl/NaCl/curvecp/open_pipe.c +15 -0
- data/ext/ruby_nacl/NaCl/curvecp/open_read.c +17 -0
- data/ext/ruby_nacl/NaCl/curvecp/open_write.c +17 -0
- data/ext/ruby_nacl/NaCl/curvecp/portparse.c +14 -0
- data/ext/ruby_nacl/NaCl/curvecp/portparse.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/randommod.c +14 -0
- data/ext/ruby_nacl/NaCl/curvecp/randommod.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/safenonce.c +74 -0
- data/ext/ruby_nacl/NaCl/curvecp/safenonce.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/savesync.c +24 -0
- data/ext/ruby_nacl/NaCl/curvecp/savesync.h +6 -0
- data/ext/ruby_nacl/NaCl/curvecp/socket.h +9 -0
- data/ext/ruby_nacl/NaCl/curvecp/socket_bind.c +15 -0
- data/ext/ruby_nacl/NaCl/curvecp/socket_recv.c +23 -0
- data/ext/ruby_nacl/NaCl/curvecp/socket_send.c +19 -0
- data/ext/ruby_nacl/NaCl/curvecp/socket_udp.c +36 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint16_pack.c +7 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint16_pack.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint16_unpack.c +9 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint16_unpack.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint32_pack.c +9 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint32_pack.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint32_unpack.c +11 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint32_unpack.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint64_pack.c +13 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint64_pack.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint64_unpack.c +15 -0
- data/ext/ruby_nacl/NaCl/curvecp/uint64_unpack.h +8 -0
- data/ext/ruby_nacl/NaCl/curvecp/writeall.c +27 -0
- data/ext/ruby_nacl/NaCl/curvecp/writeall.h +6 -0
- data/ext/ruby_nacl/NaCl/do +468 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_int16.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_int32.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_int64.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_int8.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_uint16.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_uint32.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_uint64.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/crypto_uint8.c +3 -0
- data/ext/ruby_nacl/NaCl/inttypes/do +47 -0
- data/ext/ruby_nacl/NaCl/inttypes/signed.h +17 -0
- data/ext/ruby_nacl/NaCl/inttypes/unsigned.h +17 -0
- data/ext/ruby_nacl/NaCl/measure-anything.c +225 -0
- data/ext/ruby_nacl/NaCl/okcompilers/abiname.c +45 -0
- data/ext/ruby_nacl/NaCl/okcompilers/archivers +2 -0
- data/ext/ruby_nacl/NaCl/okcompilers/c +8 -0
- data/ext/ruby_nacl/NaCl/okcompilers/cpp +8 -0
- data/ext/ruby_nacl/NaCl/okcompilers/do +196 -0
- data/ext/ruby_nacl/NaCl/okcompilers/lib.c +29 -0
- data/ext/ruby_nacl/NaCl/okcompilers/lib.cpp +19 -0
- data/ext/ruby_nacl/NaCl/okcompilers/main.c +25 -0
- data/ext/ruby_nacl/NaCl/okcompilers/main.cpp +22 -0
- data/ext/ruby_nacl/NaCl/randombytes/devurandom.c +34 -0
- data/ext/ruby_nacl/NaCl/randombytes/devurandom.h +24 -0
- data/ext/ruby_nacl/NaCl/randombytes/do +43 -0
- data/ext/ruby_nacl/NaCl/randombytes/test.c +15 -0
- data/ext/ruby_nacl/NaCl/tests/auth.c +19 -0
- data/ext/ruby_nacl/NaCl/tests/auth.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/auth2.c +34 -0
- data/ext/ruby_nacl/NaCl/tests/auth2.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/auth3.c +34 -0
- data/ext/ruby_nacl/NaCl/tests/auth3.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/auth4.cpp +44 -0
- data/ext/ruby_nacl/NaCl/tests/auth4.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/auth5.c +36 -0
- data/ext/ruby_nacl/NaCl/tests/auth5.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/auth6.cpp +46 -0
- data/ext/ruby_nacl/NaCl/tests/auth6.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/box.c +63 -0
- data/ext/ruby_nacl/NaCl/tests/box.out +19 -0
- data/ext/ruby_nacl/NaCl/tests/box2.c +64 -0
- data/ext/ruby_nacl/NaCl/tests/box2.out +17 -0
- data/ext/ruby_nacl/NaCl/tests/box3.cpp +60 -0
- data/ext/ruby_nacl/NaCl/tests/box3.out +19 -0
- data/ext/ruby_nacl/NaCl/tests/box4.cpp +66 -0
- data/ext/ruby_nacl/NaCl/tests/box4.out +17 -0
- data/ext/ruby_nacl/NaCl/tests/box5.cpp +30 -0
- data/ext/ruby_nacl/NaCl/tests/box5.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/box6.cpp +43 -0
- data/ext/ruby_nacl/NaCl/tests/box6.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/box7.c +36 -0
- data/ext/ruby_nacl/NaCl/tests/box7.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/box8.c +41 -0
- data/ext/ruby_nacl/NaCl/tests/box8.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/core1.c +30 -0
- data/ext/ruby_nacl/NaCl/tests/core1.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/core2.c +33 -0
- data/ext/ruby_nacl/NaCl/tests/core2.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/core3.c +41 -0
- data/ext/ruby_nacl/NaCl/tests/core3.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/core4.c +33 -0
- data/ext/ruby_nacl/NaCl/tests/core4.out +8 -0
- data/ext/ruby_nacl/NaCl/tests/core5.c +32 -0
- data/ext/ruby_nacl/NaCl/tests/core5.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/core6.c +47 -0
- data/ext/ruby_nacl/NaCl/tests/core6.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/hash.c +14 -0
- data/ext/ruby_nacl/NaCl/tests/hash.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/hash2.cpp +18 -0
- data/ext/ruby_nacl/NaCl/tests/hash2.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/hash3.c +14 -0
- data/ext/ruby_nacl/NaCl/tests/hash3.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/hash4.cpp +18 -0
- data/ext/ruby_nacl/NaCl/tests/hash4.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth.c +42 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth.out +2 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth2.c +40 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth2.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth5.cpp +46 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth5.out +2 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth6.cpp +50 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth6.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth7.c +36 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth7.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth8.cpp +46 -0
- data/ext/ruby_nacl/NaCl/tests/onetimeauth8.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult.c +23 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult2.c +23 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult2.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult3.cpp +31 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult3.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult4.cpp +31 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult4.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult5.c +30 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult5.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult6.c +30 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult6.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult7.cpp +32 -0
- data/ext/ruby_nacl/NaCl/tests/scalarmult7.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox.c +56 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox.out +19 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox2.c +57 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox2.out +17 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox3.cpp +52 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox3.out +19 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox4.cpp +54 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox4.out +17 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox5.cpp +29 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox5.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox6.cpp +42 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox6.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox7.c +32 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox7.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox8.c +37 -0
- data/ext/ruby_nacl/NaCl/tests/secretbox8.out +0 -0
- data/ext/ruby_nacl/NaCl/tests/stream.c +29 -0
- data/ext/ruby_nacl/NaCl/tests/stream.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/stream2.c +27 -0
- data/ext/ruby_nacl/NaCl/tests/stream2.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/stream3.c +28 -0
- data/ext/ruby_nacl/NaCl/tests/stream3.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/stream4.c +53 -0
- data/ext/ruby_nacl/NaCl/tests/stream4.out +17 -0
- data/ext/ruby_nacl/NaCl/tests/stream5.cpp +29 -0
- data/ext/ruby_nacl/NaCl/tests/stream5.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/stream6.cpp +27 -0
- data/ext/ruby_nacl/NaCl/tests/stream6.out +1 -0
- data/ext/ruby_nacl/NaCl/tests/stream7.cpp +30 -0
- data/ext/ruby_nacl/NaCl/tests/stream7.out +4 -0
- data/ext/ruby_nacl/NaCl/tests/stream8.cpp +56 -0
- data/ext/ruby_nacl/NaCl/tests/stream8.out +17 -0
- data/ext/ruby_nacl/NaCl/try-anything.c +173 -0
- data/ext/ruby_nacl/NaCl/version +1 -0
- data/ext/ruby_nacl/extconf.rb +18 -0
- data/ext/ruby_nacl/ruby_nacl.cpp +147 -0
- data/ext/ruby_nacl/ruby_nacl.h +49 -0
- metadata +554 -0
|
@@ -0,0 +1,3990 @@
|
|
|
1
|
+
.text
|
|
2
|
+
.p2align 5
|
|
3
|
+
.globl _crypto_scalarmult_curve25519_athlon_mainloop
|
|
4
|
+
.globl crypto_scalarmult_curve25519_athlon_mainloop
|
|
5
|
+
_crypto_scalarmult_curve25519_athlon_mainloop:
|
|
6
|
+
crypto_scalarmult_curve25519_athlon_mainloop:
|
|
7
|
+
mov %esp,%eax
|
|
8
|
+
and $31,%eax
|
|
9
|
+
add $704,%eax
|
|
10
|
+
sub %eax,%esp
|
|
11
|
+
lea 256(%esp),%edx
|
|
12
|
+
lea 512(%esp),%ecx
|
|
13
|
+
fldl crypto_scalarmult_curve25519_athlon_two0
|
|
14
|
+
fldl crypto_scalarmult_curve25519_athlon_zero
|
|
15
|
+
movl %eax,160(%ecx)
|
|
16
|
+
movl %ebx,164(%ecx)
|
|
17
|
+
movl %esi,168(%ecx)
|
|
18
|
+
movl %edi,172(%ecx)
|
|
19
|
+
movl %ebp,176(%ecx)
|
|
20
|
+
movl 4(%esp,%eax),%ebx
|
|
21
|
+
fxch %st(1)
|
|
22
|
+
fstl 0(%esp)
|
|
23
|
+
fxch %st(1)
|
|
24
|
+
fstl 8(%esp)
|
|
25
|
+
fstl 16(%esp)
|
|
26
|
+
fstl 24(%esp)
|
|
27
|
+
fstl 32(%esp)
|
|
28
|
+
fstl 40(%esp)
|
|
29
|
+
fstl 48(%esp)
|
|
30
|
+
fstl -120(%edx)
|
|
31
|
+
fstl -112(%edx)
|
|
32
|
+
fstl -104(%edx)
|
|
33
|
+
fstl -96(%edx)
|
|
34
|
+
fstl -88(%edx)
|
|
35
|
+
fstl -80(%edx)
|
|
36
|
+
fstl -72(%edx)
|
|
37
|
+
fstl -64(%edx)
|
|
38
|
+
fstl -56(%edx)
|
|
39
|
+
fstl -48(%edx)
|
|
40
|
+
fstl -40(%edx)
|
|
41
|
+
fstl -32(%edx)
|
|
42
|
+
fstl -24(%edx)
|
|
43
|
+
fxch %st(1)
|
|
44
|
+
fstpl 64(%edx)
|
|
45
|
+
fstl 72(%edx)
|
|
46
|
+
fstl 80(%edx)
|
|
47
|
+
fstl 88(%edx)
|
|
48
|
+
fstl 96(%edx)
|
|
49
|
+
fstl 104(%edx)
|
|
50
|
+
fstl 112(%edx)
|
|
51
|
+
fstl 120(%edx)
|
|
52
|
+
fstl -128(%ecx)
|
|
53
|
+
fstpl -120(%ecx)
|
|
54
|
+
fldl 0(%ebx)
|
|
55
|
+
fldl 8(%ebx)
|
|
56
|
+
fldl 16(%ebx)
|
|
57
|
+
fldl 24(%ebx)
|
|
58
|
+
fxch %st(3)
|
|
59
|
+
fstl -16(%edx)
|
|
60
|
+
fstpl 56(%esp)
|
|
61
|
+
fldl 32(%ebx)
|
|
62
|
+
fxch %st(2)
|
|
63
|
+
fstl -8(%edx)
|
|
64
|
+
fstpl 64(%esp)
|
|
65
|
+
fldl 40(%ebx)
|
|
66
|
+
fxch %st(1)
|
|
67
|
+
fstl 0(%edx)
|
|
68
|
+
fstpl 72(%esp)
|
|
69
|
+
fldl 48(%ebx)
|
|
70
|
+
fxch %st(3)
|
|
71
|
+
fstl 8(%edx)
|
|
72
|
+
fstpl 80(%esp)
|
|
73
|
+
fldl 56(%ebx)
|
|
74
|
+
fxch %st(2)
|
|
75
|
+
fstl 16(%edx)
|
|
76
|
+
fstpl 88(%esp)
|
|
77
|
+
fldl 64(%ebx)
|
|
78
|
+
fxch %st(1)
|
|
79
|
+
fstl 24(%edx)
|
|
80
|
+
fstpl 96(%esp)
|
|
81
|
+
fldl 72(%ebx)
|
|
82
|
+
fxch %st(3)
|
|
83
|
+
fstl 32(%edx)
|
|
84
|
+
fstpl 104(%esp)
|
|
85
|
+
fxch %st(1)
|
|
86
|
+
fstl 40(%edx)
|
|
87
|
+
fstpl 112(%esp)
|
|
88
|
+
fstl 48(%edx)
|
|
89
|
+
fstpl 120(%esp)
|
|
90
|
+
fstl 56(%edx)
|
|
91
|
+
fstpl -128(%edx)
|
|
92
|
+
movl 8(%esp,%eax),%ebx
|
|
93
|
+
mov $28,%edi
|
|
94
|
+
mov $31,%ebp
|
|
95
|
+
movl 28(%ebx),%esi
|
|
96
|
+
rol $1,%esi
|
|
97
|
+
._morebytes:
|
|
98
|
+
movl %edi,188(%ecx)
|
|
99
|
+
._morebits:
|
|
100
|
+
rol $1,%esi
|
|
101
|
+
movl %esi,180(%ecx)
|
|
102
|
+
movl %ebp,184(%ecx)
|
|
103
|
+
and $1,%esi
|
|
104
|
+
movl $0x43300000,-108(%ecx)
|
|
105
|
+
movl %esi,-112(%ecx)
|
|
106
|
+
fldl -96(%edx)
|
|
107
|
+
fldl 0(%esp)
|
|
108
|
+
fadd %st(0),%st(1)
|
|
109
|
+
fsubl -96(%edx)
|
|
110
|
+
fldl 64(%edx)
|
|
111
|
+
fldl -16(%edx)
|
|
112
|
+
fadd %st(0),%st(1)
|
|
113
|
+
fsubl 64(%edx)
|
|
114
|
+
fldl -88(%edx)
|
|
115
|
+
fldl 8(%esp)
|
|
116
|
+
fadd %st(0),%st(1)
|
|
117
|
+
fsubl -88(%edx)
|
|
118
|
+
fxch %st(5)
|
|
119
|
+
fstpl 0(%esp)
|
|
120
|
+
fxch %st(3)
|
|
121
|
+
fstpl -96(%edx)
|
|
122
|
+
fldl 72(%edx)
|
|
123
|
+
fldl -8(%edx)
|
|
124
|
+
fadd %st(0),%st(1)
|
|
125
|
+
fsubl 72(%edx)
|
|
126
|
+
fxch %st(3)
|
|
127
|
+
fstpl -16(%edx)
|
|
128
|
+
fxch %st(1)
|
|
129
|
+
fstpl 64(%edx)
|
|
130
|
+
fldl -80(%edx)
|
|
131
|
+
fldl 16(%esp)
|
|
132
|
+
fadd %st(0),%st(1)
|
|
133
|
+
fsubl -80(%edx)
|
|
134
|
+
fxch %st(4)
|
|
135
|
+
fstpl 8(%esp)
|
|
136
|
+
fxch %st(4)
|
|
137
|
+
fstpl -88(%edx)
|
|
138
|
+
fldl 80(%edx)
|
|
139
|
+
fldl 0(%edx)
|
|
140
|
+
fadd %st(0),%st(1)
|
|
141
|
+
fsubl 80(%edx)
|
|
142
|
+
fxch %st(2)
|
|
143
|
+
fstpl -8(%edx)
|
|
144
|
+
fxch %st(2)
|
|
145
|
+
fstpl 72(%edx)
|
|
146
|
+
fldl -72(%edx)
|
|
147
|
+
fldl 24(%esp)
|
|
148
|
+
fadd %st(0),%st(1)
|
|
149
|
+
fsubl -72(%edx)
|
|
150
|
+
fxch %st(5)
|
|
151
|
+
fstpl 16(%esp)
|
|
152
|
+
fxch %st(3)
|
|
153
|
+
fstpl -80(%edx)
|
|
154
|
+
fldl 88(%edx)
|
|
155
|
+
fldl 8(%edx)
|
|
156
|
+
fadd %st(0),%st(1)
|
|
157
|
+
fsubl 88(%edx)
|
|
158
|
+
fxch %st(3)
|
|
159
|
+
fstpl 0(%edx)
|
|
160
|
+
fxch %st(1)
|
|
161
|
+
fstpl 80(%edx)
|
|
162
|
+
fldl -64(%edx)
|
|
163
|
+
fldl 32(%esp)
|
|
164
|
+
fadd %st(0),%st(1)
|
|
165
|
+
fsubl -64(%edx)
|
|
166
|
+
fxch %st(4)
|
|
167
|
+
fstpl 24(%esp)
|
|
168
|
+
fxch %st(4)
|
|
169
|
+
fstpl -72(%edx)
|
|
170
|
+
fldl 96(%edx)
|
|
171
|
+
fldl 16(%edx)
|
|
172
|
+
fadd %st(0),%st(1)
|
|
173
|
+
fsubl 96(%edx)
|
|
174
|
+
fxch %st(2)
|
|
175
|
+
fstpl 8(%edx)
|
|
176
|
+
fxch %st(2)
|
|
177
|
+
fstpl 88(%edx)
|
|
178
|
+
fldl -56(%edx)
|
|
179
|
+
fldl 40(%esp)
|
|
180
|
+
fadd %st(0),%st(1)
|
|
181
|
+
fsubl -56(%edx)
|
|
182
|
+
fxch %st(5)
|
|
183
|
+
fstpl 32(%esp)
|
|
184
|
+
fxch %st(3)
|
|
185
|
+
fstpl -64(%edx)
|
|
186
|
+
fldl 104(%edx)
|
|
187
|
+
fldl 24(%edx)
|
|
188
|
+
fadd %st(0),%st(1)
|
|
189
|
+
fsubl 104(%edx)
|
|
190
|
+
fxch %st(3)
|
|
191
|
+
fstpl 16(%edx)
|
|
192
|
+
fxch %st(1)
|
|
193
|
+
fstpl 96(%edx)
|
|
194
|
+
fldl -48(%edx)
|
|
195
|
+
fldl 48(%esp)
|
|
196
|
+
fadd %st(0),%st(1)
|
|
197
|
+
fsubl -48(%edx)
|
|
198
|
+
fxch %st(4)
|
|
199
|
+
fstpl 40(%esp)
|
|
200
|
+
fxch %st(4)
|
|
201
|
+
fstpl -56(%edx)
|
|
202
|
+
fldl 112(%edx)
|
|
203
|
+
fldl 32(%edx)
|
|
204
|
+
fadd %st(0),%st(1)
|
|
205
|
+
fsubl 112(%edx)
|
|
206
|
+
fxch %st(2)
|
|
207
|
+
fstpl 24(%edx)
|
|
208
|
+
fxch %st(2)
|
|
209
|
+
fstpl 104(%edx)
|
|
210
|
+
fldl -40(%edx)
|
|
211
|
+
fldl -120(%edx)
|
|
212
|
+
fadd %st(0),%st(1)
|
|
213
|
+
fsubl -40(%edx)
|
|
214
|
+
fxch %st(5)
|
|
215
|
+
fstpl 48(%esp)
|
|
216
|
+
fxch %st(3)
|
|
217
|
+
fstpl -48(%edx)
|
|
218
|
+
fldl 120(%edx)
|
|
219
|
+
fldl 40(%edx)
|
|
220
|
+
fadd %st(0),%st(1)
|
|
221
|
+
fsubl 120(%edx)
|
|
222
|
+
fxch %st(3)
|
|
223
|
+
fstpl 32(%edx)
|
|
224
|
+
fxch %st(1)
|
|
225
|
+
fstpl 112(%edx)
|
|
226
|
+
fldl -32(%edx)
|
|
227
|
+
fldl -112(%edx)
|
|
228
|
+
fadd %st(0),%st(1)
|
|
229
|
+
fsubl -32(%edx)
|
|
230
|
+
fxch %st(4)
|
|
231
|
+
fstpl -120(%edx)
|
|
232
|
+
fxch %st(4)
|
|
233
|
+
fstpl -40(%edx)
|
|
234
|
+
fldl -128(%ecx)
|
|
235
|
+
fldl 48(%edx)
|
|
236
|
+
fadd %st(0),%st(1)
|
|
237
|
+
fsubl -128(%ecx)
|
|
238
|
+
fxch %st(2)
|
|
239
|
+
fstpl 40(%edx)
|
|
240
|
+
fxch %st(2)
|
|
241
|
+
fstpl 120(%edx)
|
|
242
|
+
fldl -24(%edx)
|
|
243
|
+
fldl -104(%edx)
|
|
244
|
+
fadd %st(0),%st(1)
|
|
245
|
+
fsubl -24(%edx)
|
|
246
|
+
fxch %st(5)
|
|
247
|
+
fstpl -112(%edx)
|
|
248
|
+
fxch %st(3)
|
|
249
|
+
fstpl -32(%edx)
|
|
250
|
+
fldl -120(%ecx)
|
|
251
|
+
fldl 56(%edx)
|
|
252
|
+
fadd %st(0),%st(1)
|
|
253
|
+
fsubl -120(%ecx)
|
|
254
|
+
fxch %st(3)
|
|
255
|
+
fstpl 48(%edx)
|
|
256
|
+
fxch %st(1)
|
|
257
|
+
fstpl -128(%ecx)
|
|
258
|
+
fldl -112(%ecx)
|
|
259
|
+
fsubl crypto_scalarmult_curve25519_athlon_in0offset
|
|
260
|
+
fldl crypto_scalarmult_curve25519_athlon_two0
|
|
261
|
+
fsub %st(1),%st(0)
|
|
262
|
+
fxch %st(4)
|
|
263
|
+
fstpl -104(%edx)
|
|
264
|
+
fxch %st(4)
|
|
265
|
+
fstpl -24(%edx)
|
|
266
|
+
fstpl 56(%edx)
|
|
267
|
+
fstpl -120(%ecx)
|
|
268
|
+
fxch %st(1)
|
|
269
|
+
fstl 136(%ecx)
|
|
270
|
+
fldl 0(%esp)
|
|
271
|
+
fmul %st(2),%st(0)
|
|
272
|
+
fldl -16(%edx)
|
|
273
|
+
fmul %st(2),%st(0)
|
|
274
|
+
faddp %st(0),%st(1)
|
|
275
|
+
fldl 8(%esp)
|
|
276
|
+
fmul %st(3),%st(0)
|
|
277
|
+
fldl -8(%edx)
|
|
278
|
+
fmul %st(3),%st(0)
|
|
279
|
+
faddp %st(0),%st(1)
|
|
280
|
+
fldl 16(%esp)
|
|
281
|
+
fmul %st(4),%st(0)
|
|
282
|
+
fldl 0(%edx)
|
|
283
|
+
fmul %st(4),%st(0)
|
|
284
|
+
faddp %st(0),%st(1)
|
|
285
|
+
fldl 24(%esp)
|
|
286
|
+
fmul %st(5),%st(0)
|
|
287
|
+
fldl 8(%edx)
|
|
288
|
+
fmul %st(5),%st(0)
|
|
289
|
+
faddp %st(0),%st(1)
|
|
290
|
+
fxch %st(3)
|
|
291
|
+
fstpl -112(%ecx)
|
|
292
|
+
fldl 32(%esp)
|
|
293
|
+
fmul %st(5),%st(0)
|
|
294
|
+
fldl 16(%edx)
|
|
295
|
+
fmul %st(5),%st(0)
|
|
296
|
+
faddp %st(0),%st(1)
|
|
297
|
+
fxch %st(2)
|
|
298
|
+
fstpl -104(%ecx)
|
|
299
|
+
fldl 40(%esp)
|
|
300
|
+
fmul %st(5),%st(0)
|
|
301
|
+
fldl 24(%edx)
|
|
302
|
+
fmul %st(5),%st(0)
|
|
303
|
+
faddp %st(0),%st(1)
|
|
304
|
+
fxch %st(1)
|
|
305
|
+
fstpl -96(%ecx)
|
|
306
|
+
fldl 48(%esp)
|
|
307
|
+
fmul %st(5),%st(0)
|
|
308
|
+
fldl 32(%edx)
|
|
309
|
+
fmul %st(5),%st(0)
|
|
310
|
+
faddp %st(0),%st(1)
|
|
311
|
+
fxch %st(3)
|
|
312
|
+
fstpl -88(%ecx)
|
|
313
|
+
fldl -120(%edx)
|
|
314
|
+
fmul %st(5),%st(0)
|
|
315
|
+
fldl 40(%edx)
|
|
316
|
+
fmul %st(5),%st(0)
|
|
317
|
+
faddp %st(0),%st(1)
|
|
318
|
+
fxch %st(2)
|
|
319
|
+
fstpl -80(%ecx)
|
|
320
|
+
fldl -112(%edx)
|
|
321
|
+
fmul %st(5),%st(0)
|
|
322
|
+
fldl 48(%edx)
|
|
323
|
+
fmul %st(5),%st(0)
|
|
324
|
+
faddp %st(0),%st(1)
|
|
325
|
+
fxch %st(1)
|
|
326
|
+
fstpl -72(%ecx)
|
|
327
|
+
fldl -104(%edx)
|
|
328
|
+
fmul %st(5),%st(0)
|
|
329
|
+
fldl 56(%edx)
|
|
330
|
+
fmul %st(5),%st(0)
|
|
331
|
+
faddp %st(0),%st(1)
|
|
332
|
+
fxch %st(3)
|
|
333
|
+
fstpl -64(%ecx)
|
|
334
|
+
fldl -96(%edx)
|
|
335
|
+
fmul %st(5),%st(0)
|
|
336
|
+
fldl 64(%edx)
|
|
337
|
+
fmul %st(5),%st(0)
|
|
338
|
+
faddp %st(0),%st(1)
|
|
339
|
+
fxch %st(2)
|
|
340
|
+
fstpl -56(%ecx)
|
|
341
|
+
fldl -88(%edx)
|
|
342
|
+
fmul %st(5),%st(0)
|
|
343
|
+
fldl 72(%edx)
|
|
344
|
+
fmul %st(5),%st(0)
|
|
345
|
+
faddp %st(0),%st(1)
|
|
346
|
+
fxch %st(1)
|
|
347
|
+
fstpl -48(%ecx)
|
|
348
|
+
fldl -80(%edx)
|
|
349
|
+
fmul %st(5),%st(0)
|
|
350
|
+
fldl 80(%edx)
|
|
351
|
+
fmul %st(5),%st(0)
|
|
352
|
+
faddp %st(0),%st(1)
|
|
353
|
+
fxch %st(3)
|
|
354
|
+
fstpl -40(%ecx)
|
|
355
|
+
fldl -72(%edx)
|
|
356
|
+
fmul %st(5),%st(0)
|
|
357
|
+
fldl 88(%edx)
|
|
358
|
+
fmul %st(5),%st(0)
|
|
359
|
+
faddp %st(0),%st(1)
|
|
360
|
+
fxch %st(2)
|
|
361
|
+
fstpl -32(%ecx)
|
|
362
|
+
fldl -64(%edx)
|
|
363
|
+
fmul %st(5),%st(0)
|
|
364
|
+
fldl 96(%edx)
|
|
365
|
+
fmul %st(5),%st(0)
|
|
366
|
+
faddp %st(0),%st(1)
|
|
367
|
+
fxch %st(1)
|
|
368
|
+
fstpl -24(%ecx)
|
|
369
|
+
fldl -56(%edx)
|
|
370
|
+
fmul %st(5),%st(0)
|
|
371
|
+
fldl 104(%edx)
|
|
372
|
+
fmul %st(5),%st(0)
|
|
373
|
+
faddp %st(0),%st(1)
|
|
374
|
+
fxch %st(3)
|
|
375
|
+
fstpl -16(%ecx)
|
|
376
|
+
fldl -48(%edx)
|
|
377
|
+
fmul %st(5),%st(0)
|
|
378
|
+
fldl 112(%edx)
|
|
379
|
+
fmul %st(5),%st(0)
|
|
380
|
+
faddp %st(0),%st(1)
|
|
381
|
+
fxch %st(2)
|
|
382
|
+
fstpl -8(%ecx)
|
|
383
|
+
fldl -40(%edx)
|
|
384
|
+
fmul %st(5),%st(0)
|
|
385
|
+
fldl 120(%edx)
|
|
386
|
+
fmul %st(5),%st(0)
|
|
387
|
+
faddp %st(0),%st(1)
|
|
388
|
+
fxch %st(1)
|
|
389
|
+
fstpl 0(%ecx)
|
|
390
|
+
fldl -32(%edx)
|
|
391
|
+
fmul %st(5),%st(0)
|
|
392
|
+
fldl -128(%ecx)
|
|
393
|
+
fmul %st(5),%st(0)
|
|
394
|
+
faddp %st(0),%st(1)
|
|
395
|
+
fxch %st(3)
|
|
396
|
+
fstpl 8(%ecx)
|
|
397
|
+
fldl -24(%edx)
|
|
398
|
+
fmulp %st(0),%st(5)
|
|
399
|
+
fldl -120(%ecx)
|
|
400
|
+
fmulp %st(0),%st(4)
|
|
401
|
+
fxch %st(3)
|
|
402
|
+
faddp %st(0),%st(4)
|
|
403
|
+
fstpl 16(%ecx)
|
|
404
|
+
fxch %st(1)
|
|
405
|
+
fstpl 24(%ecx)
|
|
406
|
+
fstpl 32(%ecx)
|
|
407
|
+
fstpl 40(%ecx)
|
|
408
|
+
fldl -24(%edx)
|
|
409
|
+
fmull 56(%edx)
|
|
410
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
411
|
+
fldl -96(%edx)
|
|
412
|
+
fmull 48(%edx)
|
|
413
|
+
faddp %st(0),%st(1)
|
|
414
|
+
fldl -88(%edx)
|
|
415
|
+
fmull 40(%edx)
|
|
416
|
+
faddp %st(0),%st(1)
|
|
417
|
+
fldl -96(%edx)
|
|
418
|
+
fmull 56(%edx)
|
|
419
|
+
fldl -80(%edx)
|
|
420
|
+
fmull 32(%edx)
|
|
421
|
+
faddp %st(0),%st(2)
|
|
422
|
+
fldl -88(%edx)
|
|
423
|
+
fmull 48(%edx)
|
|
424
|
+
faddp %st(0),%st(1)
|
|
425
|
+
fldl -72(%edx)
|
|
426
|
+
fmull 24(%edx)
|
|
427
|
+
faddp %st(0),%st(2)
|
|
428
|
+
fldl -80(%edx)
|
|
429
|
+
fmull 40(%edx)
|
|
430
|
+
faddp %st(0),%st(1)
|
|
431
|
+
fldl -64(%edx)
|
|
432
|
+
fmull 16(%edx)
|
|
433
|
+
faddp %st(0),%st(2)
|
|
434
|
+
fldl -72(%edx)
|
|
435
|
+
fmull 32(%edx)
|
|
436
|
+
faddp %st(0),%st(1)
|
|
437
|
+
fldl -88(%edx)
|
|
438
|
+
fmull 56(%edx)
|
|
439
|
+
fldl -56(%edx)
|
|
440
|
+
fmull 8(%edx)
|
|
441
|
+
faddp %st(0),%st(3)
|
|
442
|
+
fldl -64(%edx)
|
|
443
|
+
fmull 24(%edx)
|
|
444
|
+
faddp %st(0),%st(2)
|
|
445
|
+
fldl -80(%edx)
|
|
446
|
+
fmull 48(%edx)
|
|
447
|
+
faddp %st(0),%st(1)
|
|
448
|
+
fldl -48(%edx)
|
|
449
|
+
fmull 0(%edx)
|
|
450
|
+
faddp %st(0),%st(3)
|
|
451
|
+
fldl -56(%edx)
|
|
452
|
+
fmull 16(%edx)
|
|
453
|
+
faddp %st(0),%st(2)
|
|
454
|
+
fldl -72(%edx)
|
|
455
|
+
fmull 40(%edx)
|
|
456
|
+
faddp %st(0),%st(1)
|
|
457
|
+
fldl -40(%edx)
|
|
458
|
+
fmull -8(%edx)
|
|
459
|
+
faddp %st(0),%st(3)
|
|
460
|
+
fldl -48(%edx)
|
|
461
|
+
fmull 8(%edx)
|
|
462
|
+
faddp %st(0),%st(2)
|
|
463
|
+
fldl -64(%edx)
|
|
464
|
+
fmull 32(%edx)
|
|
465
|
+
faddp %st(0),%st(1)
|
|
466
|
+
fldl -32(%edx)
|
|
467
|
+
fmull -16(%edx)
|
|
468
|
+
faddp %st(0),%st(3)
|
|
469
|
+
fldl -40(%edx)
|
|
470
|
+
fmull 0(%edx)
|
|
471
|
+
faddp %st(0),%st(2)
|
|
472
|
+
fldl -56(%edx)
|
|
473
|
+
fmull 24(%edx)
|
|
474
|
+
faddp %st(0),%st(1)
|
|
475
|
+
fldl -80(%edx)
|
|
476
|
+
fmull 56(%edx)
|
|
477
|
+
fldl -48(%edx)
|
|
478
|
+
fmull 16(%edx)
|
|
479
|
+
faddp %st(0),%st(2)
|
|
480
|
+
fldl -32(%edx)
|
|
481
|
+
fmull -8(%edx)
|
|
482
|
+
faddp %st(0),%st(3)
|
|
483
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
484
|
+
fadd %st(4),%st(0)
|
|
485
|
+
fldl -72(%edx)
|
|
486
|
+
fmull 48(%edx)
|
|
487
|
+
faddp %st(0),%st(2)
|
|
488
|
+
fldl -40(%edx)
|
|
489
|
+
fmull 8(%edx)
|
|
490
|
+
faddp %st(0),%st(3)
|
|
491
|
+
fldl -24(%edx)
|
|
492
|
+
fmull -16(%edx)
|
|
493
|
+
faddp %st(0),%st(4)
|
|
494
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
495
|
+
fldl -64(%edx)
|
|
496
|
+
fmull 40(%edx)
|
|
497
|
+
faddp %st(0),%st(2)
|
|
498
|
+
fldl -72(%edx)
|
|
499
|
+
fmull 56(%edx)
|
|
500
|
+
fldl -32(%edx)
|
|
501
|
+
fmull 0(%edx)
|
|
502
|
+
faddp %st(0),%st(4)
|
|
503
|
+
fxch %st(1)
|
|
504
|
+
fadd %st(0),%st(4)
|
|
505
|
+
fldl -56(%edx)
|
|
506
|
+
fmull 32(%edx)
|
|
507
|
+
faddp %st(0),%st(3)
|
|
508
|
+
fldl -64(%edx)
|
|
509
|
+
fmull 48(%edx)
|
|
510
|
+
faddp %st(0),%st(2)
|
|
511
|
+
fsubrp %st(0),%st(5)
|
|
512
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
513
|
+
fadd %st(4),%st(0)
|
|
514
|
+
fldl -48(%edx)
|
|
515
|
+
fmull 24(%edx)
|
|
516
|
+
faddp %st(0),%st(3)
|
|
517
|
+
fldl -56(%edx)
|
|
518
|
+
fmull 40(%edx)
|
|
519
|
+
faddp %st(0),%st(2)
|
|
520
|
+
fldl -24(%edx)
|
|
521
|
+
fmull -8(%edx)
|
|
522
|
+
faddp %st(0),%st(4)
|
|
523
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
524
|
+
fldl -40(%edx)
|
|
525
|
+
fmull 16(%edx)
|
|
526
|
+
faddp %st(0),%st(3)
|
|
527
|
+
fldl -64(%edx)
|
|
528
|
+
fmull 56(%edx)
|
|
529
|
+
fldl -48(%edx)
|
|
530
|
+
fmull 32(%edx)
|
|
531
|
+
faddp %st(0),%st(3)
|
|
532
|
+
fldl -32(%edx)
|
|
533
|
+
fmull 8(%edx)
|
|
534
|
+
faddp %st(0),%st(4)
|
|
535
|
+
fxch %st(1)
|
|
536
|
+
fadd %st(0),%st(4)
|
|
537
|
+
fsubrp %st(0),%st(5)
|
|
538
|
+
fxch %st(5)
|
|
539
|
+
fstpl 64(%ecx)
|
|
540
|
+
fldl -56(%edx)
|
|
541
|
+
fmull 48(%edx)
|
|
542
|
+
faddp %st(0),%st(5)
|
|
543
|
+
fldl -40(%edx)
|
|
544
|
+
fmull 24(%edx)
|
|
545
|
+
faddp %st(0),%st(1)
|
|
546
|
+
fldl -24(%edx)
|
|
547
|
+
fmull 0(%edx)
|
|
548
|
+
faddp %st(0),%st(2)
|
|
549
|
+
fxch %st(2)
|
|
550
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
551
|
+
fldl -48(%edx)
|
|
552
|
+
fmull 40(%edx)
|
|
553
|
+
faddp %st(0),%st(5)
|
|
554
|
+
fldl -32(%edx)
|
|
555
|
+
fmull 16(%edx)
|
|
556
|
+
faddp %st(0),%st(3)
|
|
557
|
+
fxch %st(1)
|
|
558
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
559
|
+
fldl -96(%edx)
|
|
560
|
+
fmull -16(%edx)
|
|
561
|
+
faddp %st(0),%st(2)
|
|
562
|
+
fxch %st(3)
|
|
563
|
+
fstpl 72(%ecx)
|
|
564
|
+
fldl -56(%edx)
|
|
565
|
+
fmull 56(%edx)
|
|
566
|
+
fldl -40(%edx)
|
|
567
|
+
fmull 32(%edx)
|
|
568
|
+
faddp %st(0),%st(5)
|
|
569
|
+
fldl -24(%edx)
|
|
570
|
+
fmull 8(%edx)
|
|
571
|
+
faddp %st(0),%st(3)
|
|
572
|
+
fldl -96(%edx)
|
|
573
|
+
fmull -8(%edx)
|
|
574
|
+
faddp %st(0),%st(4)
|
|
575
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
576
|
+
fadd %st(2),%st(0)
|
|
577
|
+
fldl -48(%edx)
|
|
578
|
+
fmull 48(%edx)
|
|
579
|
+
faddp %st(0),%st(2)
|
|
580
|
+
fldl -32(%edx)
|
|
581
|
+
fmull 24(%edx)
|
|
582
|
+
faddp %st(0),%st(6)
|
|
583
|
+
fxch %st(3)
|
|
584
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
585
|
+
fldl -88(%edx)
|
|
586
|
+
fmull -16(%edx)
|
|
587
|
+
faddp %st(0),%st(5)
|
|
588
|
+
fxch %st(3)
|
|
589
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
590
|
+
fldl -40(%edx)
|
|
591
|
+
fmull 40(%edx)
|
|
592
|
+
faddp %st(0),%st(2)
|
|
593
|
+
fldl -24(%edx)
|
|
594
|
+
fmull 16(%edx)
|
|
595
|
+
faddp %st(0),%st(6)
|
|
596
|
+
fldl -96(%edx)
|
|
597
|
+
fmull 0(%edx)
|
|
598
|
+
faddp %st(0),%st(4)
|
|
599
|
+
fadd %st(0),%st(4)
|
|
600
|
+
fsubrp %st(0),%st(2)
|
|
601
|
+
fldl -48(%edx)
|
|
602
|
+
fmull 56(%edx)
|
|
603
|
+
fldl -32(%edx)
|
|
604
|
+
fmull 32(%edx)
|
|
605
|
+
faddp %st(0),%st(2)
|
|
606
|
+
fxch %st(5)
|
|
607
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
608
|
+
fldl -88(%edx)
|
|
609
|
+
fmull -8(%edx)
|
|
610
|
+
faddp %st(0),%st(4)
|
|
611
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
612
|
+
fadd %st(5),%st(0)
|
|
613
|
+
fldl -40(%edx)
|
|
614
|
+
fmull 48(%edx)
|
|
615
|
+
faddp %st(0),%st(7)
|
|
616
|
+
fldl -24(%edx)
|
|
617
|
+
fmull 24(%edx)
|
|
618
|
+
faddp %st(0),%st(3)
|
|
619
|
+
fldl -96(%edx)
|
|
620
|
+
fmull 8(%edx)
|
|
621
|
+
faddp %st(0),%st(2)
|
|
622
|
+
fldl -80(%edx)
|
|
623
|
+
fmull -16(%edx)
|
|
624
|
+
faddp %st(0),%st(5)
|
|
625
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
626
|
+
fxch %st(3)
|
|
627
|
+
fstpl 48(%ecx)
|
|
628
|
+
fldl -32(%edx)
|
|
629
|
+
fmull 40(%edx)
|
|
630
|
+
faddp %st(0),%st(6)
|
|
631
|
+
fxch %st(1)
|
|
632
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
633
|
+
fldl -88(%edx)
|
|
634
|
+
fmull 0(%edx)
|
|
635
|
+
faddp %st(0),%st(2)
|
|
636
|
+
fxch %st(2)
|
|
637
|
+
fadd %st(0),%st(3)
|
|
638
|
+
fsubrp %st(0),%st(4)
|
|
639
|
+
fldl -40(%edx)
|
|
640
|
+
fmull 56(%edx)
|
|
641
|
+
fldl -24(%edx)
|
|
642
|
+
fmull 32(%edx)
|
|
643
|
+
faddp %st(0),%st(6)
|
|
644
|
+
fldl -96(%edx)
|
|
645
|
+
fmull 16(%edx)
|
|
646
|
+
faddp %st(0),%st(3)
|
|
647
|
+
fldl -80(%edx)
|
|
648
|
+
fmull -8(%edx)
|
|
649
|
+
faddp %st(0),%st(2)
|
|
650
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
651
|
+
fadd %st(4),%st(0)
|
|
652
|
+
fldl -32(%edx)
|
|
653
|
+
fmull 48(%edx)
|
|
654
|
+
faddp %st(0),%st(2)
|
|
655
|
+
fxch %st(6)
|
|
656
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
657
|
+
fldl -88(%edx)
|
|
658
|
+
fmull 8(%edx)
|
|
659
|
+
faddp %st(0),%st(4)
|
|
660
|
+
fldl -72(%edx)
|
|
661
|
+
fmull -16(%edx)
|
|
662
|
+
faddp %st(0),%st(3)
|
|
663
|
+
fxch %st(6)
|
|
664
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
665
|
+
fxch %st(5)
|
|
666
|
+
fstpl 56(%ecx)
|
|
667
|
+
fldl -24(%edx)
|
|
668
|
+
fmull 40(%edx)
|
|
669
|
+
faddp %st(0),%st(1)
|
|
670
|
+
fldl -96(%edx)
|
|
671
|
+
fmull 24(%edx)
|
|
672
|
+
faddp %st(0),%st(6)
|
|
673
|
+
fldl -80(%edx)
|
|
674
|
+
fmull 0(%edx)
|
|
675
|
+
faddp %st(0),%st(3)
|
|
676
|
+
fxch %st(4)
|
|
677
|
+
fadd %st(0),%st(1)
|
|
678
|
+
fsubrp %st(0),%st(3)
|
|
679
|
+
fldl -32(%edx)
|
|
680
|
+
fmull 56(%edx)
|
|
681
|
+
fxch %st(4)
|
|
682
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
683
|
+
fldl -88(%edx)
|
|
684
|
+
fmull 16(%edx)
|
|
685
|
+
faddp %st(0),%st(6)
|
|
686
|
+
fldl -72(%edx)
|
|
687
|
+
fmull -8(%edx)
|
|
688
|
+
faddp %st(0),%st(3)
|
|
689
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
690
|
+
fadd %st(2),%st(0)
|
|
691
|
+
fldl -24(%edx)
|
|
692
|
+
fmull 48(%edx)
|
|
693
|
+
faddp %st(0),%st(6)
|
|
694
|
+
fldl -96(%edx)
|
|
695
|
+
fmull 32(%edx)
|
|
696
|
+
faddp %st(0),%st(2)
|
|
697
|
+
fldl -80(%edx)
|
|
698
|
+
fmull 8(%edx)
|
|
699
|
+
faddp %st(0),%st(7)
|
|
700
|
+
fldl -64(%edx)
|
|
701
|
+
fmull -16(%edx)
|
|
702
|
+
faddp %st(0),%st(4)
|
|
703
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
704
|
+
fxch %st(4)
|
|
705
|
+
fstpl -24(%edx)
|
|
706
|
+
fxch %st(4)
|
|
707
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
708
|
+
fldl -88(%edx)
|
|
709
|
+
fmull 24(%edx)
|
|
710
|
+
faddp %st(0),%st(5)
|
|
711
|
+
fldl -72(%edx)
|
|
712
|
+
fmull 0(%edx)
|
|
713
|
+
faddp %st(0),%st(6)
|
|
714
|
+
fxch %st(3)
|
|
715
|
+
fadd %st(0),%st(2)
|
|
716
|
+
fsubrp %st(0),%st(1)
|
|
717
|
+
fldl -96(%edx)
|
|
718
|
+
fmull 40(%edx)
|
|
719
|
+
faddp %st(0),%st(3)
|
|
720
|
+
fldl -80(%edx)
|
|
721
|
+
fmull 16(%edx)
|
|
722
|
+
faddp %st(0),%st(4)
|
|
723
|
+
fldl -64(%edx)
|
|
724
|
+
fmull -8(%edx)
|
|
725
|
+
faddp %st(0),%st(5)
|
|
726
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
727
|
+
fadd %st(2),%st(0)
|
|
728
|
+
fldl -88(%edx)
|
|
729
|
+
fmull 32(%edx)
|
|
730
|
+
faddp %st(0),%st(4)
|
|
731
|
+
fldl -72(%edx)
|
|
732
|
+
fmull 8(%edx)
|
|
733
|
+
faddp %st(0),%st(5)
|
|
734
|
+
fldl -56(%edx)
|
|
735
|
+
fmull -16(%edx)
|
|
736
|
+
faddp %st(0),%st(6)
|
|
737
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
738
|
+
fxch %st(1)
|
|
739
|
+
fstpl -96(%edx)
|
|
740
|
+
fldl -80(%edx)
|
|
741
|
+
fmull 24(%edx)
|
|
742
|
+
faddp %st(0),%st(3)
|
|
743
|
+
fldl -64(%edx)
|
|
744
|
+
fmull 0(%edx)
|
|
745
|
+
faddp %st(0),%st(4)
|
|
746
|
+
fadd %st(0),%st(4)
|
|
747
|
+
fsubrp %st(0),%st(1)
|
|
748
|
+
fstpl -88(%edx)
|
|
749
|
+
fldl -72(%edx)
|
|
750
|
+
fmull 16(%edx)
|
|
751
|
+
faddp %st(0),%st(1)
|
|
752
|
+
fldl -56(%edx)
|
|
753
|
+
fmull -8(%edx)
|
|
754
|
+
faddp %st(0),%st(2)
|
|
755
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
756
|
+
fadd %st(3),%st(0)
|
|
757
|
+
fldl -64(%edx)
|
|
758
|
+
fmull 8(%edx)
|
|
759
|
+
faddp %st(0),%st(2)
|
|
760
|
+
fldl -48(%edx)
|
|
761
|
+
fmull -16(%edx)
|
|
762
|
+
faddp %st(0),%st(3)
|
|
763
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
764
|
+
fldl -56(%edx)
|
|
765
|
+
fmull 0(%edx)
|
|
766
|
+
faddp %st(0),%st(2)
|
|
767
|
+
fadd %st(0),%st(2)
|
|
768
|
+
fsubrp %st(0),%st(3)
|
|
769
|
+
fxch %st(2)
|
|
770
|
+
fstpl -80(%edx)
|
|
771
|
+
fldl -48(%edx)
|
|
772
|
+
fmull -8(%edx)
|
|
773
|
+
faddp %st(0),%st(2)
|
|
774
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
775
|
+
fadd %st(1),%st(0)
|
|
776
|
+
fldl -40(%edx)
|
|
777
|
+
fmull -16(%edx)
|
|
778
|
+
faddp %st(0),%st(3)
|
|
779
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
780
|
+
fldl 64(%ecx)
|
|
781
|
+
fldl 72(%ecx)
|
|
782
|
+
fxch %st(2)
|
|
783
|
+
fadd %st(0),%st(4)
|
|
784
|
+
fsubrp %st(0),%st(3)
|
|
785
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
786
|
+
fadd %st(4),%st(0)
|
|
787
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
788
|
+
fadd %st(0),%st(1)
|
|
789
|
+
fsubrp %st(0),%st(4)
|
|
790
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
791
|
+
fadd %st(1),%st(0)
|
|
792
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
793
|
+
fsubr %st(0),%st(1)
|
|
794
|
+
faddp %st(0),%st(2)
|
|
795
|
+
fxch %st(2)
|
|
796
|
+
fstpl -72(%edx)
|
|
797
|
+
fxch %st(2)
|
|
798
|
+
fstpl -64(%edx)
|
|
799
|
+
fstpl -56(%edx)
|
|
800
|
+
fstpl -48(%edx)
|
|
801
|
+
fldl -104(%edx)
|
|
802
|
+
fmull -120(%ecx)
|
|
803
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
804
|
+
fldl 0(%esp)
|
|
805
|
+
fmull -128(%ecx)
|
|
806
|
+
faddp %st(0),%st(1)
|
|
807
|
+
fldl 8(%esp)
|
|
808
|
+
fmull 120(%edx)
|
|
809
|
+
faddp %st(0),%st(1)
|
|
810
|
+
fldl 0(%esp)
|
|
811
|
+
fmull -120(%ecx)
|
|
812
|
+
fldl 16(%esp)
|
|
813
|
+
fmull 112(%edx)
|
|
814
|
+
faddp %st(0),%st(2)
|
|
815
|
+
fldl 8(%esp)
|
|
816
|
+
fmull -128(%ecx)
|
|
817
|
+
faddp %st(0),%st(1)
|
|
818
|
+
fldl 24(%esp)
|
|
819
|
+
fmull 104(%edx)
|
|
820
|
+
faddp %st(0),%st(2)
|
|
821
|
+
fldl 16(%esp)
|
|
822
|
+
fmull 120(%edx)
|
|
823
|
+
faddp %st(0),%st(1)
|
|
824
|
+
fldl 32(%esp)
|
|
825
|
+
fmull 96(%edx)
|
|
826
|
+
faddp %st(0),%st(2)
|
|
827
|
+
fldl 24(%esp)
|
|
828
|
+
fmull 112(%edx)
|
|
829
|
+
faddp %st(0),%st(1)
|
|
830
|
+
fldl 8(%esp)
|
|
831
|
+
fmull -120(%ecx)
|
|
832
|
+
fldl 40(%esp)
|
|
833
|
+
fmull 88(%edx)
|
|
834
|
+
faddp %st(0),%st(3)
|
|
835
|
+
fldl 32(%esp)
|
|
836
|
+
fmull 104(%edx)
|
|
837
|
+
faddp %st(0),%st(2)
|
|
838
|
+
fldl 16(%esp)
|
|
839
|
+
fmull -128(%ecx)
|
|
840
|
+
faddp %st(0),%st(1)
|
|
841
|
+
fldl 48(%esp)
|
|
842
|
+
fmull 80(%edx)
|
|
843
|
+
faddp %st(0),%st(3)
|
|
844
|
+
fldl 40(%esp)
|
|
845
|
+
fmull 96(%edx)
|
|
846
|
+
faddp %st(0),%st(2)
|
|
847
|
+
fldl 24(%esp)
|
|
848
|
+
fmull 120(%edx)
|
|
849
|
+
faddp %st(0),%st(1)
|
|
850
|
+
fldl -120(%edx)
|
|
851
|
+
fmull 72(%edx)
|
|
852
|
+
faddp %st(0),%st(3)
|
|
853
|
+
fldl 48(%esp)
|
|
854
|
+
fmull 88(%edx)
|
|
855
|
+
faddp %st(0),%st(2)
|
|
856
|
+
fldl 32(%esp)
|
|
857
|
+
fmull 112(%edx)
|
|
858
|
+
faddp %st(0),%st(1)
|
|
859
|
+
fldl -112(%edx)
|
|
860
|
+
fmull 64(%edx)
|
|
861
|
+
faddp %st(0),%st(3)
|
|
862
|
+
fldl -120(%edx)
|
|
863
|
+
fmull 80(%edx)
|
|
864
|
+
faddp %st(0),%st(2)
|
|
865
|
+
fldl 40(%esp)
|
|
866
|
+
fmull 104(%edx)
|
|
867
|
+
faddp %st(0),%st(1)
|
|
868
|
+
fldl 16(%esp)
|
|
869
|
+
fmull -120(%ecx)
|
|
870
|
+
fldl 48(%esp)
|
|
871
|
+
fmull 96(%edx)
|
|
872
|
+
faddp %st(0),%st(2)
|
|
873
|
+
fldl -112(%edx)
|
|
874
|
+
fmull 72(%edx)
|
|
875
|
+
faddp %st(0),%st(3)
|
|
876
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
877
|
+
fadd %st(4),%st(0)
|
|
878
|
+
fldl 24(%esp)
|
|
879
|
+
fmull -128(%ecx)
|
|
880
|
+
faddp %st(0),%st(2)
|
|
881
|
+
fldl -120(%edx)
|
|
882
|
+
fmull 88(%edx)
|
|
883
|
+
faddp %st(0),%st(3)
|
|
884
|
+
fldl -104(%edx)
|
|
885
|
+
fmull 64(%edx)
|
|
886
|
+
faddp %st(0),%st(4)
|
|
887
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
888
|
+
fldl 32(%esp)
|
|
889
|
+
fmull 120(%edx)
|
|
890
|
+
faddp %st(0),%st(2)
|
|
891
|
+
fldl 24(%esp)
|
|
892
|
+
fmull -120(%ecx)
|
|
893
|
+
fldl -112(%edx)
|
|
894
|
+
fmull 80(%edx)
|
|
895
|
+
faddp %st(0),%st(4)
|
|
896
|
+
fxch %st(1)
|
|
897
|
+
fadd %st(0),%st(4)
|
|
898
|
+
fldl 40(%esp)
|
|
899
|
+
fmull 112(%edx)
|
|
900
|
+
faddp %st(0),%st(3)
|
|
901
|
+
fldl 32(%esp)
|
|
902
|
+
fmull -128(%ecx)
|
|
903
|
+
faddp %st(0),%st(2)
|
|
904
|
+
fsubrp %st(0),%st(5)
|
|
905
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
906
|
+
fadd %st(4),%st(0)
|
|
907
|
+
fldl 48(%esp)
|
|
908
|
+
fmull 104(%edx)
|
|
909
|
+
faddp %st(0),%st(3)
|
|
910
|
+
fldl 40(%esp)
|
|
911
|
+
fmull 120(%edx)
|
|
912
|
+
faddp %st(0),%st(2)
|
|
913
|
+
fldl -104(%edx)
|
|
914
|
+
fmull 72(%edx)
|
|
915
|
+
faddp %st(0),%st(4)
|
|
916
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
917
|
+
fldl -120(%edx)
|
|
918
|
+
fmull 96(%edx)
|
|
919
|
+
faddp %st(0),%st(3)
|
|
920
|
+
fldl 32(%esp)
|
|
921
|
+
fmull -120(%ecx)
|
|
922
|
+
fldl 48(%esp)
|
|
923
|
+
fmull 112(%edx)
|
|
924
|
+
faddp %st(0),%st(3)
|
|
925
|
+
fldl -112(%edx)
|
|
926
|
+
fmull 88(%edx)
|
|
927
|
+
faddp %st(0),%st(4)
|
|
928
|
+
fxch %st(1)
|
|
929
|
+
fadd %st(0),%st(4)
|
|
930
|
+
fsubrp %st(0),%st(5)
|
|
931
|
+
fxch %st(5)
|
|
932
|
+
fstpl 8(%edx)
|
|
933
|
+
fldl 40(%esp)
|
|
934
|
+
fmull -128(%ecx)
|
|
935
|
+
faddp %st(0),%st(5)
|
|
936
|
+
fldl -120(%edx)
|
|
937
|
+
fmull 104(%edx)
|
|
938
|
+
faddp %st(0),%st(1)
|
|
939
|
+
fldl -104(%edx)
|
|
940
|
+
fmull 80(%edx)
|
|
941
|
+
faddp %st(0),%st(2)
|
|
942
|
+
fxch %st(2)
|
|
943
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
944
|
+
fldl 48(%esp)
|
|
945
|
+
fmull 120(%edx)
|
|
946
|
+
faddp %st(0),%st(5)
|
|
947
|
+
fldl -112(%edx)
|
|
948
|
+
fmull 96(%edx)
|
|
949
|
+
faddp %st(0),%st(3)
|
|
950
|
+
fxch %st(1)
|
|
951
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
952
|
+
fldl 0(%esp)
|
|
953
|
+
fmull 64(%edx)
|
|
954
|
+
faddp %st(0),%st(2)
|
|
955
|
+
fxch %st(3)
|
|
956
|
+
fstpl 16(%edx)
|
|
957
|
+
fldl 40(%esp)
|
|
958
|
+
fmull -120(%ecx)
|
|
959
|
+
fldl -120(%edx)
|
|
960
|
+
fmull 112(%edx)
|
|
961
|
+
faddp %st(0),%st(5)
|
|
962
|
+
fldl -104(%edx)
|
|
963
|
+
fmull 88(%edx)
|
|
964
|
+
faddp %st(0),%st(3)
|
|
965
|
+
fldl 0(%esp)
|
|
966
|
+
fmull 72(%edx)
|
|
967
|
+
faddp %st(0),%st(4)
|
|
968
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
969
|
+
fadd %st(2),%st(0)
|
|
970
|
+
fldl 48(%esp)
|
|
971
|
+
fmull -128(%ecx)
|
|
972
|
+
faddp %st(0),%st(2)
|
|
973
|
+
fldl -112(%edx)
|
|
974
|
+
fmull 104(%edx)
|
|
975
|
+
faddp %st(0),%st(6)
|
|
976
|
+
fxch %st(3)
|
|
977
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
978
|
+
fldl 8(%esp)
|
|
979
|
+
fmull 64(%edx)
|
|
980
|
+
faddp %st(0),%st(5)
|
|
981
|
+
fxch %st(3)
|
|
982
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
983
|
+
fldl -120(%edx)
|
|
984
|
+
fmull 120(%edx)
|
|
985
|
+
faddp %st(0),%st(2)
|
|
986
|
+
fldl -104(%edx)
|
|
987
|
+
fmull 96(%edx)
|
|
988
|
+
faddp %st(0),%st(6)
|
|
989
|
+
fldl 0(%esp)
|
|
990
|
+
fmull 80(%edx)
|
|
991
|
+
faddp %st(0),%st(4)
|
|
992
|
+
fadd %st(0),%st(4)
|
|
993
|
+
fsubrp %st(0),%st(2)
|
|
994
|
+
fldl 48(%esp)
|
|
995
|
+
fmull -120(%ecx)
|
|
996
|
+
fldl -112(%edx)
|
|
997
|
+
fmull 112(%edx)
|
|
998
|
+
faddp %st(0),%st(2)
|
|
999
|
+
fxch %st(5)
|
|
1000
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1001
|
+
fldl 8(%esp)
|
|
1002
|
+
fmull 72(%edx)
|
|
1003
|
+
faddp %st(0),%st(4)
|
|
1004
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1005
|
+
fadd %st(5),%st(0)
|
|
1006
|
+
fldl -120(%edx)
|
|
1007
|
+
fmull -128(%ecx)
|
|
1008
|
+
faddp %st(0),%st(7)
|
|
1009
|
+
fldl -104(%edx)
|
|
1010
|
+
fmull 104(%edx)
|
|
1011
|
+
faddp %st(0),%st(3)
|
|
1012
|
+
fldl 0(%esp)
|
|
1013
|
+
fmull 88(%edx)
|
|
1014
|
+
faddp %st(0),%st(2)
|
|
1015
|
+
fldl 16(%esp)
|
|
1016
|
+
fmull 64(%edx)
|
|
1017
|
+
faddp %st(0),%st(5)
|
|
1018
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1019
|
+
fxch %st(3)
|
|
1020
|
+
fstpl -40(%edx)
|
|
1021
|
+
fldl -112(%edx)
|
|
1022
|
+
fmull 120(%edx)
|
|
1023
|
+
faddp %st(0),%st(6)
|
|
1024
|
+
fxch %st(1)
|
|
1025
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1026
|
+
fldl 8(%esp)
|
|
1027
|
+
fmull 80(%edx)
|
|
1028
|
+
faddp %st(0),%st(2)
|
|
1029
|
+
fxch %st(2)
|
|
1030
|
+
fadd %st(0),%st(3)
|
|
1031
|
+
fsubrp %st(0),%st(4)
|
|
1032
|
+
fldl -120(%edx)
|
|
1033
|
+
fmull -120(%ecx)
|
|
1034
|
+
fldl -104(%edx)
|
|
1035
|
+
fmull 112(%edx)
|
|
1036
|
+
faddp %st(0),%st(6)
|
|
1037
|
+
fldl 0(%esp)
|
|
1038
|
+
fmull 96(%edx)
|
|
1039
|
+
faddp %st(0),%st(3)
|
|
1040
|
+
fldl 16(%esp)
|
|
1041
|
+
fmull 72(%edx)
|
|
1042
|
+
faddp %st(0),%st(2)
|
|
1043
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
1044
|
+
fadd %st(4),%st(0)
|
|
1045
|
+
fldl -112(%edx)
|
|
1046
|
+
fmull -128(%ecx)
|
|
1047
|
+
faddp %st(0),%st(2)
|
|
1048
|
+
fxch %st(6)
|
|
1049
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1050
|
+
fldl 8(%esp)
|
|
1051
|
+
fmull 88(%edx)
|
|
1052
|
+
faddp %st(0),%st(4)
|
|
1053
|
+
fldl 24(%esp)
|
|
1054
|
+
fmull 64(%edx)
|
|
1055
|
+
faddp %st(0),%st(3)
|
|
1056
|
+
fxch %st(6)
|
|
1057
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
1058
|
+
fxch %st(5)
|
|
1059
|
+
fstpl -32(%edx)
|
|
1060
|
+
fldl -104(%edx)
|
|
1061
|
+
fmull 120(%edx)
|
|
1062
|
+
faddp %st(0),%st(1)
|
|
1063
|
+
fldl 0(%esp)
|
|
1064
|
+
fmull 104(%edx)
|
|
1065
|
+
faddp %st(0),%st(6)
|
|
1066
|
+
fldl 16(%esp)
|
|
1067
|
+
fmull 80(%edx)
|
|
1068
|
+
faddp %st(0),%st(3)
|
|
1069
|
+
fxch %st(4)
|
|
1070
|
+
fadd %st(0),%st(1)
|
|
1071
|
+
fsubrp %st(0),%st(3)
|
|
1072
|
+
fldl -112(%edx)
|
|
1073
|
+
fmull -120(%ecx)
|
|
1074
|
+
fxch %st(4)
|
|
1075
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1076
|
+
fldl 8(%esp)
|
|
1077
|
+
fmull 96(%edx)
|
|
1078
|
+
faddp %st(0),%st(6)
|
|
1079
|
+
fldl 24(%esp)
|
|
1080
|
+
fmull 72(%edx)
|
|
1081
|
+
faddp %st(0),%st(3)
|
|
1082
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
1083
|
+
fadd %st(2),%st(0)
|
|
1084
|
+
fldl -104(%edx)
|
|
1085
|
+
fmull -128(%ecx)
|
|
1086
|
+
faddp %st(0),%st(6)
|
|
1087
|
+
fldl 0(%esp)
|
|
1088
|
+
fmull 112(%edx)
|
|
1089
|
+
faddp %st(0),%st(2)
|
|
1090
|
+
fldl 16(%esp)
|
|
1091
|
+
fmull 88(%edx)
|
|
1092
|
+
faddp %st(0),%st(7)
|
|
1093
|
+
fldl 32(%esp)
|
|
1094
|
+
fmull 64(%edx)
|
|
1095
|
+
faddp %st(0),%st(4)
|
|
1096
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
1097
|
+
fxch %st(4)
|
|
1098
|
+
fstpl -104(%edx)
|
|
1099
|
+
fxch %st(4)
|
|
1100
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1101
|
+
fldl 8(%esp)
|
|
1102
|
+
fmull 104(%edx)
|
|
1103
|
+
faddp %st(0),%st(5)
|
|
1104
|
+
fldl 24(%esp)
|
|
1105
|
+
fmull 80(%edx)
|
|
1106
|
+
faddp %st(0),%st(6)
|
|
1107
|
+
fxch %st(3)
|
|
1108
|
+
fadd %st(0),%st(2)
|
|
1109
|
+
fsubrp %st(0),%st(1)
|
|
1110
|
+
fldl 0(%esp)
|
|
1111
|
+
fmull 120(%edx)
|
|
1112
|
+
faddp %st(0),%st(3)
|
|
1113
|
+
fldl 16(%esp)
|
|
1114
|
+
fmull 96(%edx)
|
|
1115
|
+
faddp %st(0),%st(4)
|
|
1116
|
+
fldl 32(%esp)
|
|
1117
|
+
fmull 72(%edx)
|
|
1118
|
+
faddp %st(0),%st(5)
|
|
1119
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
1120
|
+
fadd %st(2),%st(0)
|
|
1121
|
+
fldl 8(%esp)
|
|
1122
|
+
fmull 112(%edx)
|
|
1123
|
+
faddp %st(0),%st(4)
|
|
1124
|
+
fldl 24(%esp)
|
|
1125
|
+
fmull 88(%edx)
|
|
1126
|
+
faddp %st(0),%st(5)
|
|
1127
|
+
fldl 40(%esp)
|
|
1128
|
+
fmull 64(%edx)
|
|
1129
|
+
faddp %st(0),%st(6)
|
|
1130
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
1131
|
+
fxch %st(1)
|
|
1132
|
+
fstpl -16(%edx)
|
|
1133
|
+
fldl 16(%esp)
|
|
1134
|
+
fmull 104(%edx)
|
|
1135
|
+
faddp %st(0),%st(3)
|
|
1136
|
+
fldl 32(%esp)
|
|
1137
|
+
fmull 80(%edx)
|
|
1138
|
+
faddp %st(0),%st(4)
|
|
1139
|
+
fadd %st(0),%st(4)
|
|
1140
|
+
fsubrp %st(0),%st(1)
|
|
1141
|
+
fstpl -8(%edx)
|
|
1142
|
+
fldl 24(%esp)
|
|
1143
|
+
fmull 96(%edx)
|
|
1144
|
+
faddp %st(0),%st(1)
|
|
1145
|
+
fldl 40(%esp)
|
|
1146
|
+
fmull 72(%edx)
|
|
1147
|
+
faddp %st(0),%st(2)
|
|
1148
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
1149
|
+
fadd %st(3),%st(0)
|
|
1150
|
+
fldl 32(%esp)
|
|
1151
|
+
fmull 88(%edx)
|
|
1152
|
+
faddp %st(0),%st(2)
|
|
1153
|
+
fldl 48(%esp)
|
|
1154
|
+
fmull 64(%edx)
|
|
1155
|
+
faddp %st(0),%st(3)
|
|
1156
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
1157
|
+
fldl 40(%esp)
|
|
1158
|
+
fmull 80(%edx)
|
|
1159
|
+
faddp %st(0),%st(2)
|
|
1160
|
+
fadd %st(0),%st(2)
|
|
1161
|
+
fsubrp %st(0),%st(3)
|
|
1162
|
+
fxch %st(2)
|
|
1163
|
+
fstpl 0(%edx)
|
|
1164
|
+
fldl 48(%esp)
|
|
1165
|
+
fmull 72(%edx)
|
|
1166
|
+
faddp %st(0),%st(2)
|
|
1167
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
1168
|
+
fadd %st(1),%st(0)
|
|
1169
|
+
fldl -120(%edx)
|
|
1170
|
+
fmull 64(%edx)
|
|
1171
|
+
faddp %st(0),%st(3)
|
|
1172
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
1173
|
+
fldl 8(%edx)
|
|
1174
|
+
fldl 16(%edx)
|
|
1175
|
+
fxch %st(2)
|
|
1176
|
+
fadd %st(0),%st(4)
|
|
1177
|
+
fsubrp %st(0),%st(3)
|
|
1178
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
1179
|
+
fadd %st(4),%st(0)
|
|
1180
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
1181
|
+
fadd %st(0),%st(1)
|
|
1182
|
+
fsubrp %st(0),%st(4)
|
|
1183
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1184
|
+
fadd %st(1),%st(0)
|
|
1185
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1186
|
+
fsubr %st(0),%st(1)
|
|
1187
|
+
faddp %st(0),%st(2)
|
|
1188
|
+
fxch %st(2)
|
|
1189
|
+
fstpl 8(%edx)
|
|
1190
|
+
fxch %st(2)
|
|
1191
|
+
fstpl 16(%edx)
|
|
1192
|
+
fstpl 24(%edx)
|
|
1193
|
+
fstpl 32(%edx)
|
|
1194
|
+
fldl -40(%ecx)
|
|
1195
|
+
fmul %st(0),%st(0)
|
|
1196
|
+
fldl -112(%ecx)
|
|
1197
|
+
fadd %st(0),%st(0)
|
|
1198
|
+
fldl -104(%ecx)
|
|
1199
|
+
fadd %st(0),%st(0)
|
|
1200
|
+
fldl -96(%ecx)
|
|
1201
|
+
fadd %st(0),%st(0)
|
|
1202
|
+
fldl -56(%ecx)
|
|
1203
|
+
fxch %st(4)
|
|
1204
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1205
|
+
fldl -40(%ecx)
|
|
1206
|
+
fmul %st(4),%st(0)
|
|
1207
|
+
fldl -48(%ecx)
|
|
1208
|
+
fmul %st(4),%st(0)
|
|
1209
|
+
faddp %st(0),%st(1)
|
|
1210
|
+
fxch %st(4)
|
|
1211
|
+
fstl 0(%esp)
|
|
1212
|
+
fxch %st(3)
|
|
1213
|
+
fstl 8(%esp)
|
|
1214
|
+
fxch %st(3)
|
|
1215
|
+
fmull -48(%ecx)
|
|
1216
|
+
faddp %st(0),%st(1)
|
|
1217
|
+
fldl -64(%ecx)
|
|
1218
|
+
fxch %st(5)
|
|
1219
|
+
fmul %st(0),%st(3)
|
|
1220
|
+
fxch %st(3)
|
|
1221
|
+
faddp %st(0),%st(1)
|
|
1222
|
+
fxch %st(2)
|
|
1223
|
+
fadd %st(0),%st(0)
|
|
1224
|
+
fldl -56(%ecx)
|
|
1225
|
+
fmul %st(2),%st(0)
|
|
1226
|
+
faddp %st(0),%st(4)
|
|
1227
|
+
fxch %st(1)
|
|
1228
|
+
fstl 16(%esp)
|
|
1229
|
+
fldl -72(%ecx)
|
|
1230
|
+
fxch %st(5)
|
|
1231
|
+
fmul %st(0),%st(1)
|
|
1232
|
+
fxch %st(1)
|
|
1233
|
+
faddp %st(0),%st(3)
|
|
1234
|
+
fadd %st(0),%st(0)
|
|
1235
|
+
fstpl 48(%esp)
|
|
1236
|
+
fldl -88(%ecx)
|
|
1237
|
+
fadd %st(0),%st(0)
|
|
1238
|
+
fstl 24(%esp)
|
|
1239
|
+
fldl -64(%ecx)
|
|
1240
|
+
fmul %st(1),%st(0)
|
|
1241
|
+
faddp %st(0),%st(4)
|
|
1242
|
+
fmul %st(4),%st(0)
|
|
1243
|
+
faddp %st(0),%st(2)
|
|
1244
|
+
fxch %st(3)
|
|
1245
|
+
fadd %st(0),%st(0)
|
|
1246
|
+
fstpl 40(%esp)
|
|
1247
|
+
fldl -80(%ecx)
|
|
1248
|
+
fmul %st(0),%st(0)
|
|
1249
|
+
faddp %st(0),%st(1)
|
|
1250
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1251
|
+
fadd %st(1),%st(0)
|
|
1252
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1253
|
+
fsubr %st(0),%st(1)
|
|
1254
|
+
fldl 8(%esp)
|
|
1255
|
+
fldl -40(%ecx)
|
|
1256
|
+
fmul %st(0),%st(1)
|
|
1257
|
+
fldl 16(%esp)
|
|
1258
|
+
fmul %st(0),%st(1)
|
|
1259
|
+
fldl -48(%ecx)
|
|
1260
|
+
fmul %st(0),%st(1)
|
|
1261
|
+
fxch %st(1)
|
|
1262
|
+
faddp %st(0),%st(3)
|
|
1263
|
+
fldl 24(%esp)
|
|
1264
|
+
fmul %st(0),%st(1)
|
|
1265
|
+
fxch %st(1)
|
|
1266
|
+
faddp %st(0),%st(2)
|
|
1267
|
+
fldl -80(%ecx)
|
|
1268
|
+
fadd %st(0),%st(0)
|
|
1269
|
+
fstl 32(%esp)
|
|
1270
|
+
fmull -72(%ecx)
|
|
1271
|
+
faddp %st(0),%st(6)
|
|
1272
|
+
fxch %st(3)
|
|
1273
|
+
faddp %st(0),%st(5)
|
|
1274
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
1275
|
+
fadd %st(5),%st(0)
|
|
1276
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
1277
|
+
fsubr %st(0),%st(5)
|
|
1278
|
+
fldl -56(%ecx)
|
|
1279
|
+
fmul %st(0),%st(4)
|
|
1280
|
+
fxch %st(4)
|
|
1281
|
+
faddp %st(0),%st(3)
|
|
1282
|
+
fldl 32(%esp)
|
|
1283
|
+
fmul %st(0),%st(4)
|
|
1284
|
+
fxch %st(4)
|
|
1285
|
+
faddp %st(0),%st(2)
|
|
1286
|
+
fldl -64(%ecx)
|
|
1287
|
+
fmul %st(0),%st(4)
|
|
1288
|
+
fxch %st(4)
|
|
1289
|
+
faddp %st(0),%st(3)
|
|
1290
|
+
fxch %st(3)
|
|
1291
|
+
fmull 40(%esp)
|
|
1292
|
+
faddp %st(0),%st(1)
|
|
1293
|
+
fxch %st(3)
|
|
1294
|
+
fstpl -120(%edx)
|
|
1295
|
+
fldl -72(%ecx)
|
|
1296
|
+
fmul %st(0),%st(0)
|
|
1297
|
+
faddp %st(0),%st(1)
|
|
1298
|
+
fxch %st(2)
|
|
1299
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1300
|
+
fxch %st(3)
|
|
1301
|
+
fstpl -112(%edx)
|
|
1302
|
+
faddp %st(0),%st(1)
|
|
1303
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1304
|
+
fldl 24(%esp)
|
|
1305
|
+
fmull -40(%ecx)
|
|
1306
|
+
fldl -112(%ecx)
|
|
1307
|
+
fmul %st(0),%st(0)
|
|
1308
|
+
faddp %st(0),%st(2)
|
|
1309
|
+
fldl 32(%esp)
|
|
1310
|
+
fmull -48(%ecx)
|
|
1311
|
+
faddp %st(0),%st(1)
|
|
1312
|
+
fldl 0(%esp)
|
|
1313
|
+
fmull -104(%ecx)
|
|
1314
|
+
faddp %st(0),%st(3)
|
|
1315
|
+
fldl 40(%esp)
|
|
1316
|
+
fmull -56(%ecx)
|
|
1317
|
+
faddp %st(0),%st(1)
|
|
1318
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
1319
|
+
fadd %st(2),%st(0)
|
|
1320
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
1321
|
+
fsubr %st(0),%st(2)
|
|
1322
|
+
faddp %st(0),%st(3)
|
|
1323
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1324
|
+
fadd %st(3),%st(0)
|
|
1325
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1326
|
+
fsubr %st(0),%st(3)
|
|
1327
|
+
fldl -64(%ecx)
|
|
1328
|
+
fmul %st(0),%st(0)
|
|
1329
|
+
faddp %st(0),%st(2)
|
|
1330
|
+
fxch %st(1)
|
|
1331
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1332
|
+
fldl 0(%esp)
|
|
1333
|
+
fmull -96(%ecx)
|
|
1334
|
+
faddp %st(0),%st(1)
|
|
1335
|
+
fldl -104(%ecx)
|
|
1336
|
+
fmul %st(0),%st(0)
|
|
1337
|
+
faddp %st(0),%st(1)
|
|
1338
|
+
faddp %st(0),%st(1)
|
|
1339
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
1340
|
+
fadd %st(1),%st(0)
|
|
1341
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
1342
|
+
fsubr %st(0),%st(1)
|
|
1343
|
+
fxch %st(2)
|
|
1344
|
+
fstpl 64(%edx)
|
|
1345
|
+
fldl 32(%esp)
|
|
1346
|
+
fmull -40(%ecx)
|
|
1347
|
+
fldl 40(%esp)
|
|
1348
|
+
fmull -48(%ecx)
|
|
1349
|
+
faddp %st(0),%st(1)
|
|
1350
|
+
fldl 48(%esp)
|
|
1351
|
+
fmull -56(%ecx)
|
|
1352
|
+
faddp %st(0),%st(1)
|
|
1353
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1354
|
+
fldl 0(%esp)
|
|
1355
|
+
fmull -88(%ecx)
|
|
1356
|
+
faddp %st(0),%st(1)
|
|
1357
|
+
fldl 8(%esp)
|
|
1358
|
+
fmull -96(%ecx)
|
|
1359
|
+
faddp %st(0),%st(1)
|
|
1360
|
+
faddp %st(0),%st(2)
|
|
1361
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
1362
|
+
fadd %st(2),%st(0)
|
|
1363
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
1364
|
+
fsubr %st(0),%st(2)
|
|
1365
|
+
fxch %st(3)
|
|
1366
|
+
fstpl 72(%edx)
|
|
1367
|
+
fldl 40(%esp)
|
|
1368
|
+
fmull -40(%ecx)
|
|
1369
|
+
fldl 48(%esp)
|
|
1370
|
+
fmull -48(%ecx)
|
|
1371
|
+
faddp %st(0),%st(1)
|
|
1372
|
+
fldl -56(%ecx)
|
|
1373
|
+
fmul %st(0),%st(0)
|
|
1374
|
+
faddp %st(0),%st(1)
|
|
1375
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1376
|
+
fldl 0(%esp)
|
|
1377
|
+
fmull -80(%ecx)
|
|
1378
|
+
faddp %st(0),%st(1)
|
|
1379
|
+
fldl 8(%esp)
|
|
1380
|
+
fmull -88(%ecx)
|
|
1381
|
+
faddp %st(0),%st(1)
|
|
1382
|
+
fldl -96(%ecx)
|
|
1383
|
+
fmul %st(0),%st(0)
|
|
1384
|
+
faddp %st(0),%st(1)
|
|
1385
|
+
faddp %st(0),%st(3)
|
|
1386
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
1387
|
+
fadd %st(3),%st(0)
|
|
1388
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
1389
|
+
fsubr %st(0),%st(3)
|
|
1390
|
+
fxch %st(1)
|
|
1391
|
+
fstpl 80(%edx)
|
|
1392
|
+
fldl 48(%esp)
|
|
1393
|
+
fldl -40(%ecx)
|
|
1394
|
+
fmul %st(0),%st(1)
|
|
1395
|
+
fmul %st(5),%st(0)
|
|
1396
|
+
fxch %st(5)
|
|
1397
|
+
fmull -48(%ecx)
|
|
1398
|
+
faddp %st(0),%st(1)
|
|
1399
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1400
|
+
fldl 0(%esp)
|
|
1401
|
+
fmull -72(%ecx)
|
|
1402
|
+
faddp %st(0),%st(1)
|
|
1403
|
+
fldl 8(%esp)
|
|
1404
|
+
fmull -80(%ecx)
|
|
1405
|
+
faddp %st(0),%st(1)
|
|
1406
|
+
fldl 16(%esp)
|
|
1407
|
+
fmull -88(%ecx)
|
|
1408
|
+
faddp %st(0),%st(1)
|
|
1409
|
+
faddp %st(0),%st(1)
|
|
1410
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
1411
|
+
fadd %st(1),%st(0)
|
|
1412
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
1413
|
+
fsubr %st(0),%st(1)
|
|
1414
|
+
fxch %st(2)
|
|
1415
|
+
fstpl 88(%edx)
|
|
1416
|
+
fldl -48(%ecx)
|
|
1417
|
+
fmul %st(0),%st(0)
|
|
1418
|
+
faddp %st(0),%st(4)
|
|
1419
|
+
fxch %st(3)
|
|
1420
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1421
|
+
fldl 0(%esp)
|
|
1422
|
+
fmull -64(%ecx)
|
|
1423
|
+
faddp %st(0),%st(1)
|
|
1424
|
+
fldl 8(%esp)
|
|
1425
|
+
fmull -72(%ecx)
|
|
1426
|
+
faddp %st(0),%st(1)
|
|
1427
|
+
fldl 16(%esp)
|
|
1428
|
+
fmull -80(%ecx)
|
|
1429
|
+
faddp %st(0),%st(1)
|
|
1430
|
+
fldl -88(%ecx)
|
|
1431
|
+
fmul %st(0),%st(0)
|
|
1432
|
+
faddp %st(0),%st(1)
|
|
1433
|
+
faddp %st(0),%st(1)
|
|
1434
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
1435
|
+
fadd %st(1),%st(0)
|
|
1436
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
1437
|
+
fsubr %st(0),%st(1)
|
|
1438
|
+
fldl -48(%ecx)
|
|
1439
|
+
fadd %st(0),%st(0)
|
|
1440
|
+
fmull -40(%ecx)
|
|
1441
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1442
|
+
fldl 0(%esp)
|
|
1443
|
+
fmull -56(%ecx)
|
|
1444
|
+
faddp %st(0),%st(1)
|
|
1445
|
+
fldl 8(%esp)
|
|
1446
|
+
fmull -64(%ecx)
|
|
1447
|
+
faddp %st(0),%st(1)
|
|
1448
|
+
fldl 16(%esp)
|
|
1449
|
+
fmull -72(%ecx)
|
|
1450
|
+
faddp %st(0),%st(1)
|
|
1451
|
+
fldl 24(%esp)
|
|
1452
|
+
fmull -80(%ecx)
|
|
1453
|
+
faddp %st(0),%st(1)
|
|
1454
|
+
faddp %st(0),%st(1)
|
|
1455
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
1456
|
+
fadd %st(1),%st(0)
|
|
1457
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
1458
|
+
fsubr %st(0),%st(1)
|
|
1459
|
+
fldl -120(%edx)
|
|
1460
|
+
faddp %st(0),%st(1)
|
|
1461
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1462
|
+
fadd %st(1),%st(0)
|
|
1463
|
+
fldl -112(%edx)
|
|
1464
|
+
fxch %st(1)
|
|
1465
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1466
|
+
fsubr %st(0),%st(2)
|
|
1467
|
+
faddp %st(0),%st(1)
|
|
1468
|
+
fxch %st(4)
|
|
1469
|
+
fstpl 96(%edx)
|
|
1470
|
+
fxch %st(4)
|
|
1471
|
+
fstpl 104(%edx)
|
|
1472
|
+
fxch %st(1)
|
|
1473
|
+
fstpl 112(%edx)
|
|
1474
|
+
fstpl 120(%edx)
|
|
1475
|
+
fxch %st(1)
|
|
1476
|
+
fstpl -128(%ecx)
|
|
1477
|
+
fstpl -120(%ecx)
|
|
1478
|
+
fldl 40(%ecx)
|
|
1479
|
+
fmul %st(0),%st(0)
|
|
1480
|
+
fldl -32(%ecx)
|
|
1481
|
+
fadd %st(0),%st(0)
|
|
1482
|
+
fldl -24(%ecx)
|
|
1483
|
+
fadd %st(0),%st(0)
|
|
1484
|
+
fldl -16(%ecx)
|
|
1485
|
+
fadd %st(0),%st(0)
|
|
1486
|
+
fldl 24(%ecx)
|
|
1487
|
+
fxch %st(4)
|
|
1488
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1489
|
+
fldl 40(%ecx)
|
|
1490
|
+
fmul %st(4),%st(0)
|
|
1491
|
+
fldl 32(%ecx)
|
|
1492
|
+
fmul %st(4),%st(0)
|
|
1493
|
+
faddp %st(0),%st(1)
|
|
1494
|
+
fxch %st(4)
|
|
1495
|
+
fstl 0(%esp)
|
|
1496
|
+
fxch %st(3)
|
|
1497
|
+
fstl 8(%esp)
|
|
1498
|
+
fxch %st(3)
|
|
1499
|
+
fmull 32(%ecx)
|
|
1500
|
+
faddp %st(0),%st(1)
|
|
1501
|
+
fldl 16(%ecx)
|
|
1502
|
+
fxch %st(5)
|
|
1503
|
+
fmul %st(0),%st(3)
|
|
1504
|
+
fxch %st(3)
|
|
1505
|
+
faddp %st(0),%st(1)
|
|
1506
|
+
fxch %st(2)
|
|
1507
|
+
fadd %st(0),%st(0)
|
|
1508
|
+
fldl 24(%ecx)
|
|
1509
|
+
fmul %st(2),%st(0)
|
|
1510
|
+
faddp %st(0),%st(4)
|
|
1511
|
+
fxch %st(1)
|
|
1512
|
+
fstl 16(%esp)
|
|
1513
|
+
fldl 8(%ecx)
|
|
1514
|
+
fxch %st(5)
|
|
1515
|
+
fmul %st(0),%st(1)
|
|
1516
|
+
fxch %st(1)
|
|
1517
|
+
faddp %st(0),%st(3)
|
|
1518
|
+
fadd %st(0),%st(0)
|
|
1519
|
+
fstpl 48(%esp)
|
|
1520
|
+
fldl -8(%ecx)
|
|
1521
|
+
fadd %st(0),%st(0)
|
|
1522
|
+
fstl 24(%esp)
|
|
1523
|
+
fldl 16(%ecx)
|
|
1524
|
+
fmul %st(1),%st(0)
|
|
1525
|
+
faddp %st(0),%st(4)
|
|
1526
|
+
fmul %st(4),%st(0)
|
|
1527
|
+
faddp %st(0),%st(2)
|
|
1528
|
+
fxch %st(3)
|
|
1529
|
+
fadd %st(0),%st(0)
|
|
1530
|
+
fstpl 40(%esp)
|
|
1531
|
+
fldl 0(%ecx)
|
|
1532
|
+
fmul %st(0),%st(0)
|
|
1533
|
+
faddp %st(0),%st(1)
|
|
1534
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1535
|
+
fadd %st(1),%st(0)
|
|
1536
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1537
|
+
fsubr %st(0),%st(1)
|
|
1538
|
+
fldl 8(%esp)
|
|
1539
|
+
fldl 40(%ecx)
|
|
1540
|
+
fmul %st(0),%st(1)
|
|
1541
|
+
fldl 16(%esp)
|
|
1542
|
+
fmul %st(0),%st(1)
|
|
1543
|
+
fldl 32(%ecx)
|
|
1544
|
+
fmul %st(0),%st(1)
|
|
1545
|
+
fxch %st(1)
|
|
1546
|
+
faddp %st(0),%st(3)
|
|
1547
|
+
fldl 24(%esp)
|
|
1548
|
+
fmul %st(0),%st(1)
|
|
1549
|
+
fxch %st(1)
|
|
1550
|
+
faddp %st(0),%st(2)
|
|
1551
|
+
fldl 0(%ecx)
|
|
1552
|
+
fadd %st(0),%st(0)
|
|
1553
|
+
fstl 32(%esp)
|
|
1554
|
+
fmull 8(%ecx)
|
|
1555
|
+
faddp %st(0),%st(6)
|
|
1556
|
+
fxch %st(3)
|
|
1557
|
+
faddp %st(0),%st(5)
|
|
1558
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
1559
|
+
fadd %st(5),%st(0)
|
|
1560
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
1561
|
+
fsubr %st(0),%st(5)
|
|
1562
|
+
fldl 24(%ecx)
|
|
1563
|
+
fmul %st(0),%st(4)
|
|
1564
|
+
fxch %st(4)
|
|
1565
|
+
faddp %st(0),%st(3)
|
|
1566
|
+
fldl 32(%esp)
|
|
1567
|
+
fmul %st(0),%st(4)
|
|
1568
|
+
fxch %st(4)
|
|
1569
|
+
faddp %st(0),%st(2)
|
|
1570
|
+
fldl 16(%ecx)
|
|
1571
|
+
fmul %st(0),%st(4)
|
|
1572
|
+
fxch %st(4)
|
|
1573
|
+
faddp %st(0),%st(3)
|
|
1574
|
+
fxch %st(3)
|
|
1575
|
+
fmull 40(%esp)
|
|
1576
|
+
faddp %st(0),%st(1)
|
|
1577
|
+
fxch %st(3)
|
|
1578
|
+
fstpl -120(%edx)
|
|
1579
|
+
fldl 8(%ecx)
|
|
1580
|
+
fmul %st(0),%st(0)
|
|
1581
|
+
faddp %st(0),%st(1)
|
|
1582
|
+
fxch %st(2)
|
|
1583
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1584
|
+
fxch %st(3)
|
|
1585
|
+
fstpl -112(%edx)
|
|
1586
|
+
faddp %st(0),%st(1)
|
|
1587
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1588
|
+
fldl 24(%esp)
|
|
1589
|
+
fmull 40(%ecx)
|
|
1590
|
+
fldl -32(%ecx)
|
|
1591
|
+
fmul %st(0),%st(0)
|
|
1592
|
+
faddp %st(0),%st(2)
|
|
1593
|
+
fldl 32(%esp)
|
|
1594
|
+
fmull 32(%ecx)
|
|
1595
|
+
faddp %st(0),%st(1)
|
|
1596
|
+
fldl 0(%esp)
|
|
1597
|
+
fmull -24(%ecx)
|
|
1598
|
+
faddp %st(0),%st(3)
|
|
1599
|
+
fldl 40(%esp)
|
|
1600
|
+
fmull 24(%ecx)
|
|
1601
|
+
faddp %st(0),%st(1)
|
|
1602
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
1603
|
+
fadd %st(2),%st(0)
|
|
1604
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
1605
|
+
fsubr %st(0),%st(2)
|
|
1606
|
+
faddp %st(0),%st(3)
|
|
1607
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1608
|
+
fadd %st(3),%st(0)
|
|
1609
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1610
|
+
fsubr %st(0),%st(3)
|
|
1611
|
+
fldl 16(%ecx)
|
|
1612
|
+
fmul %st(0),%st(0)
|
|
1613
|
+
faddp %st(0),%st(2)
|
|
1614
|
+
fxch %st(1)
|
|
1615
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1616
|
+
fldl 0(%esp)
|
|
1617
|
+
fmull -16(%ecx)
|
|
1618
|
+
faddp %st(0),%st(1)
|
|
1619
|
+
fldl -24(%ecx)
|
|
1620
|
+
fmul %st(0),%st(0)
|
|
1621
|
+
faddp %st(0),%st(1)
|
|
1622
|
+
faddp %st(0),%st(1)
|
|
1623
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
1624
|
+
fadd %st(1),%st(0)
|
|
1625
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
1626
|
+
fsubr %st(0),%st(1)
|
|
1627
|
+
fxch %st(2)
|
|
1628
|
+
fstpl -112(%ecx)
|
|
1629
|
+
fldl 32(%esp)
|
|
1630
|
+
fmull 40(%ecx)
|
|
1631
|
+
fldl 40(%esp)
|
|
1632
|
+
fmull 32(%ecx)
|
|
1633
|
+
faddp %st(0),%st(1)
|
|
1634
|
+
fldl 48(%esp)
|
|
1635
|
+
fmull 24(%ecx)
|
|
1636
|
+
faddp %st(0),%st(1)
|
|
1637
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1638
|
+
fldl 0(%esp)
|
|
1639
|
+
fmull -8(%ecx)
|
|
1640
|
+
faddp %st(0),%st(1)
|
|
1641
|
+
fldl 8(%esp)
|
|
1642
|
+
fmull -16(%ecx)
|
|
1643
|
+
faddp %st(0),%st(1)
|
|
1644
|
+
faddp %st(0),%st(2)
|
|
1645
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
1646
|
+
fadd %st(2),%st(0)
|
|
1647
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
1648
|
+
fsubr %st(0),%st(2)
|
|
1649
|
+
fxch %st(3)
|
|
1650
|
+
fstpl -104(%ecx)
|
|
1651
|
+
fldl 40(%esp)
|
|
1652
|
+
fmull 40(%ecx)
|
|
1653
|
+
fldl 48(%esp)
|
|
1654
|
+
fmull 32(%ecx)
|
|
1655
|
+
faddp %st(0),%st(1)
|
|
1656
|
+
fldl 24(%ecx)
|
|
1657
|
+
fmul %st(0),%st(0)
|
|
1658
|
+
faddp %st(0),%st(1)
|
|
1659
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1660
|
+
fldl 0(%esp)
|
|
1661
|
+
fmull 0(%ecx)
|
|
1662
|
+
faddp %st(0),%st(1)
|
|
1663
|
+
fldl 8(%esp)
|
|
1664
|
+
fmull -8(%ecx)
|
|
1665
|
+
faddp %st(0),%st(1)
|
|
1666
|
+
fldl -16(%ecx)
|
|
1667
|
+
fmul %st(0),%st(0)
|
|
1668
|
+
faddp %st(0),%st(1)
|
|
1669
|
+
faddp %st(0),%st(3)
|
|
1670
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
1671
|
+
fadd %st(3),%st(0)
|
|
1672
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
1673
|
+
fsubr %st(0),%st(3)
|
|
1674
|
+
fxch %st(1)
|
|
1675
|
+
fstpl -96(%ecx)
|
|
1676
|
+
fldl 48(%esp)
|
|
1677
|
+
fldl 40(%ecx)
|
|
1678
|
+
fmul %st(0),%st(1)
|
|
1679
|
+
fmul %st(5),%st(0)
|
|
1680
|
+
fxch %st(5)
|
|
1681
|
+
fmull 32(%ecx)
|
|
1682
|
+
faddp %st(0),%st(1)
|
|
1683
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1684
|
+
fldl 0(%esp)
|
|
1685
|
+
fmull 8(%ecx)
|
|
1686
|
+
faddp %st(0),%st(1)
|
|
1687
|
+
fldl 8(%esp)
|
|
1688
|
+
fmull 0(%ecx)
|
|
1689
|
+
faddp %st(0),%st(1)
|
|
1690
|
+
fldl 16(%esp)
|
|
1691
|
+
fmull -8(%ecx)
|
|
1692
|
+
faddp %st(0),%st(1)
|
|
1693
|
+
faddp %st(0),%st(1)
|
|
1694
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
1695
|
+
fadd %st(1),%st(0)
|
|
1696
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
1697
|
+
fsubr %st(0),%st(1)
|
|
1698
|
+
fxch %st(2)
|
|
1699
|
+
fstpl -88(%ecx)
|
|
1700
|
+
fldl 32(%ecx)
|
|
1701
|
+
fmul %st(0),%st(0)
|
|
1702
|
+
faddp %st(0),%st(4)
|
|
1703
|
+
fxch %st(3)
|
|
1704
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1705
|
+
fldl 0(%esp)
|
|
1706
|
+
fmull 16(%ecx)
|
|
1707
|
+
faddp %st(0),%st(1)
|
|
1708
|
+
fldl 8(%esp)
|
|
1709
|
+
fmull 8(%ecx)
|
|
1710
|
+
faddp %st(0),%st(1)
|
|
1711
|
+
fldl 16(%esp)
|
|
1712
|
+
fmull 0(%ecx)
|
|
1713
|
+
faddp %st(0),%st(1)
|
|
1714
|
+
fldl -8(%ecx)
|
|
1715
|
+
fmul %st(0),%st(0)
|
|
1716
|
+
faddp %st(0),%st(1)
|
|
1717
|
+
faddp %st(0),%st(1)
|
|
1718
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
1719
|
+
fadd %st(1),%st(0)
|
|
1720
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
1721
|
+
fsubr %st(0),%st(1)
|
|
1722
|
+
fldl 32(%ecx)
|
|
1723
|
+
fadd %st(0),%st(0)
|
|
1724
|
+
fmull 40(%ecx)
|
|
1725
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1726
|
+
fldl 0(%esp)
|
|
1727
|
+
fmull 24(%ecx)
|
|
1728
|
+
faddp %st(0),%st(1)
|
|
1729
|
+
fldl 8(%esp)
|
|
1730
|
+
fmull 16(%ecx)
|
|
1731
|
+
faddp %st(0),%st(1)
|
|
1732
|
+
fldl 16(%esp)
|
|
1733
|
+
fmull 8(%ecx)
|
|
1734
|
+
faddp %st(0),%st(1)
|
|
1735
|
+
fldl 24(%esp)
|
|
1736
|
+
fmull 0(%ecx)
|
|
1737
|
+
faddp %st(0),%st(1)
|
|
1738
|
+
faddp %st(0),%st(1)
|
|
1739
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
1740
|
+
fadd %st(1),%st(0)
|
|
1741
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
1742
|
+
fsubr %st(0),%st(1)
|
|
1743
|
+
fldl -120(%edx)
|
|
1744
|
+
faddp %st(0),%st(1)
|
|
1745
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1746
|
+
fadd %st(1),%st(0)
|
|
1747
|
+
fldl -112(%edx)
|
|
1748
|
+
fxch %st(1)
|
|
1749
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1750
|
+
fsubr %st(0),%st(2)
|
|
1751
|
+
faddp %st(0),%st(1)
|
|
1752
|
+
fxch %st(4)
|
|
1753
|
+
fstpl -80(%ecx)
|
|
1754
|
+
fxch %st(4)
|
|
1755
|
+
fstpl -72(%ecx)
|
|
1756
|
+
fxch %st(1)
|
|
1757
|
+
fstpl -64(%ecx)
|
|
1758
|
+
fstpl -56(%ecx)
|
|
1759
|
+
fxch %st(1)
|
|
1760
|
+
fstpl -48(%ecx)
|
|
1761
|
+
fstpl -40(%ecx)
|
|
1762
|
+
fldl -40(%edx)
|
|
1763
|
+
fldl 48(%ecx)
|
|
1764
|
+
fadd %st(0),%st(1)
|
|
1765
|
+
fsubl -40(%edx)
|
|
1766
|
+
fxch %st(1)
|
|
1767
|
+
fstpl -120(%edx)
|
|
1768
|
+
fstpl -40(%edx)
|
|
1769
|
+
fldl -32(%edx)
|
|
1770
|
+
fldl 56(%ecx)
|
|
1771
|
+
fadd %st(0),%st(1)
|
|
1772
|
+
fsubl -32(%edx)
|
|
1773
|
+
fxch %st(1)
|
|
1774
|
+
fstpl -112(%edx)
|
|
1775
|
+
fstpl -32(%edx)
|
|
1776
|
+
fldl -104(%edx)
|
|
1777
|
+
fldl -24(%edx)
|
|
1778
|
+
fadd %st(0),%st(1)
|
|
1779
|
+
fsubl -104(%edx)
|
|
1780
|
+
fxch %st(1)
|
|
1781
|
+
fstpl -104(%edx)
|
|
1782
|
+
fstpl -24(%edx)
|
|
1783
|
+
fldl -16(%edx)
|
|
1784
|
+
fldl -96(%edx)
|
|
1785
|
+
fadd %st(0),%st(1)
|
|
1786
|
+
fsubl -16(%edx)
|
|
1787
|
+
fxch %st(1)
|
|
1788
|
+
fstpl -96(%edx)
|
|
1789
|
+
fstpl -16(%edx)
|
|
1790
|
+
fldl -8(%edx)
|
|
1791
|
+
fldl -88(%edx)
|
|
1792
|
+
fadd %st(0),%st(1)
|
|
1793
|
+
fsubl -8(%edx)
|
|
1794
|
+
fxch %st(1)
|
|
1795
|
+
fstpl -88(%edx)
|
|
1796
|
+
fstpl -8(%edx)
|
|
1797
|
+
fldl 0(%edx)
|
|
1798
|
+
fldl -80(%edx)
|
|
1799
|
+
fadd %st(0),%st(1)
|
|
1800
|
+
fsubl 0(%edx)
|
|
1801
|
+
fxch %st(1)
|
|
1802
|
+
fstpl -80(%edx)
|
|
1803
|
+
fstpl 0(%edx)
|
|
1804
|
+
fldl 8(%edx)
|
|
1805
|
+
fldl -72(%edx)
|
|
1806
|
+
fadd %st(0),%st(1)
|
|
1807
|
+
fsubl 8(%edx)
|
|
1808
|
+
fxch %st(1)
|
|
1809
|
+
fstpl -72(%edx)
|
|
1810
|
+
fstpl 8(%edx)
|
|
1811
|
+
fldl 16(%edx)
|
|
1812
|
+
fldl -64(%edx)
|
|
1813
|
+
fadd %st(0),%st(1)
|
|
1814
|
+
fsubl 16(%edx)
|
|
1815
|
+
fxch %st(1)
|
|
1816
|
+
fstpl -64(%edx)
|
|
1817
|
+
fstpl 16(%edx)
|
|
1818
|
+
fldl 24(%edx)
|
|
1819
|
+
fldl -56(%edx)
|
|
1820
|
+
fadd %st(0),%st(1)
|
|
1821
|
+
fsubl 24(%edx)
|
|
1822
|
+
fxch %st(1)
|
|
1823
|
+
fstpl -56(%edx)
|
|
1824
|
+
fstpl 24(%edx)
|
|
1825
|
+
fldl 32(%edx)
|
|
1826
|
+
fldl -48(%edx)
|
|
1827
|
+
fadd %st(0),%st(1)
|
|
1828
|
+
fsubl 32(%edx)
|
|
1829
|
+
fxch %st(1)
|
|
1830
|
+
fstpl -48(%edx)
|
|
1831
|
+
fstpl 32(%edx)
|
|
1832
|
+
fldl 64(%edx)
|
|
1833
|
+
fsubl -112(%ecx)
|
|
1834
|
+
fstpl -32(%ecx)
|
|
1835
|
+
fldl 72(%edx)
|
|
1836
|
+
fsubl -104(%ecx)
|
|
1837
|
+
fstpl -24(%ecx)
|
|
1838
|
+
fldl 80(%edx)
|
|
1839
|
+
fsubl -96(%ecx)
|
|
1840
|
+
fstpl -16(%ecx)
|
|
1841
|
+
fldl 88(%edx)
|
|
1842
|
+
fsubl -88(%ecx)
|
|
1843
|
+
fstpl -8(%ecx)
|
|
1844
|
+
fldl 96(%edx)
|
|
1845
|
+
fsubl -80(%ecx)
|
|
1846
|
+
fstpl 0(%ecx)
|
|
1847
|
+
fldl 104(%edx)
|
|
1848
|
+
fsubl -72(%ecx)
|
|
1849
|
+
fstpl 8(%ecx)
|
|
1850
|
+
fldl 112(%edx)
|
|
1851
|
+
fsubl -64(%ecx)
|
|
1852
|
+
fstpl 16(%ecx)
|
|
1853
|
+
fldl 120(%edx)
|
|
1854
|
+
fsubl -56(%ecx)
|
|
1855
|
+
fstpl 24(%ecx)
|
|
1856
|
+
fldl -128(%ecx)
|
|
1857
|
+
fsubl -48(%ecx)
|
|
1858
|
+
fstpl 32(%ecx)
|
|
1859
|
+
fldl -120(%ecx)
|
|
1860
|
+
fsubl -40(%ecx)
|
|
1861
|
+
fstpl 40(%ecx)
|
|
1862
|
+
fldl -48(%edx)
|
|
1863
|
+
fmul %st(0),%st(0)
|
|
1864
|
+
fldl -120(%edx)
|
|
1865
|
+
fadd %st(0),%st(0)
|
|
1866
|
+
fldl -112(%edx)
|
|
1867
|
+
fadd %st(0),%st(0)
|
|
1868
|
+
fldl -104(%edx)
|
|
1869
|
+
fadd %st(0),%st(0)
|
|
1870
|
+
fldl -64(%edx)
|
|
1871
|
+
fxch %st(4)
|
|
1872
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1873
|
+
fldl -48(%edx)
|
|
1874
|
+
fmul %st(4),%st(0)
|
|
1875
|
+
fldl -56(%edx)
|
|
1876
|
+
fmul %st(4),%st(0)
|
|
1877
|
+
faddp %st(0),%st(1)
|
|
1878
|
+
fxch %st(4)
|
|
1879
|
+
fstl 0(%esp)
|
|
1880
|
+
fxch %st(3)
|
|
1881
|
+
fstl 8(%esp)
|
|
1882
|
+
fxch %st(3)
|
|
1883
|
+
fmull -56(%edx)
|
|
1884
|
+
faddp %st(0),%st(1)
|
|
1885
|
+
fldl -72(%edx)
|
|
1886
|
+
fxch %st(5)
|
|
1887
|
+
fmul %st(0),%st(3)
|
|
1888
|
+
fxch %st(3)
|
|
1889
|
+
faddp %st(0),%st(1)
|
|
1890
|
+
fxch %st(2)
|
|
1891
|
+
fadd %st(0),%st(0)
|
|
1892
|
+
fldl -64(%edx)
|
|
1893
|
+
fmul %st(2),%st(0)
|
|
1894
|
+
faddp %st(0),%st(4)
|
|
1895
|
+
fxch %st(1)
|
|
1896
|
+
fstl 16(%esp)
|
|
1897
|
+
fldl -80(%edx)
|
|
1898
|
+
fxch %st(5)
|
|
1899
|
+
fmul %st(0),%st(1)
|
|
1900
|
+
fxch %st(1)
|
|
1901
|
+
faddp %st(0),%st(3)
|
|
1902
|
+
fadd %st(0),%st(0)
|
|
1903
|
+
fstpl 48(%esp)
|
|
1904
|
+
fldl -96(%edx)
|
|
1905
|
+
fadd %st(0),%st(0)
|
|
1906
|
+
fstl 24(%esp)
|
|
1907
|
+
fldl -72(%edx)
|
|
1908
|
+
fmul %st(1),%st(0)
|
|
1909
|
+
faddp %st(0),%st(4)
|
|
1910
|
+
fmul %st(4),%st(0)
|
|
1911
|
+
faddp %st(0),%st(2)
|
|
1912
|
+
fxch %st(3)
|
|
1913
|
+
fadd %st(0),%st(0)
|
|
1914
|
+
fstpl 40(%esp)
|
|
1915
|
+
fldl -88(%edx)
|
|
1916
|
+
fmul %st(0),%st(0)
|
|
1917
|
+
faddp %st(0),%st(1)
|
|
1918
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1919
|
+
fadd %st(1),%st(0)
|
|
1920
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
1921
|
+
fsubr %st(0),%st(1)
|
|
1922
|
+
fldl 8(%esp)
|
|
1923
|
+
fldl -48(%edx)
|
|
1924
|
+
fmul %st(0),%st(1)
|
|
1925
|
+
fldl 16(%esp)
|
|
1926
|
+
fmul %st(0),%st(1)
|
|
1927
|
+
fldl -56(%edx)
|
|
1928
|
+
fmul %st(0),%st(1)
|
|
1929
|
+
fxch %st(1)
|
|
1930
|
+
faddp %st(0),%st(3)
|
|
1931
|
+
fldl 24(%esp)
|
|
1932
|
+
fmul %st(0),%st(1)
|
|
1933
|
+
fxch %st(1)
|
|
1934
|
+
faddp %st(0),%st(2)
|
|
1935
|
+
fldl -88(%edx)
|
|
1936
|
+
fadd %st(0),%st(0)
|
|
1937
|
+
fstl 32(%esp)
|
|
1938
|
+
fmull -80(%edx)
|
|
1939
|
+
faddp %st(0),%st(6)
|
|
1940
|
+
fxch %st(3)
|
|
1941
|
+
faddp %st(0),%st(5)
|
|
1942
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
1943
|
+
fadd %st(5),%st(0)
|
|
1944
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
1945
|
+
fsubr %st(0),%st(5)
|
|
1946
|
+
fldl -64(%edx)
|
|
1947
|
+
fmul %st(0),%st(4)
|
|
1948
|
+
fxch %st(4)
|
|
1949
|
+
faddp %st(0),%st(3)
|
|
1950
|
+
fldl 32(%esp)
|
|
1951
|
+
fmul %st(0),%st(4)
|
|
1952
|
+
fxch %st(4)
|
|
1953
|
+
faddp %st(0),%st(2)
|
|
1954
|
+
fldl -72(%edx)
|
|
1955
|
+
fmul %st(0),%st(4)
|
|
1956
|
+
fxch %st(4)
|
|
1957
|
+
faddp %st(0),%st(3)
|
|
1958
|
+
fxch %st(3)
|
|
1959
|
+
fmull 40(%esp)
|
|
1960
|
+
faddp %st(0),%st(1)
|
|
1961
|
+
fxch %st(3)
|
|
1962
|
+
fstpl 48(%edx)
|
|
1963
|
+
fldl -80(%edx)
|
|
1964
|
+
fmul %st(0),%st(0)
|
|
1965
|
+
faddp %st(0),%st(1)
|
|
1966
|
+
fxch %st(2)
|
|
1967
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1968
|
+
fxch %st(3)
|
|
1969
|
+
fstpl 56(%edx)
|
|
1970
|
+
faddp %st(0),%st(1)
|
|
1971
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
1972
|
+
fldl 24(%esp)
|
|
1973
|
+
fmull -48(%edx)
|
|
1974
|
+
fldl -120(%edx)
|
|
1975
|
+
fmul %st(0),%st(0)
|
|
1976
|
+
faddp %st(0),%st(2)
|
|
1977
|
+
fldl 32(%esp)
|
|
1978
|
+
fmull -56(%edx)
|
|
1979
|
+
faddp %st(0),%st(1)
|
|
1980
|
+
fldl 0(%esp)
|
|
1981
|
+
fmull -112(%edx)
|
|
1982
|
+
faddp %st(0),%st(3)
|
|
1983
|
+
fldl 40(%esp)
|
|
1984
|
+
fmull -64(%edx)
|
|
1985
|
+
faddp %st(0),%st(1)
|
|
1986
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
1987
|
+
fadd %st(2),%st(0)
|
|
1988
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
1989
|
+
fsubr %st(0),%st(2)
|
|
1990
|
+
faddp %st(0),%st(3)
|
|
1991
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1992
|
+
fadd %st(3),%st(0)
|
|
1993
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
1994
|
+
fsubr %st(0),%st(3)
|
|
1995
|
+
fldl -72(%edx)
|
|
1996
|
+
fmul %st(0),%st(0)
|
|
1997
|
+
faddp %st(0),%st(2)
|
|
1998
|
+
fxch %st(1)
|
|
1999
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2000
|
+
fldl 0(%esp)
|
|
2001
|
+
fmull -104(%edx)
|
|
2002
|
+
faddp %st(0),%st(1)
|
|
2003
|
+
fldl -112(%edx)
|
|
2004
|
+
fmul %st(0),%st(0)
|
|
2005
|
+
faddp %st(0),%st(1)
|
|
2006
|
+
faddp %st(0),%st(1)
|
|
2007
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2008
|
+
fadd %st(1),%st(0)
|
|
2009
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2010
|
+
fsubr %st(0),%st(1)
|
|
2011
|
+
fxch %st(2)
|
|
2012
|
+
fstpl -120(%edx)
|
|
2013
|
+
fldl 32(%esp)
|
|
2014
|
+
fmull -48(%edx)
|
|
2015
|
+
fldl 40(%esp)
|
|
2016
|
+
fmull -56(%edx)
|
|
2017
|
+
faddp %st(0),%st(1)
|
|
2018
|
+
fldl 48(%esp)
|
|
2019
|
+
fmull -64(%edx)
|
|
2020
|
+
faddp %st(0),%st(1)
|
|
2021
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2022
|
+
fldl 0(%esp)
|
|
2023
|
+
fmull -96(%edx)
|
|
2024
|
+
faddp %st(0),%st(1)
|
|
2025
|
+
fldl 8(%esp)
|
|
2026
|
+
fmull -104(%edx)
|
|
2027
|
+
faddp %st(0),%st(1)
|
|
2028
|
+
faddp %st(0),%st(2)
|
|
2029
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2030
|
+
fadd %st(2),%st(0)
|
|
2031
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2032
|
+
fsubr %st(0),%st(2)
|
|
2033
|
+
fxch %st(3)
|
|
2034
|
+
fstpl -112(%edx)
|
|
2035
|
+
fldl 40(%esp)
|
|
2036
|
+
fmull -48(%edx)
|
|
2037
|
+
fldl 48(%esp)
|
|
2038
|
+
fmull -56(%edx)
|
|
2039
|
+
faddp %st(0),%st(1)
|
|
2040
|
+
fldl -64(%edx)
|
|
2041
|
+
fmul %st(0),%st(0)
|
|
2042
|
+
faddp %st(0),%st(1)
|
|
2043
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2044
|
+
fldl 0(%esp)
|
|
2045
|
+
fmull -88(%edx)
|
|
2046
|
+
faddp %st(0),%st(1)
|
|
2047
|
+
fldl 8(%esp)
|
|
2048
|
+
fmull -96(%edx)
|
|
2049
|
+
faddp %st(0),%st(1)
|
|
2050
|
+
fldl -104(%edx)
|
|
2051
|
+
fmul %st(0),%st(0)
|
|
2052
|
+
faddp %st(0),%st(1)
|
|
2053
|
+
faddp %st(0),%st(3)
|
|
2054
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2055
|
+
fadd %st(3),%st(0)
|
|
2056
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2057
|
+
fsubr %st(0),%st(3)
|
|
2058
|
+
fxch %st(1)
|
|
2059
|
+
fstpl -104(%edx)
|
|
2060
|
+
fldl 48(%esp)
|
|
2061
|
+
fldl -48(%edx)
|
|
2062
|
+
fmul %st(0),%st(1)
|
|
2063
|
+
fmul %st(5),%st(0)
|
|
2064
|
+
fxch %st(5)
|
|
2065
|
+
fmull -56(%edx)
|
|
2066
|
+
faddp %st(0),%st(1)
|
|
2067
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2068
|
+
fldl 0(%esp)
|
|
2069
|
+
fmull -80(%edx)
|
|
2070
|
+
faddp %st(0),%st(1)
|
|
2071
|
+
fldl 8(%esp)
|
|
2072
|
+
fmull -88(%edx)
|
|
2073
|
+
faddp %st(0),%st(1)
|
|
2074
|
+
fldl 16(%esp)
|
|
2075
|
+
fmull -96(%edx)
|
|
2076
|
+
faddp %st(0),%st(1)
|
|
2077
|
+
faddp %st(0),%st(1)
|
|
2078
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2079
|
+
fadd %st(1),%st(0)
|
|
2080
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2081
|
+
fsubr %st(0),%st(1)
|
|
2082
|
+
fxch %st(2)
|
|
2083
|
+
fstpl 40(%edx)
|
|
2084
|
+
fldl -56(%edx)
|
|
2085
|
+
fmul %st(0),%st(0)
|
|
2086
|
+
faddp %st(0),%st(4)
|
|
2087
|
+
fxch %st(3)
|
|
2088
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2089
|
+
fldl 0(%esp)
|
|
2090
|
+
fmull -72(%edx)
|
|
2091
|
+
faddp %st(0),%st(1)
|
|
2092
|
+
fldl 8(%esp)
|
|
2093
|
+
fmull -80(%edx)
|
|
2094
|
+
faddp %st(0),%st(1)
|
|
2095
|
+
fldl 16(%esp)
|
|
2096
|
+
fmull -88(%edx)
|
|
2097
|
+
faddp %st(0),%st(1)
|
|
2098
|
+
fldl -96(%edx)
|
|
2099
|
+
fmul %st(0),%st(0)
|
|
2100
|
+
faddp %st(0),%st(1)
|
|
2101
|
+
faddp %st(0),%st(1)
|
|
2102
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2103
|
+
fadd %st(1),%st(0)
|
|
2104
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2105
|
+
fsubr %st(0),%st(1)
|
|
2106
|
+
fldl -56(%edx)
|
|
2107
|
+
fadd %st(0),%st(0)
|
|
2108
|
+
fmull -48(%edx)
|
|
2109
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2110
|
+
fldl 0(%esp)
|
|
2111
|
+
fmull -64(%edx)
|
|
2112
|
+
faddp %st(0),%st(1)
|
|
2113
|
+
fldl 8(%esp)
|
|
2114
|
+
fmull -72(%edx)
|
|
2115
|
+
faddp %st(0),%st(1)
|
|
2116
|
+
fldl 16(%esp)
|
|
2117
|
+
fmull -80(%edx)
|
|
2118
|
+
faddp %st(0),%st(1)
|
|
2119
|
+
fldl 24(%esp)
|
|
2120
|
+
fmull -88(%edx)
|
|
2121
|
+
faddp %st(0),%st(1)
|
|
2122
|
+
faddp %st(0),%st(1)
|
|
2123
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2124
|
+
fadd %st(1),%st(0)
|
|
2125
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2126
|
+
fsubr %st(0),%st(1)
|
|
2127
|
+
fldl 48(%edx)
|
|
2128
|
+
faddp %st(0),%st(1)
|
|
2129
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2130
|
+
fadd %st(1),%st(0)
|
|
2131
|
+
fldl 56(%edx)
|
|
2132
|
+
fxch %st(1)
|
|
2133
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2134
|
+
fsubr %st(0),%st(2)
|
|
2135
|
+
faddp %st(0),%st(1)
|
|
2136
|
+
fxch %st(4)
|
|
2137
|
+
fstpl -96(%edx)
|
|
2138
|
+
fxch %st(4)
|
|
2139
|
+
fstpl -88(%edx)
|
|
2140
|
+
fxch %st(1)
|
|
2141
|
+
fstpl -80(%edx)
|
|
2142
|
+
fstpl -72(%edx)
|
|
2143
|
+
fxch %st(1)
|
|
2144
|
+
fstpl -64(%edx)
|
|
2145
|
+
fstpl -56(%edx)
|
|
2146
|
+
fldl 32(%edx)
|
|
2147
|
+
fmul %st(0),%st(0)
|
|
2148
|
+
fldl -40(%edx)
|
|
2149
|
+
fadd %st(0),%st(0)
|
|
2150
|
+
fldl -32(%edx)
|
|
2151
|
+
fadd %st(0),%st(0)
|
|
2152
|
+
fldl -24(%edx)
|
|
2153
|
+
fadd %st(0),%st(0)
|
|
2154
|
+
fldl 16(%edx)
|
|
2155
|
+
fxch %st(4)
|
|
2156
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2157
|
+
fldl 32(%edx)
|
|
2158
|
+
fmul %st(4),%st(0)
|
|
2159
|
+
fldl 24(%edx)
|
|
2160
|
+
fmul %st(4),%st(0)
|
|
2161
|
+
faddp %st(0),%st(1)
|
|
2162
|
+
fxch %st(4)
|
|
2163
|
+
fstl 0(%esp)
|
|
2164
|
+
fxch %st(3)
|
|
2165
|
+
fstl 8(%esp)
|
|
2166
|
+
fxch %st(3)
|
|
2167
|
+
fmull 24(%edx)
|
|
2168
|
+
faddp %st(0),%st(1)
|
|
2169
|
+
fldl 8(%edx)
|
|
2170
|
+
fxch %st(5)
|
|
2171
|
+
fmul %st(0),%st(3)
|
|
2172
|
+
fxch %st(3)
|
|
2173
|
+
faddp %st(0),%st(1)
|
|
2174
|
+
fxch %st(2)
|
|
2175
|
+
fadd %st(0),%st(0)
|
|
2176
|
+
fldl 16(%edx)
|
|
2177
|
+
fmul %st(2),%st(0)
|
|
2178
|
+
faddp %st(0),%st(4)
|
|
2179
|
+
fxch %st(1)
|
|
2180
|
+
fstl 16(%esp)
|
|
2181
|
+
fldl 0(%edx)
|
|
2182
|
+
fxch %st(5)
|
|
2183
|
+
fmul %st(0),%st(1)
|
|
2184
|
+
fxch %st(1)
|
|
2185
|
+
faddp %st(0),%st(3)
|
|
2186
|
+
fadd %st(0),%st(0)
|
|
2187
|
+
fstpl 48(%esp)
|
|
2188
|
+
fldl -16(%edx)
|
|
2189
|
+
fadd %st(0),%st(0)
|
|
2190
|
+
fstl 24(%esp)
|
|
2191
|
+
fldl 8(%edx)
|
|
2192
|
+
fmul %st(1),%st(0)
|
|
2193
|
+
faddp %st(0),%st(4)
|
|
2194
|
+
fmul %st(4),%st(0)
|
|
2195
|
+
faddp %st(0),%st(2)
|
|
2196
|
+
fxch %st(3)
|
|
2197
|
+
fadd %st(0),%st(0)
|
|
2198
|
+
fstpl 40(%esp)
|
|
2199
|
+
fldl -8(%edx)
|
|
2200
|
+
fmul %st(0),%st(0)
|
|
2201
|
+
faddp %st(0),%st(1)
|
|
2202
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2203
|
+
fadd %st(1),%st(0)
|
|
2204
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2205
|
+
fsubr %st(0),%st(1)
|
|
2206
|
+
fldl 8(%esp)
|
|
2207
|
+
fldl 32(%edx)
|
|
2208
|
+
fmul %st(0),%st(1)
|
|
2209
|
+
fldl 16(%esp)
|
|
2210
|
+
fmul %st(0),%st(1)
|
|
2211
|
+
fldl 24(%edx)
|
|
2212
|
+
fmul %st(0),%st(1)
|
|
2213
|
+
fxch %st(1)
|
|
2214
|
+
faddp %st(0),%st(3)
|
|
2215
|
+
fldl 24(%esp)
|
|
2216
|
+
fmul %st(0),%st(1)
|
|
2217
|
+
fxch %st(1)
|
|
2218
|
+
faddp %st(0),%st(2)
|
|
2219
|
+
fldl -8(%edx)
|
|
2220
|
+
fadd %st(0),%st(0)
|
|
2221
|
+
fstl 32(%esp)
|
|
2222
|
+
fmull 0(%edx)
|
|
2223
|
+
faddp %st(0),%st(6)
|
|
2224
|
+
fxch %st(3)
|
|
2225
|
+
faddp %st(0),%st(5)
|
|
2226
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
2227
|
+
fadd %st(5),%st(0)
|
|
2228
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
2229
|
+
fsubr %st(0),%st(5)
|
|
2230
|
+
fldl 16(%edx)
|
|
2231
|
+
fmul %st(0),%st(4)
|
|
2232
|
+
fxch %st(4)
|
|
2233
|
+
faddp %st(0),%st(3)
|
|
2234
|
+
fldl 32(%esp)
|
|
2235
|
+
fmul %st(0),%st(4)
|
|
2236
|
+
fxch %st(4)
|
|
2237
|
+
faddp %st(0),%st(2)
|
|
2238
|
+
fldl 8(%edx)
|
|
2239
|
+
fmul %st(0),%st(4)
|
|
2240
|
+
fxch %st(4)
|
|
2241
|
+
faddp %st(0),%st(3)
|
|
2242
|
+
fxch %st(3)
|
|
2243
|
+
fmull 40(%esp)
|
|
2244
|
+
faddp %st(0),%st(1)
|
|
2245
|
+
fxch %st(3)
|
|
2246
|
+
fstpl -48(%edx)
|
|
2247
|
+
fldl 0(%edx)
|
|
2248
|
+
fmul %st(0),%st(0)
|
|
2249
|
+
faddp %st(0),%st(1)
|
|
2250
|
+
fxch %st(2)
|
|
2251
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2252
|
+
fxch %st(3)
|
|
2253
|
+
fstpl 48(%edx)
|
|
2254
|
+
faddp %st(0),%st(1)
|
|
2255
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2256
|
+
fldl 24(%esp)
|
|
2257
|
+
fmull 32(%edx)
|
|
2258
|
+
fldl -40(%edx)
|
|
2259
|
+
fmul %st(0),%st(0)
|
|
2260
|
+
faddp %st(0),%st(2)
|
|
2261
|
+
fldl 32(%esp)
|
|
2262
|
+
fmull 24(%edx)
|
|
2263
|
+
faddp %st(0),%st(1)
|
|
2264
|
+
fldl 0(%esp)
|
|
2265
|
+
fmull -32(%edx)
|
|
2266
|
+
faddp %st(0),%st(3)
|
|
2267
|
+
fldl 40(%esp)
|
|
2268
|
+
fmull 16(%edx)
|
|
2269
|
+
faddp %st(0),%st(1)
|
|
2270
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
2271
|
+
fadd %st(2),%st(0)
|
|
2272
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
2273
|
+
fsubr %st(0),%st(2)
|
|
2274
|
+
faddp %st(0),%st(3)
|
|
2275
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
2276
|
+
fadd %st(3),%st(0)
|
|
2277
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
2278
|
+
fsubr %st(0),%st(3)
|
|
2279
|
+
fldl 8(%edx)
|
|
2280
|
+
fmul %st(0),%st(0)
|
|
2281
|
+
faddp %st(0),%st(2)
|
|
2282
|
+
fxch %st(1)
|
|
2283
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2284
|
+
fldl 0(%esp)
|
|
2285
|
+
fmull -24(%edx)
|
|
2286
|
+
faddp %st(0),%st(1)
|
|
2287
|
+
fldl -32(%edx)
|
|
2288
|
+
fmul %st(0),%st(0)
|
|
2289
|
+
faddp %st(0),%st(1)
|
|
2290
|
+
faddp %st(0),%st(1)
|
|
2291
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2292
|
+
fadd %st(1),%st(0)
|
|
2293
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2294
|
+
fsubr %st(0),%st(1)
|
|
2295
|
+
fxch %st(2)
|
|
2296
|
+
fstpl 56(%ecx)
|
|
2297
|
+
fldl 32(%esp)
|
|
2298
|
+
fmull 32(%edx)
|
|
2299
|
+
fldl 40(%esp)
|
|
2300
|
+
fmull 24(%edx)
|
|
2301
|
+
faddp %st(0),%st(1)
|
|
2302
|
+
fldl 48(%esp)
|
|
2303
|
+
fmull 16(%edx)
|
|
2304
|
+
faddp %st(0),%st(1)
|
|
2305
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2306
|
+
fldl 0(%esp)
|
|
2307
|
+
fmull -16(%edx)
|
|
2308
|
+
faddp %st(0),%st(1)
|
|
2309
|
+
fldl 8(%esp)
|
|
2310
|
+
fmull -24(%edx)
|
|
2311
|
+
faddp %st(0),%st(1)
|
|
2312
|
+
faddp %st(0),%st(2)
|
|
2313
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2314
|
+
fadd %st(2),%st(0)
|
|
2315
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2316
|
+
fsubr %st(0),%st(2)
|
|
2317
|
+
fxch %st(3)
|
|
2318
|
+
fstpl 64(%ecx)
|
|
2319
|
+
fldl 40(%esp)
|
|
2320
|
+
fmull 32(%edx)
|
|
2321
|
+
fldl 48(%esp)
|
|
2322
|
+
fmull 24(%edx)
|
|
2323
|
+
faddp %st(0),%st(1)
|
|
2324
|
+
fldl 16(%edx)
|
|
2325
|
+
fmul %st(0),%st(0)
|
|
2326
|
+
faddp %st(0),%st(1)
|
|
2327
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2328
|
+
fldl 0(%esp)
|
|
2329
|
+
fmull -8(%edx)
|
|
2330
|
+
faddp %st(0),%st(1)
|
|
2331
|
+
fldl 8(%esp)
|
|
2332
|
+
fmull -16(%edx)
|
|
2333
|
+
faddp %st(0),%st(1)
|
|
2334
|
+
fldl -24(%edx)
|
|
2335
|
+
fmul %st(0),%st(0)
|
|
2336
|
+
faddp %st(0),%st(1)
|
|
2337
|
+
faddp %st(0),%st(3)
|
|
2338
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2339
|
+
fadd %st(3),%st(0)
|
|
2340
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2341
|
+
fsubr %st(0),%st(3)
|
|
2342
|
+
fxch %st(1)
|
|
2343
|
+
fstpl 72(%ecx)
|
|
2344
|
+
fldl 48(%esp)
|
|
2345
|
+
fldl 32(%edx)
|
|
2346
|
+
fmul %st(0),%st(1)
|
|
2347
|
+
fmul %st(5),%st(0)
|
|
2348
|
+
fxch %st(5)
|
|
2349
|
+
fmull 24(%edx)
|
|
2350
|
+
faddp %st(0),%st(1)
|
|
2351
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2352
|
+
fldl 0(%esp)
|
|
2353
|
+
fmull 0(%edx)
|
|
2354
|
+
faddp %st(0),%st(1)
|
|
2355
|
+
fldl 8(%esp)
|
|
2356
|
+
fmull -8(%edx)
|
|
2357
|
+
faddp %st(0),%st(1)
|
|
2358
|
+
fldl 16(%esp)
|
|
2359
|
+
fmull -16(%edx)
|
|
2360
|
+
faddp %st(0),%st(1)
|
|
2361
|
+
faddp %st(0),%st(1)
|
|
2362
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2363
|
+
fadd %st(1),%st(0)
|
|
2364
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2365
|
+
fsubr %st(0),%st(1)
|
|
2366
|
+
fxch %st(2)
|
|
2367
|
+
fstpl 80(%ecx)
|
|
2368
|
+
fldl 24(%edx)
|
|
2369
|
+
fmul %st(0),%st(0)
|
|
2370
|
+
faddp %st(0),%st(4)
|
|
2371
|
+
fxch %st(3)
|
|
2372
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2373
|
+
fldl 0(%esp)
|
|
2374
|
+
fmull 8(%edx)
|
|
2375
|
+
faddp %st(0),%st(1)
|
|
2376
|
+
fldl 8(%esp)
|
|
2377
|
+
fmull 0(%edx)
|
|
2378
|
+
faddp %st(0),%st(1)
|
|
2379
|
+
fldl 16(%esp)
|
|
2380
|
+
fmull -8(%edx)
|
|
2381
|
+
faddp %st(0),%st(1)
|
|
2382
|
+
fldl -16(%edx)
|
|
2383
|
+
fmul %st(0),%st(0)
|
|
2384
|
+
faddp %st(0),%st(1)
|
|
2385
|
+
faddp %st(0),%st(1)
|
|
2386
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2387
|
+
fadd %st(1),%st(0)
|
|
2388
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2389
|
+
fsubr %st(0),%st(1)
|
|
2390
|
+
fldl 24(%edx)
|
|
2391
|
+
fadd %st(0),%st(0)
|
|
2392
|
+
fmull 32(%edx)
|
|
2393
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2394
|
+
fldl 0(%esp)
|
|
2395
|
+
fmull 16(%edx)
|
|
2396
|
+
faddp %st(0),%st(1)
|
|
2397
|
+
fldl 8(%esp)
|
|
2398
|
+
fmull 8(%edx)
|
|
2399
|
+
faddp %st(0),%st(1)
|
|
2400
|
+
fldl 16(%esp)
|
|
2401
|
+
fmull 0(%edx)
|
|
2402
|
+
faddp %st(0),%st(1)
|
|
2403
|
+
fldl 24(%esp)
|
|
2404
|
+
fmull -8(%edx)
|
|
2405
|
+
faddp %st(0),%st(1)
|
|
2406
|
+
faddp %st(0),%st(1)
|
|
2407
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2408
|
+
fadd %st(1),%st(0)
|
|
2409
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2410
|
+
fsubr %st(0),%st(1)
|
|
2411
|
+
fldl -48(%edx)
|
|
2412
|
+
faddp %st(0),%st(1)
|
|
2413
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2414
|
+
fadd %st(1),%st(0)
|
|
2415
|
+
fldl 48(%edx)
|
|
2416
|
+
fxch %st(1)
|
|
2417
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2418
|
+
fsubr %st(0),%st(2)
|
|
2419
|
+
faddp %st(0),%st(1)
|
|
2420
|
+
fxch %st(4)
|
|
2421
|
+
fstpl 88(%ecx)
|
|
2422
|
+
fxch %st(4)
|
|
2423
|
+
fstpl 96(%ecx)
|
|
2424
|
+
fxch %st(1)
|
|
2425
|
+
fstpl 104(%ecx)
|
|
2426
|
+
fstpl 112(%ecx)
|
|
2427
|
+
fxch %st(1)
|
|
2428
|
+
fstpl 120(%ecx)
|
|
2429
|
+
fstpl 128(%ecx)
|
|
2430
|
+
fldl 32(%ecx)
|
|
2431
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2432
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2433
|
+
fadd %st(1),%st(0)
|
|
2434
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2435
|
+
fldl 40(%ecx)
|
|
2436
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2437
|
+
fadd %st(1),%st(0)
|
|
2438
|
+
fxch %st(1)
|
|
2439
|
+
fsubrp %st(0),%st(2)
|
|
2440
|
+
fxch %st(1)
|
|
2441
|
+
fstpl 0(%esp)
|
|
2442
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
2443
|
+
fadd %st(1),%st(0)
|
|
2444
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
2445
|
+
fsubr %st(0),%st(1)
|
|
2446
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2447
|
+
fxch %st(1)
|
|
2448
|
+
fstpl 8(%esp)
|
|
2449
|
+
fldl -32(%ecx)
|
|
2450
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2451
|
+
faddp %st(0),%st(1)
|
|
2452
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
2453
|
+
fadd %st(1),%st(0)
|
|
2454
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
2455
|
+
fldl -24(%ecx)
|
|
2456
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2457
|
+
fadd %st(1),%st(0)
|
|
2458
|
+
fxch %st(1)
|
|
2459
|
+
fsubrp %st(0),%st(2)
|
|
2460
|
+
fxch %st(1)
|
|
2461
|
+
fstpl -48(%edx)
|
|
2462
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
2463
|
+
fadd %st(1),%st(0)
|
|
2464
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
2465
|
+
fldl -16(%ecx)
|
|
2466
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2467
|
+
fadd %st(1),%st(0)
|
|
2468
|
+
fxch %st(1)
|
|
2469
|
+
fsubrp %st(0),%st(2)
|
|
2470
|
+
fxch %st(1)
|
|
2471
|
+
fstpl -40(%edx)
|
|
2472
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2473
|
+
fadd %st(1),%st(0)
|
|
2474
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2475
|
+
fldl -8(%ecx)
|
|
2476
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2477
|
+
fadd %st(1),%st(0)
|
|
2478
|
+
fxch %st(1)
|
|
2479
|
+
fsubrp %st(0),%st(2)
|
|
2480
|
+
fxch %st(1)
|
|
2481
|
+
fstpl -32(%edx)
|
|
2482
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2483
|
+
fadd %st(1),%st(0)
|
|
2484
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2485
|
+
fldl 0(%ecx)
|
|
2486
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2487
|
+
fadd %st(1),%st(0)
|
|
2488
|
+
fxch %st(1)
|
|
2489
|
+
fsubrp %st(0),%st(2)
|
|
2490
|
+
fxch %st(1)
|
|
2491
|
+
fstpl -24(%edx)
|
|
2492
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2493
|
+
fadd %st(1),%st(0)
|
|
2494
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2495
|
+
fldl 8(%ecx)
|
|
2496
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2497
|
+
fadd %st(1),%st(0)
|
|
2498
|
+
fxch %st(1)
|
|
2499
|
+
fsubrp %st(0),%st(2)
|
|
2500
|
+
fxch %st(1)
|
|
2501
|
+
fstpl -16(%edx)
|
|
2502
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2503
|
+
fadd %st(1),%st(0)
|
|
2504
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2505
|
+
fldl 16(%ecx)
|
|
2506
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2507
|
+
fadd %st(1),%st(0)
|
|
2508
|
+
fxch %st(1)
|
|
2509
|
+
fsubrp %st(0),%st(2)
|
|
2510
|
+
fxch %st(1)
|
|
2511
|
+
fstpl -8(%edx)
|
|
2512
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2513
|
+
fadd %st(1),%st(0)
|
|
2514
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2515
|
+
fldl 24(%ecx)
|
|
2516
|
+
fmull crypto_scalarmult_curve25519_athlon_121665
|
|
2517
|
+
fadd %st(1),%st(0)
|
|
2518
|
+
fxch %st(1)
|
|
2519
|
+
fsubrp %st(0),%st(2)
|
|
2520
|
+
fxch %st(1)
|
|
2521
|
+
fstpl 0(%edx)
|
|
2522
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2523
|
+
fadd %st(1),%st(0)
|
|
2524
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2525
|
+
fldl 0(%esp)
|
|
2526
|
+
fadd %st(1),%st(0)
|
|
2527
|
+
fxch %st(1)
|
|
2528
|
+
fsubrp %st(0),%st(2)
|
|
2529
|
+
fxch %st(1)
|
|
2530
|
+
fstpl 8(%edx)
|
|
2531
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2532
|
+
fadd %st(1),%st(0)
|
|
2533
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2534
|
+
fldl 8(%esp)
|
|
2535
|
+
fadd %st(1),%st(0)
|
|
2536
|
+
fxch %st(1)
|
|
2537
|
+
fsubrp %st(0),%st(2)
|
|
2538
|
+
fxch %st(1)
|
|
2539
|
+
fstpl 16(%edx)
|
|
2540
|
+
fstpl 48(%ecx)
|
|
2541
|
+
fldl -120(%ecx)
|
|
2542
|
+
fmull -40(%ecx)
|
|
2543
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2544
|
+
fldl 64(%edx)
|
|
2545
|
+
fmull -48(%ecx)
|
|
2546
|
+
faddp %st(0),%st(1)
|
|
2547
|
+
fldl 72(%edx)
|
|
2548
|
+
fmull -56(%ecx)
|
|
2549
|
+
faddp %st(0),%st(1)
|
|
2550
|
+
fldl 64(%edx)
|
|
2551
|
+
fmull -40(%ecx)
|
|
2552
|
+
fldl 80(%edx)
|
|
2553
|
+
fmull -64(%ecx)
|
|
2554
|
+
faddp %st(0),%st(2)
|
|
2555
|
+
fldl 72(%edx)
|
|
2556
|
+
fmull -48(%ecx)
|
|
2557
|
+
faddp %st(0),%st(1)
|
|
2558
|
+
fldl 88(%edx)
|
|
2559
|
+
fmull -72(%ecx)
|
|
2560
|
+
faddp %st(0),%st(2)
|
|
2561
|
+
fldl 80(%edx)
|
|
2562
|
+
fmull -56(%ecx)
|
|
2563
|
+
faddp %st(0),%st(1)
|
|
2564
|
+
fldl 96(%edx)
|
|
2565
|
+
fmull -80(%ecx)
|
|
2566
|
+
faddp %st(0),%st(2)
|
|
2567
|
+
fldl 88(%edx)
|
|
2568
|
+
fmull -64(%ecx)
|
|
2569
|
+
faddp %st(0),%st(1)
|
|
2570
|
+
fldl 72(%edx)
|
|
2571
|
+
fmull -40(%ecx)
|
|
2572
|
+
fldl 104(%edx)
|
|
2573
|
+
fmull -88(%ecx)
|
|
2574
|
+
faddp %st(0),%st(3)
|
|
2575
|
+
fldl 96(%edx)
|
|
2576
|
+
fmull -72(%ecx)
|
|
2577
|
+
faddp %st(0),%st(2)
|
|
2578
|
+
fldl 80(%edx)
|
|
2579
|
+
fmull -48(%ecx)
|
|
2580
|
+
faddp %st(0),%st(1)
|
|
2581
|
+
fldl 112(%edx)
|
|
2582
|
+
fmull -96(%ecx)
|
|
2583
|
+
faddp %st(0),%st(3)
|
|
2584
|
+
fldl 104(%edx)
|
|
2585
|
+
fmull -80(%ecx)
|
|
2586
|
+
faddp %st(0),%st(2)
|
|
2587
|
+
fldl 88(%edx)
|
|
2588
|
+
fmull -56(%ecx)
|
|
2589
|
+
faddp %st(0),%st(1)
|
|
2590
|
+
fldl 120(%edx)
|
|
2591
|
+
fmull -104(%ecx)
|
|
2592
|
+
faddp %st(0),%st(3)
|
|
2593
|
+
fldl 112(%edx)
|
|
2594
|
+
fmull -88(%ecx)
|
|
2595
|
+
faddp %st(0),%st(2)
|
|
2596
|
+
fldl 96(%edx)
|
|
2597
|
+
fmull -64(%ecx)
|
|
2598
|
+
faddp %st(0),%st(1)
|
|
2599
|
+
fldl -128(%ecx)
|
|
2600
|
+
fmull -112(%ecx)
|
|
2601
|
+
faddp %st(0),%st(3)
|
|
2602
|
+
fldl 120(%edx)
|
|
2603
|
+
fmull -96(%ecx)
|
|
2604
|
+
faddp %st(0),%st(2)
|
|
2605
|
+
fldl 104(%edx)
|
|
2606
|
+
fmull -72(%ecx)
|
|
2607
|
+
faddp %st(0),%st(1)
|
|
2608
|
+
fldl 80(%edx)
|
|
2609
|
+
fmull -40(%ecx)
|
|
2610
|
+
fldl 112(%edx)
|
|
2611
|
+
fmull -80(%ecx)
|
|
2612
|
+
faddp %st(0),%st(2)
|
|
2613
|
+
fldl -128(%ecx)
|
|
2614
|
+
fmull -104(%ecx)
|
|
2615
|
+
faddp %st(0),%st(3)
|
|
2616
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2617
|
+
fadd %st(4),%st(0)
|
|
2618
|
+
fldl 88(%edx)
|
|
2619
|
+
fmull -48(%ecx)
|
|
2620
|
+
faddp %st(0),%st(2)
|
|
2621
|
+
fldl 120(%edx)
|
|
2622
|
+
fmull -88(%ecx)
|
|
2623
|
+
faddp %st(0),%st(3)
|
|
2624
|
+
fldl -120(%ecx)
|
|
2625
|
+
fmull -112(%ecx)
|
|
2626
|
+
faddp %st(0),%st(4)
|
|
2627
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2628
|
+
fldl 96(%edx)
|
|
2629
|
+
fmull -56(%ecx)
|
|
2630
|
+
faddp %st(0),%st(2)
|
|
2631
|
+
fldl 88(%edx)
|
|
2632
|
+
fmull -40(%ecx)
|
|
2633
|
+
fldl -128(%ecx)
|
|
2634
|
+
fmull -96(%ecx)
|
|
2635
|
+
faddp %st(0),%st(4)
|
|
2636
|
+
fxch %st(1)
|
|
2637
|
+
fadd %st(0),%st(4)
|
|
2638
|
+
fldl 104(%edx)
|
|
2639
|
+
fmull -64(%ecx)
|
|
2640
|
+
faddp %st(0),%st(3)
|
|
2641
|
+
fldl 96(%edx)
|
|
2642
|
+
fmull -48(%ecx)
|
|
2643
|
+
faddp %st(0),%st(2)
|
|
2644
|
+
fsubrp %st(0),%st(5)
|
|
2645
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
2646
|
+
fadd %st(4),%st(0)
|
|
2647
|
+
fldl 112(%edx)
|
|
2648
|
+
fmull -72(%ecx)
|
|
2649
|
+
faddp %st(0),%st(3)
|
|
2650
|
+
fldl 104(%edx)
|
|
2651
|
+
fmull -56(%ecx)
|
|
2652
|
+
faddp %st(0),%st(2)
|
|
2653
|
+
fldl -120(%ecx)
|
|
2654
|
+
fmull -104(%ecx)
|
|
2655
|
+
faddp %st(0),%st(4)
|
|
2656
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
2657
|
+
fldl 120(%edx)
|
|
2658
|
+
fmull -80(%ecx)
|
|
2659
|
+
faddp %st(0),%st(3)
|
|
2660
|
+
fldl 96(%edx)
|
|
2661
|
+
fmull -40(%ecx)
|
|
2662
|
+
fldl 112(%edx)
|
|
2663
|
+
fmull -64(%ecx)
|
|
2664
|
+
faddp %st(0),%st(3)
|
|
2665
|
+
fldl -128(%ecx)
|
|
2666
|
+
fmull -88(%ecx)
|
|
2667
|
+
faddp %st(0),%st(4)
|
|
2668
|
+
fxch %st(1)
|
|
2669
|
+
fadd %st(0),%st(4)
|
|
2670
|
+
fsubrp %st(0),%st(5)
|
|
2671
|
+
fxch %st(5)
|
|
2672
|
+
fstpl 0(%esp)
|
|
2673
|
+
fldl 104(%edx)
|
|
2674
|
+
fmull -48(%ecx)
|
|
2675
|
+
faddp %st(0),%st(5)
|
|
2676
|
+
fldl 120(%edx)
|
|
2677
|
+
fmull -72(%ecx)
|
|
2678
|
+
faddp %st(0),%st(1)
|
|
2679
|
+
fldl -120(%ecx)
|
|
2680
|
+
fmull -96(%ecx)
|
|
2681
|
+
faddp %st(0),%st(2)
|
|
2682
|
+
fxch %st(2)
|
|
2683
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2684
|
+
fldl 112(%edx)
|
|
2685
|
+
fmull -56(%ecx)
|
|
2686
|
+
faddp %st(0),%st(5)
|
|
2687
|
+
fldl -128(%ecx)
|
|
2688
|
+
fmull -80(%ecx)
|
|
2689
|
+
faddp %st(0),%st(3)
|
|
2690
|
+
fxch %st(1)
|
|
2691
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2692
|
+
fldl 64(%edx)
|
|
2693
|
+
fmull -112(%ecx)
|
|
2694
|
+
faddp %st(0),%st(2)
|
|
2695
|
+
fxch %st(3)
|
|
2696
|
+
fstpl 8(%esp)
|
|
2697
|
+
fldl 104(%edx)
|
|
2698
|
+
fmull -40(%ecx)
|
|
2699
|
+
fldl 120(%edx)
|
|
2700
|
+
fmull -64(%ecx)
|
|
2701
|
+
faddp %st(0),%st(5)
|
|
2702
|
+
fldl -120(%ecx)
|
|
2703
|
+
fmull -88(%ecx)
|
|
2704
|
+
faddp %st(0),%st(3)
|
|
2705
|
+
fldl 64(%edx)
|
|
2706
|
+
fmull -104(%ecx)
|
|
2707
|
+
faddp %st(0),%st(4)
|
|
2708
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
2709
|
+
fadd %st(2),%st(0)
|
|
2710
|
+
fldl 112(%edx)
|
|
2711
|
+
fmull -48(%ecx)
|
|
2712
|
+
faddp %st(0),%st(2)
|
|
2713
|
+
fldl -128(%ecx)
|
|
2714
|
+
fmull -72(%ecx)
|
|
2715
|
+
faddp %st(0),%st(6)
|
|
2716
|
+
fxch %st(3)
|
|
2717
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2718
|
+
fldl 72(%edx)
|
|
2719
|
+
fmull -112(%ecx)
|
|
2720
|
+
faddp %st(0),%st(5)
|
|
2721
|
+
fxch %st(3)
|
|
2722
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
2723
|
+
fldl 120(%edx)
|
|
2724
|
+
fmull -56(%ecx)
|
|
2725
|
+
faddp %st(0),%st(2)
|
|
2726
|
+
fldl -120(%ecx)
|
|
2727
|
+
fmull -80(%ecx)
|
|
2728
|
+
faddp %st(0),%st(6)
|
|
2729
|
+
fldl 64(%edx)
|
|
2730
|
+
fmull -96(%ecx)
|
|
2731
|
+
faddp %st(0),%st(4)
|
|
2732
|
+
fadd %st(0),%st(4)
|
|
2733
|
+
fsubrp %st(0),%st(2)
|
|
2734
|
+
fldl 112(%edx)
|
|
2735
|
+
fmull -40(%ecx)
|
|
2736
|
+
fldl -128(%ecx)
|
|
2737
|
+
fmull -64(%ecx)
|
|
2738
|
+
faddp %st(0),%st(2)
|
|
2739
|
+
fxch %st(5)
|
|
2740
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2741
|
+
fldl 72(%edx)
|
|
2742
|
+
fmull -104(%ecx)
|
|
2743
|
+
faddp %st(0),%st(4)
|
|
2744
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
2745
|
+
fadd %st(5),%st(0)
|
|
2746
|
+
fldl 120(%edx)
|
|
2747
|
+
fmull -48(%ecx)
|
|
2748
|
+
faddp %st(0),%st(7)
|
|
2749
|
+
fldl -120(%ecx)
|
|
2750
|
+
fmull -72(%ecx)
|
|
2751
|
+
faddp %st(0),%st(3)
|
|
2752
|
+
fldl 64(%edx)
|
|
2753
|
+
fmull -88(%ecx)
|
|
2754
|
+
faddp %st(0),%st(2)
|
|
2755
|
+
fldl 80(%edx)
|
|
2756
|
+
fmull -112(%ecx)
|
|
2757
|
+
faddp %st(0),%st(5)
|
|
2758
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
2759
|
+
fxch %st(3)
|
|
2760
|
+
fstpl 16(%esp)
|
|
2761
|
+
fldl -128(%ecx)
|
|
2762
|
+
fmull -56(%ecx)
|
|
2763
|
+
faddp %st(0),%st(6)
|
|
2764
|
+
fxch %st(1)
|
|
2765
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2766
|
+
fldl 72(%edx)
|
|
2767
|
+
fmull -96(%ecx)
|
|
2768
|
+
faddp %st(0),%st(2)
|
|
2769
|
+
fxch %st(2)
|
|
2770
|
+
fadd %st(0),%st(3)
|
|
2771
|
+
fsubrp %st(0),%st(4)
|
|
2772
|
+
fldl 120(%edx)
|
|
2773
|
+
fmull -40(%ecx)
|
|
2774
|
+
fldl -120(%ecx)
|
|
2775
|
+
fmull -64(%ecx)
|
|
2776
|
+
faddp %st(0),%st(6)
|
|
2777
|
+
fldl 64(%edx)
|
|
2778
|
+
fmull -80(%ecx)
|
|
2779
|
+
faddp %st(0),%st(3)
|
|
2780
|
+
fldl 80(%edx)
|
|
2781
|
+
fmull -104(%ecx)
|
|
2782
|
+
faddp %st(0),%st(2)
|
|
2783
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2784
|
+
fadd %st(4),%st(0)
|
|
2785
|
+
fldl -128(%ecx)
|
|
2786
|
+
fmull -48(%ecx)
|
|
2787
|
+
faddp %st(0),%st(2)
|
|
2788
|
+
fxch %st(6)
|
|
2789
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2790
|
+
fldl 72(%edx)
|
|
2791
|
+
fmull -88(%ecx)
|
|
2792
|
+
faddp %st(0),%st(4)
|
|
2793
|
+
fldl 88(%edx)
|
|
2794
|
+
fmull -112(%ecx)
|
|
2795
|
+
faddp %st(0),%st(3)
|
|
2796
|
+
fxch %st(6)
|
|
2797
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
2798
|
+
fxch %st(5)
|
|
2799
|
+
fstpl 24(%esp)
|
|
2800
|
+
fldl -120(%ecx)
|
|
2801
|
+
fmull -56(%ecx)
|
|
2802
|
+
faddp %st(0),%st(1)
|
|
2803
|
+
fldl 64(%edx)
|
|
2804
|
+
fmull -72(%ecx)
|
|
2805
|
+
faddp %st(0),%st(6)
|
|
2806
|
+
fldl 80(%edx)
|
|
2807
|
+
fmull -96(%ecx)
|
|
2808
|
+
faddp %st(0),%st(3)
|
|
2809
|
+
fxch %st(4)
|
|
2810
|
+
fadd %st(0),%st(1)
|
|
2811
|
+
fsubrp %st(0),%st(3)
|
|
2812
|
+
fldl -128(%ecx)
|
|
2813
|
+
fmull -40(%ecx)
|
|
2814
|
+
fxch %st(4)
|
|
2815
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2816
|
+
fldl 72(%edx)
|
|
2817
|
+
fmull -80(%ecx)
|
|
2818
|
+
faddp %st(0),%st(6)
|
|
2819
|
+
fldl 88(%edx)
|
|
2820
|
+
fmull -104(%ecx)
|
|
2821
|
+
faddp %st(0),%st(3)
|
|
2822
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2823
|
+
fadd %st(2),%st(0)
|
|
2824
|
+
fldl -120(%ecx)
|
|
2825
|
+
fmull -48(%ecx)
|
|
2826
|
+
faddp %st(0),%st(6)
|
|
2827
|
+
fldl 64(%edx)
|
|
2828
|
+
fmull -64(%ecx)
|
|
2829
|
+
faddp %st(0),%st(2)
|
|
2830
|
+
fldl 80(%edx)
|
|
2831
|
+
fmull -88(%ecx)
|
|
2832
|
+
faddp %st(0),%st(7)
|
|
2833
|
+
fldl 96(%edx)
|
|
2834
|
+
fmull -112(%ecx)
|
|
2835
|
+
faddp %st(0),%st(4)
|
|
2836
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
2837
|
+
fxch %st(4)
|
|
2838
|
+
fstpl 32(%esp)
|
|
2839
|
+
fxch %st(4)
|
|
2840
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2841
|
+
fldl 72(%edx)
|
|
2842
|
+
fmull -72(%ecx)
|
|
2843
|
+
faddp %st(0),%st(5)
|
|
2844
|
+
fldl 88(%edx)
|
|
2845
|
+
fmull -96(%ecx)
|
|
2846
|
+
faddp %st(0),%st(6)
|
|
2847
|
+
fxch %st(3)
|
|
2848
|
+
fadd %st(0),%st(2)
|
|
2849
|
+
fsubrp %st(0),%st(1)
|
|
2850
|
+
fldl 64(%edx)
|
|
2851
|
+
fmull -56(%ecx)
|
|
2852
|
+
faddp %st(0),%st(3)
|
|
2853
|
+
fldl 80(%edx)
|
|
2854
|
+
fmull -80(%ecx)
|
|
2855
|
+
faddp %st(0),%st(4)
|
|
2856
|
+
fldl 96(%edx)
|
|
2857
|
+
fmull -104(%ecx)
|
|
2858
|
+
faddp %st(0),%st(5)
|
|
2859
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2860
|
+
fadd %st(2),%st(0)
|
|
2861
|
+
fldl 72(%edx)
|
|
2862
|
+
fmull -64(%ecx)
|
|
2863
|
+
faddp %st(0),%st(4)
|
|
2864
|
+
fldl 88(%edx)
|
|
2865
|
+
fmull -88(%ecx)
|
|
2866
|
+
faddp %st(0),%st(5)
|
|
2867
|
+
fldl 104(%edx)
|
|
2868
|
+
fmull -112(%ecx)
|
|
2869
|
+
faddp %st(0),%st(6)
|
|
2870
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
2871
|
+
fxch %st(1)
|
|
2872
|
+
fstpl 40(%esp)
|
|
2873
|
+
fldl 80(%edx)
|
|
2874
|
+
fmull -72(%ecx)
|
|
2875
|
+
faddp %st(0),%st(3)
|
|
2876
|
+
fldl 96(%edx)
|
|
2877
|
+
fmull -96(%ecx)
|
|
2878
|
+
faddp %st(0),%st(4)
|
|
2879
|
+
fadd %st(0),%st(4)
|
|
2880
|
+
fsubrp %st(0),%st(1)
|
|
2881
|
+
fstpl 48(%esp)
|
|
2882
|
+
fldl 88(%edx)
|
|
2883
|
+
fmull -80(%ecx)
|
|
2884
|
+
faddp %st(0),%st(1)
|
|
2885
|
+
fldl 104(%edx)
|
|
2886
|
+
fmull -104(%ecx)
|
|
2887
|
+
faddp %st(0),%st(2)
|
|
2888
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2889
|
+
fadd %st(3),%st(0)
|
|
2890
|
+
fldl 96(%edx)
|
|
2891
|
+
fmull -88(%ecx)
|
|
2892
|
+
faddp %st(0),%st(2)
|
|
2893
|
+
fldl 112(%edx)
|
|
2894
|
+
fmull -112(%ecx)
|
|
2895
|
+
faddp %st(0),%st(3)
|
|
2896
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
2897
|
+
fldl 104(%edx)
|
|
2898
|
+
fmull -96(%ecx)
|
|
2899
|
+
faddp %st(0),%st(2)
|
|
2900
|
+
fadd %st(0),%st(2)
|
|
2901
|
+
fsubrp %st(0),%st(3)
|
|
2902
|
+
fxch %st(2)
|
|
2903
|
+
fstpl 24(%edx)
|
|
2904
|
+
fldl 112(%edx)
|
|
2905
|
+
fmull -104(%ecx)
|
|
2906
|
+
faddp %st(0),%st(2)
|
|
2907
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2908
|
+
fadd %st(1),%st(0)
|
|
2909
|
+
fldl 120(%edx)
|
|
2910
|
+
fmull -112(%ecx)
|
|
2911
|
+
faddp %st(0),%st(3)
|
|
2912
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
2913
|
+
fldl 0(%esp)
|
|
2914
|
+
fldl 8(%esp)
|
|
2915
|
+
fxch %st(2)
|
|
2916
|
+
fadd %st(0),%st(4)
|
|
2917
|
+
fsubrp %st(0),%st(3)
|
|
2918
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2919
|
+
fadd %st(4),%st(0)
|
|
2920
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
2921
|
+
fadd %st(0),%st(1)
|
|
2922
|
+
fsubrp %st(0),%st(4)
|
|
2923
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2924
|
+
fadd %st(1),%st(0)
|
|
2925
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
2926
|
+
fsubr %st(0),%st(1)
|
|
2927
|
+
faddp %st(0),%st(2)
|
|
2928
|
+
fxch %st(2)
|
|
2929
|
+
fstpl 32(%edx)
|
|
2930
|
+
fxch %st(2)
|
|
2931
|
+
fstpl 48(%edx)
|
|
2932
|
+
fstpl 56(%edx)
|
|
2933
|
+
fstpl -112(%ecx)
|
|
2934
|
+
fldl -48(%edx)
|
|
2935
|
+
faddl 64(%edx)
|
|
2936
|
+
fstpl -104(%ecx)
|
|
2937
|
+
fldl -40(%edx)
|
|
2938
|
+
faddl 72(%edx)
|
|
2939
|
+
fstpl -96(%ecx)
|
|
2940
|
+
fldl -32(%edx)
|
|
2941
|
+
faddl 80(%edx)
|
|
2942
|
+
fstpl -88(%ecx)
|
|
2943
|
+
fldl -24(%edx)
|
|
2944
|
+
faddl 88(%edx)
|
|
2945
|
+
fstpl -80(%ecx)
|
|
2946
|
+
fldl -16(%edx)
|
|
2947
|
+
faddl 96(%edx)
|
|
2948
|
+
fstpl -16(%edx)
|
|
2949
|
+
fldl -8(%edx)
|
|
2950
|
+
faddl 104(%edx)
|
|
2951
|
+
fstpl -8(%edx)
|
|
2952
|
+
fldl 0(%edx)
|
|
2953
|
+
faddl 112(%edx)
|
|
2954
|
+
fstpl 0(%edx)
|
|
2955
|
+
fldl 8(%edx)
|
|
2956
|
+
faddl 120(%edx)
|
|
2957
|
+
fstpl 8(%edx)
|
|
2958
|
+
fldl 16(%edx)
|
|
2959
|
+
faddl -128(%ecx)
|
|
2960
|
+
fstpl 16(%edx)
|
|
2961
|
+
fldl 48(%ecx)
|
|
2962
|
+
faddl -120(%ecx)
|
|
2963
|
+
fstpl 80(%edx)
|
|
2964
|
+
fldl 128(%ecx)
|
|
2965
|
+
fmull -128(%edx)
|
|
2966
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
2967
|
+
fldl 56(%ecx)
|
|
2968
|
+
fmull 120(%esp)
|
|
2969
|
+
faddp %st(0),%st(1)
|
|
2970
|
+
fldl 64(%ecx)
|
|
2971
|
+
fmull 112(%esp)
|
|
2972
|
+
faddp %st(0),%st(1)
|
|
2973
|
+
fldl 56(%ecx)
|
|
2974
|
+
fmull -128(%edx)
|
|
2975
|
+
fldl 72(%ecx)
|
|
2976
|
+
fmull 104(%esp)
|
|
2977
|
+
faddp %st(0),%st(2)
|
|
2978
|
+
fldl 64(%ecx)
|
|
2979
|
+
fmull 120(%esp)
|
|
2980
|
+
faddp %st(0),%st(1)
|
|
2981
|
+
fldl 80(%ecx)
|
|
2982
|
+
fmull 96(%esp)
|
|
2983
|
+
faddp %st(0),%st(2)
|
|
2984
|
+
fldl 72(%ecx)
|
|
2985
|
+
fmull 112(%esp)
|
|
2986
|
+
faddp %st(0),%st(1)
|
|
2987
|
+
fldl 88(%ecx)
|
|
2988
|
+
fmull 88(%esp)
|
|
2989
|
+
faddp %st(0),%st(2)
|
|
2990
|
+
fldl 80(%ecx)
|
|
2991
|
+
fmull 104(%esp)
|
|
2992
|
+
faddp %st(0),%st(1)
|
|
2993
|
+
fldl 64(%ecx)
|
|
2994
|
+
fmull -128(%edx)
|
|
2995
|
+
fldl 96(%ecx)
|
|
2996
|
+
fmull 80(%esp)
|
|
2997
|
+
faddp %st(0),%st(3)
|
|
2998
|
+
fldl 88(%ecx)
|
|
2999
|
+
fmull 96(%esp)
|
|
3000
|
+
faddp %st(0),%st(2)
|
|
3001
|
+
fldl 72(%ecx)
|
|
3002
|
+
fmull 120(%esp)
|
|
3003
|
+
faddp %st(0),%st(1)
|
|
3004
|
+
fldl 104(%ecx)
|
|
3005
|
+
fmull 72(%esp)
|
|
3006
|
+
faddp %st(0),%st(3)
|
|
3007
|
+
fldl 96(%ecx)
|
|
3008
|
+
fmull 88(%esp)
|
|
3009
|
+
faddp %st(0),%st(2)
|
|
3010
|
+
fldl 80(%ecx)
|
|
3011
|
+
fmull 112(%esp)
|
|
3012
|
+
faddp %st(0),%st(1)
|
|
3013
|
+
fldl 112(%ecx)
|
|
3014
|
+
fmull 64(%esp)
|
|
3015
|
+
faddp %st(0),%st(3)
|
|
3016
|
+
fldl 104(%ecx)
|
|
3017
|
+
fmull 80(%esp)
|
|
3018
|
+
faddp %st(0),%st(2)
|
|
3019
|
+
fldl 88(%ecx)
|
|
3020
|
+
fmull 104(%esp)
|
|
3021
|
+
faddp %st(0),%st(1)
|
|
3022
|
+
fldl 120(%ecx)
|
|
3023
|
+
fmull 56(%esp)
|
|
3024
|
+
faddp %st(0),%st(3)
|
|
3025
|
+
fldl 112(%ecx)
|
|
3026
|
+
fmull 72(%esp)
|
|
3027
|
+
faddp %st(0),%st(2)
|
|
3028
|
+
fldl 96(%ecx)
|
|
3029
|
+
fmull 96(%esp)
|
|
3030
|
+
faddp %st(0),%st(1)
|
|
3031
|
+
fldl 72(%ecx)
|
|
3032
|
+
fmull -128(%edx)
|
|
3033
|
+
fldl 104(%ecx)
|
|
3034
|
+
fmull 88(%esp)
|
|
3035
|
+
faddp %st(0),%st(2)
|
|
3036
|
+
fldl 120(%ecx)
|
|
3037
|
+
fmull 64(%esp)
|
|
3038
|
+
faddp %st(0),%st(3)
|
|
3039
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3040
|
+
fadd %st(4),%st(0)
|
|
3041
|
+
fldl 80(%ecx)
|
|
3042
|
+
fmull 120(%esp)
|
|
3043
|
+
faddp %st(0),%st(2)
|
|
3044
|
+
fldl 112(%ecx)
|
|
3045
|
+
fmull 80(%esp)
|
|
3046
|
+
faddp %st(0),%st(3)
|
|
3047
|
+
fldl 128(%ecx)
|
|
3048
|
+
fmull 56(%esp)
|
|
3049
|
+
faddp %st(0),%st(4)
|
|
3050
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3051
|
+
fldl 88(%ecx)
|
|
3052
|
+
fmull 112(%esp)
|
|
3053
|
+
faddp %st(0),%st(2)
|
|
3054
|
+
fldl 80(%ecx)
|
|
3055
|
+
fmull -128(%edx)
|
|
3056
|
+
fldl 120(%ecx)
|
|
3057
|
+
fmull 72(%esp)
|
|
3058
|
+
faddp %st(0),%st(4)
|
|
3059
|
+
fxch %st(1)
|
|
3060
|
+
fadd %st(0),%st(4)
|
|
3061
|
+
fldl 96(%ecx)
|
|
3062
|
+
fmull 104(%esp)
|
|
3063
|
+
faddp %st(0),%st(3)
|
|
3064
|
+
fldl 88(%ecx)
|
|
3065
|
+
fmull 120(%esp)
|
|
3066
|
+
faddp %st(0),%st(2)
|
|
3067
|
+
fsubrp %st(0),%st(5)
|
|
3068
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
3069
|
+
fadd %st(4),%st(0)
|
|
3070
|
+
fldl 104(%ecx)
|
|
3071
|
+
fmull 96(%esp)
|
|
3072
|
+
faddp %st(0),%st(3)
|
|
3073
|
+
fldl 96(%ecx)
|
|
3074
|
+
fmull 112(%esp)
|
|
3075
|
+
faddp %st(0),%st(2)
|
|
3076
|
+
fldl 128(%ecx)
|
|
3077
|
+
fmull 64(%esp)
|
|
3078
|
+
faddp %st(0),%st(4)
|
|
3079
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
3080
|
+
fldl 112(%ecx)
|
|
3081
|
+
fmull 88(%esp)
|
|
3082
|
+
faddp %st(0),%st(3)
|
|
3083
|
+
fldl 88(%ecx)
|
|
3084
|
+
fmull -128(%edx)
|
|
3085
|
+
fldl 104(%ecx)
|
|
3086
|
+
fmull 104(%esp)
|
|
3087
|
+
faddp %st(0),%st(3)
|
|
3088
|
+
fldl 120(%ecx)
|
|
3089
|
+
fmull 80(%esp)
|
|
3090
|
+
faddp %st(0),%st(4)
|
|
3091
|
+
fxch %st(1)
|
|
3092
|
+
fadd %st(0),%st(4)
|
|
3093
|
+
fsubrp %st(0),%st(5)
|
|
3094
|
+
fxch %st(5)
|
|
3095
|
+
fstpl 0(%esp)
|
|
3096
|
+
fldl 96(%ecx)
|
|
3097
|
+
fmull 120(%esp)
|
|
3098
|
+
faddp %st(0),%st(5)
|
|
3099
|
+
fldl 112(%ecx)
|
|
3100
|
+
fmull 96(%esp)
|
|
3101
|
+
faddp %st(0),%st(1)
|
|
3102
|
+
fldl 128(%ecx)
|
|
3103
|
+
fmull 72(%esp)
|
|
3104
|
+
faddp %st(0),%st(2)
|
|
3105
|
+
fxch %st(2)
|
|
3106
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3107
|
+
fldl 104(%ecx)
|
|
3108
|
+
fmull 112(%esp)
|
|
3109
|
+
faddp %st(0),%st(5)
|
|
3110
|
+
fldl 120(%ecx)
|
|
3111
|
+
fmull 88(%esp)
|
|
3112
|
+
faddp %st(0),%st(3)
|
|
3113
|
+
fxch %st(1)
|
|
3114
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3115
|
+
fldl 56(%ecx)
|
|
3116
|
+
fmull 56(%esp)
|
|
3117
|
+
faddp %st(0),%st(2)
|
|
3118
|
+
fxch %st(3)
|
|
3119
|
+
fstpl 8(%esp)
|
|
3120
|
+
fldl 96(%ecx)
|
|
3121
|
+
fmull -128(%edx)
|
|
3122
|
+
fldl 112(%ecx)
|
|
3123
|
+
fmull 104(%esp)
|
|
3124
|
+
faddp %st(0),%st(5)
|
|
3125
|
+
fldl 128(%ecx)
|
|
3126
|
+
fmull 80(%esp)
|
|
3127
|
+
faddp %st(0),%st(3)
|
|
3128
|
+
fldl 56(%ecx)
|
|
3129
|
+
fmull 64(%esp)
|
|
3130
|
+
faddp %st(0),%st(4)
|
|
3131
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
3132
|
+
fadd %st(2),%st(0)
|
|
3133
|
+
fldl 104(%ecx)
|
|
3134
|
+
fmull 120(%esp)
|
|
3135
|
+
faddp %st(0),%st(2)
|
|
3136
|
+
fldl 120(%ecx)
|
|
3137
|
+
fmull 96(%esp)
|
|
3138
|
+
faddp %st(0),%st(6)
|
|
3139
|
+
fxch %st(3)
|
|
3140
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3141
|
+
fldl 64(%ecx)
|
|
3142
|
+
fmull 56(%esp)
|
|
3143
|
+
faddp %st(0),%st(5)
|
|
3144
|
+
fxch %st(3)
|
|
3145
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
3146
|
+
fldl 112(%ecx)
|
|
3147
|
+
fmull 112(%esp)
|
|
3148
|
+
faddp %st(0),%st(2)
|
|
3149
|
+
fldl 128(%ecx)
|
|
3150
|
+
fmull 88(%esp)
|
|
3151
|
+
faddp %st(0),%st(6)
|
|
3152
|
+
fldl 56(%ecx)
|
|
3153
|
+
fmull 72(%esp)
|
|
3154
|
+
faddp %st(0),%st(4)
|
|
3155
|
+
fadd %st(0),%st(4)
|
|
3156
|
+
fsubrp %st(0),%st(2)
|
|
3157
|
+
fldl 104(%ecx)
|
|
3158
|
+
fmull -128(%edx)
|
|
3159
|
+
fldl 120(%ecx)
|
|
3160
|
+
fmull 104(%esp)
|
|
3161
|
+
faddp %st(0),%st(2)
|
|
3162
|
+
fxch %st(5)
|
|
3163
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3164
|
+
fldl 64(%ecx)
|
|
3165
|
+
fmull 64(%esp)
|
|
3166
|
+
faddp %st(0),%st(4)
|
|
3167
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
3168
|
+
fadd %st(5),%st(0)
|
|
3169
|
+
fldl 112(%ecx)
|
|
3170
|
+
fmull 120(%esp)
|
|
3171
|
+
faddp %st(0),%st(7)
|
|
3172
|
+
fldl 128(%ecx)
|
|
3173
|
+
fmull 96(%esp)
|
|
3174
|
+
faddp %st(0),%st(3)
|
|
3175
|
+
fldl 56(%ecx)
|
|
3176
|
+
fmull 80(%esp)
|
|
3177
|
+
faddp %st(0),%st(2)
|
|
3178
|
+
fldl 72(%ecx)
|
|
3179
|
+
fmull 56(%esp)
|
|
3180
|
+
faddp %st(0),%st(5)
|
|
3181
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
3182
|
+
fxch %st(3)
|
|
3183
|
+
fstpl -48(%edx)
|
|
3184
|
+
fldl 120(%ecx)
|
|
3185
|
+
fmull 112(%esp)
|
|
3186
|
+
faddp %st(0),%st(6)
|
|
3187
|
+
fxch %st(1)
|
|
3188
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3189
|
+
fldl 64(%ecx)
|
|
3190
|
+
fmull 72(%esp)
|
|
3191
|
+
faddp %st(0),%st(2)
|
|
3192
|
+
fxch %st(2)
|
|
3193
|
+
fadd %st(0),%st(3)
|
|
3194
|
+
fsubrp %st(0),%st(4)
|
|
3195
|
+
fldl 112(%ecx)
|
|
3196
|
+
fmull -128(%edx)
|
|
3197
|
+
fldl 128(%ecx)
|
|
3198
|
+
fmull 104(%esp)
|
|
3199
|
+
faddp %st(0),%st(6)
|
|
3200
|
+
fldl 56(%ecx)
|
|
3201
|
+
fmull 88(%esp)
|
|
3202
|
+
faddp %st(0),%st(3)
|
|
3203
|
+
fldl 72(%ecx)
|
|
3204
|
+
fmull 64(%esp)
|
|
3205
|
+
faddp %st(0),%st(2)
|
|
3206
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
3207
|
+
fadd %st(4),%st(0)
|
|
3208
|
+
fldl 120(%ecx)
|
|
3209
|
+
fmull 120(%esp)
|
|
3210
|
+
faddp %st(0),%st(2)
|
|
3211
|
+
fxch %st(6)
|
|
3212
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3213
|
+
fldl 64(%ecx)
|
|
3214
|
+
fmull 80(%esp)
|
|
3215
|
+
faddp %st(0),%st(4)
|
|
3216
|
+
fldl 80(%ecx)
|
|
3217
|
+
fmull 56(%esp)
|
|
3218
|
+
faddp %st(0),%st(3)
|
|
3219
|
+
fxch %st(6)
|
|
3220
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
3221
|
+
fxch %st(5)
|
|
3222
|
+
fstpl -40(%edx)
|
|
3223
|
+
fldl 128(%ecx)
|
|
3224
|
+
fmull 112(%esp)
|
|
3225
|
+
faddp %st(0),%st(1)
|
|
3226
|
+
fldl 56(%ecx)
|
|
3227
|
+
fmull 96(%esp)
|
|
3228
|
+
faddp %st(0),%st(6)
|
|
3229
|
+
fldl 72(%ecx)
|
|
3230
|
+
fmull 72(%esp)
|
|
3231
|
+
faddp %st(0),%st(3)
|
|
3232
|
+
fxch %st(4)
|
|
3233
|
+
fadd %st(0),%st(1)
|
|
3234
|
+
fsubrp %st(0),%st(3)
|
|
3235
|
+
fldl 120(%ecx)
|
|
3236
|
+
fmull -128(%edx)
|
|
3237
|
+
fxch %st(4)
|
|
3238
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3239
|
+
fldl 64(%ecx)
|
|
3240
|
+
fmull 88(%esp)
|
|
3241
|
+
faddp %st(0),%st(6)
|
|
3242
|
+
fldl 80(%ecx)
|
|
3243
|
+
fmull 64(%esp)
|
|
3244
|
+
faddp %st(0),%st(3)
|
|
3245
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
3246
|
+
fadd %st(2),%st(0)
|
|
3247
|
+
fldl 128(%ecx)
|
|
3248
|
+
fmull 120(%esp)
|
|
3249
|
+
faddp %st(0),%st(6)
|
|
3250
|
+
fldl 56(%ecx)
|
|
3251
|
+
fmull 104(%esp)
|
|
3252
|
+
faddp %st(0),%st(2)
|
|
3253
|
+
fldl 72(%ecx)
|
|
3254
|
+
fmull 80(%esp)
|
|
3255
|
+
faddp %st(0),%st(7)
|
|
3256
|
+
fldl 88(%ecx)
|
|
3257
|
+
fmull 56(%esp)
|
|
3258
|
+
faddp %st(0),%st(4)
|
|
3259
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
3260
|
+
fxch %st(4)
|
|
3261
|
+
fstpl -32(%edx)
|
|
3262
|
+
fxch %st(4)
|
|
3263
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3264
|
+
fldl 64(%ecx)
|
|
3265
|
+
fmull 96(%esp)
|
|
3266
|
+
faddp %st(0),%st(5)
|
|
3267
|
+
fldl 80(%ecx)
|
|
3268
|
+
fmull 72(%esp)
|
|
3269
|
+
faddp %st(0),%st(6)
|
|
3270
|
+
fxch %st(3)
|
|
3271
|
+
fadd %st(0),%st(2)
|
|
3272
|
+
fsubrp %st(0),%st(1)
|
|
3273
|
+
fldl 56(%ecx)
|
|
3274
|
+
fmull 112(%esp)
|
|
3275
|
+
faddp %st(0),%st(3)
|
|
3276
|
+
fldl 72(%ecx)
|
|
3277
|
+
fmull 88(%esp)
|
|
3278
|
+
faddp %st(0),%st(4)
|
|
3279
|
+
fldl 88(%ecx)
|
|
3280
|
+
fmull 64(%esp)
|
|
3281
|
+
faddp %st(0),%st(5)
|
|
3282
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
3283
|
+
fadd %st(2),%st(0)
|
|
3284
|
+
fldl 64(%ecx)
|
|
3285
|
+
fmull 104(%esp)
|
|
3286
|
+
faddp %st(0),%st(4)
|
|
3287
|
+
fldl 80(%ecx)
|
|
3288
|
+
fmull 80(%esp)
|
|
3289
|
+
faddp %st(0),%st(5)
|
|
3290
|
+
fldl 96(%ecx)
|
|
3291
|
+
fmull 56(%esp)
|
|
3292
|
+
faddp %st(0),%st(6)
|
|
3293
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
3294
|
+
fxch %st(1)
|
|
3295
|
+
fstpl -24(%edx)
|
|
3296
|
+
fldl 72(%ecx)
|
|
3297
|
+
fmull 96(%esp)
|
|
3298
|
+
faddp %st(0),%st(3)
|
|
3299
|
+
fldl 88(%ecx)
|
|
3300
|
+
fmull 72(%esp)
|
|
3301
|
+
faddp %st(0),%st(4)
|
|
3302
|
+
fadd %st(0),%st(4)
|
|
3303
|
+
fsubrp %st(0),%st(1)
|
|
3304
|
+
fstpl 96(%edx)
|
|
3305
|
+
fldl 80(%ecx)
|
|
3306
|
+
fmull 88(%esp)
|
|
3307
|
+
faddp %st(0),%st(1)
|
|
3308
|
+
fldl 96(%ecx)
|
|
3309
|
+
fmull 64(%esp)
|
|
3310
|
+
faddp %st(0),%st(2)
|
|
3311
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
3312
|
+
fadd %st(3),%st(0)
|
|
3313
|
+
fldl 88(%ecx)
|
|
3314
|
+
fmull 80(%esp)
|
|
3315
|
+
faddp %st(0),%st(2)
|
|
3316
|
+
fldl 104(%ecx)
|
|
3317
|
+
fmull 56(%esp)
|
|
3318
|
+
faddp %st(0),%st(3)
|
|
3319
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
3320
|
+
fldl 96(%ecx)
|
|
3321
|
+
fmull 72(%esp)
|
|
3322
|
+
faddp %st(0),%st(2)
|
|
3323
|
+
fadd %st(0),%st(2)
|
|
3324
|
+
fsubrp %st(0),%st(3)
|
|
3325
|
+
fxch %st(2)
|
|
3326
|
+
fstpl 104(%edx)
|
|
3327
|
+
fldl 104(%ecx)
|
|
3328
|
+
fmull 64(%esp)
|
|
3329
|
+
faddp %st(0),%st(2)
|
|
3330
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
3331
|
+
fadd %st(1),%st(0)
|
|
3332
|
+
fldl 112(%ecx)
|
|
3333
|
+
fmull 56(%esp)
|
|
3334
|
+
faddp %st(0),%st(3)
|
|
3335
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
3336
|
+
fldl 0(%esp)
|
|
3337
|
+
fldl 8(%esp)
|
|
3338
|
+
fxch %st(2)
|
|
3339
|
+
fadd %st(0),%st(4)
|
|
3340
|
+
fsubrp %st(0),%st(3)
|
|
3341
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
3342
|
+
fadd %st(4),%st(0)
|
|
3343
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
3344
|
+
fadd %st(0),%st(1)
|
|
3345
|
+
fsubrp %st(0),%st(4)
|
|
3346
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3347
|
+
fadd %st(1),%st(0)
|
|
3348
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3349
|
+
fsubr %st(0),%st(1)
|
|
3350
|
+
faddp %st(0),%st(2)
|
|
3351
|
+
fxch %st(2)
|
|
3352
|
+
fstpl 112(%edx)
|
|
3353
|
+
fxch %st(2)
|
|
3354
|
+
fstpl 120(%edx)
|
|
3355
|
+
fstpl -128(%ecx)
|
|
3356
|
+
fstpl -120(%ecx)
|
|
3357
|
+
fldl 80(%edx)
|
|
3358
|
+
fmull 40(%ecx)
|
|
3359
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3360
|
+
fldl -104(%ecx)
|
|
3361
|
+
fmull 32(%ecx)
|
|
3362
|
+
faddp %st(0),%st(1)
|
|
3363
|
+
fldl -96(%ecx)
|
|
3364
|
+
fmull 24(%ecx)
|
|
3365
|
+
faddp %st(0),%st(1)
|
|
3366
|
+
fldl -104(%ecx)
|
|
3367
|
+
fmull 40(%ecx)
|
|
3368
|
+
fldl -88(%ecx)
|
|
3369
|
+
fmull 16(%ecx)
|
|
3370
|
+
faddp %st(0),%st(2)
|
|
3371
|
+
fldl -96(%ecx)
|
|
3372
|
+
fmull 32(%ecx)
|
|
3373
|
+
faddp %st(0),%st(1)
|
|
3374
|
+
fldl -80(%ecx)
|
|
3375
|
+
fmull 8(%ecx)
|
|
3376
|
+
faddp %st(0),%st(2)
|
|
3377
|
+
fldl -88(%ecx)
|
|
3378
|
+
fmull 24(%ecx)
|
|
3379
|
+
faddp %st(0),%st(1)
|
|
3380
|
+
fldl -16(%edx)
|
|
3381
|
+
fmull 0(%ecx)
|
|
3382
|
+
faddp %st(0),%st(2)
|
|
3383
|
+
fldl -80(%ecx)
|
|
3384
|
+
fmull 16(%ecx)
|
|
3385
|
+
faddp %st(0),%st(1)
|
|
3386
|
+
fldl -96(%ecx)
|
|
3387
|
+
fmull 40(%ecx)
|
|
3388
|
+
fldl -8(%edx)
|
|
3389
|
+
fmull -8(%ecx)
|
|
3390
|
+
faddp %st(0),%st(3)
|
|
3391
|
+
fldl -16(%edx)
|
|
3392
|
+
fmull 8(%ecx)
|
|
3393
|
+
faddp %st(0),%st(2)
|
|
3394
|
+
fldl -88(%ecx)
|
|
3395
|
+
fmull 32(%ecx)
|
|
3396
|
+
faddp %st(0),%st(1)
|
|
3397
|
+
fldl 0(%edx)
|
|
3398
|
+
fmull -16(%ecx)
|
|
3399
|
+
faddp %st(0),%st(3)
|
|
3400
|
+
fldl -8(%edx)
|
|
3401
|
+
fmull 0(%ecx)
|
|
3402
|
+
faddp %st(0),%st(2)
|
|
3403
|
+
fldl -80(%ecx)
|
|
3404
|
+
fmull 24(%ecx)
|
|
3405
|
+
faddp %st(0),%st(1)
|
|
3406
|
+
fldl 8(%edx)
|
|
3407
|
+
fmull -24(%ecx)
|
|
3408
|
+
faddp %st(0),%st(3)
|
|
3409
|
+
fldl 0(%edx)
|
|
3410
|
+
fmull -8(%ecx)
|
|
3411
|
+
faddp %st(0),%st(2)
|
|
3412
|
+
fldl -16(%edx)
|
|
3413
|
+
fmull 16(%ecx)
|
|
3414
|
+
faddp %st(0),%st(1)
|
|
3415
|
+
fldl 16(%edx)
|
|
3416
|
+
fmull -32(%ecx)
|
|
3417
|
+
faddp %st(0),%st(3)
|
|
3418
|
+
fldl 8(%edx)
|
|
3419
|
+
fmull -16(%ecx)
|
|
3420
|
+
faddp %st(0),%st(2)
|
|
3421
|
+
fldl -8(%edx)
|
|
3422
|
+
fmull 8(%ecx)
|
|
3423
|
+
faddp %st(0),%st(1)
|
|
3424
|
+
fldl -88(%ecx)
|
|
3425
|
+
fmull 40(%ecx)
|
|
3426
|
+
fldl 0(%edx)
|
|
3427
|
+
fmull 0(%ecx)
|
|
3428
|
+
faddp %st(0),%st(2)
|
|
3429
|
+
fldl 16(%edx)
|
|
3430
|
+
fmull -24(%ecx)
|
|
3431
|
+
faddp %st(0),%st(3)
|
|
3432
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3433
|
+
fadd %st(4),%st(0)
|
|
3434
|
+
fldl -80(%ecx)
|
|
3435
|
+
fmull 32(%ecx)
|
|
3436
|
+
faddp %st(0),%st(2)
|
|
3437
|
+
fldl 8(%edx)
|
|
3438
|
+
fmull -8(%ecx)
|
|
3439
|
+
faddp %st(0),%st(3)
|
|
3440
|
+
fldl 80(%edx)
|
|
3441
|
+
fmull -32(%ecx)
|
|
3442
|
+
faddp %st(0),%st(4)
|
|
3443
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3444
|
+
fldl -16(%edx)
|
|
3445
|
+
fmull 24(%ecx)
|
|
3446
|
+
faddp %st(0),%st(2)
|
|
3447
|
+
fldl -80(%ecx)
|
|
3448
|
+
fmull 40(%ecx)
|
|
3449
|
+
fldl 16(%edx)
|
|
3450
|
+
fmull -16(%ecx)
|
|
3451
|
+
faddp %st(0),%st(4)
|
|
3452
|
+
fxch %st(1)
|
|
3453
|
+
fadd %st(0),%st(4)
|
|
3454
|
+
fldl -8(%edx)
|
|
3455
|
+
fmull 16(%ecx)
|
|
3456
|
+
faddp %st(0),%st(3)
|
|
3457
|
+
fldl -16(%edx)
|
|
3458
|
+
fmull 32(%ecx)
|
|
3459
|
+
faddp %st(0),%st(2)
|
|
3460
|
+
fsubrp %st(0),%st(5)
|
|
3461
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha255
|
|
3462
|
+
fadd %st(4),%st(0)
|
|
3463
|
+
fldl 0(%edx)
|
|
3464
|
+
fmull 8(%ecx)
|
|
3465
|
+
faddp %st(0),%st(3)
|
|
3466
|
+
fldl -8(%edx)
|
|
3467
|
+
fmull 24(%ecx)
|
|
3468
|
+
faddp %st(0),%st(2)
|
|
3469
|
+
fldl 80(%edx)
|
|
3470
|
+
fmull -24(%ecx)
|
|
3471
|
+
faddp %st(0),%st(4)
|
|
3472
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha255
|
|
3473
|
+
fldl 8(%edx)
|
|
3474
|
+
fmull 0(%ecx)
|
|
3475
|
+
faddp %st(0),%st(3)
|
|
3476
|
+
fldl -16(%edx)
|
|
3477
|
+
fmull 40(%ecx)
|
|
3478
|
+
fldl 0(%edx)
|
|
3479
|
+
fmull 16(%ecx)
|
|
3480
|
+
faddp %st(0),%st(3)
|
|
3481
|
+
fldl 16(%edx)
|
|
3482
|
+
fmull -8(%ecx)
|
|
3483
|
+
faddp %st(0),%st(4)
|
|
3484
|
+
fxch %st(1)
|
|
3485
|
+
fadd %st(0),%st(4)
|
|
3486
|
+
fsubrp %st(0),%st(5)
|
|
3487
|
+
fxch %st(5)
|
|
3488
|
+
fstpl 0(%esp)
|
|
3489
|
+
fldl -8(%edx)
|
|
3490
|
+
fmull 32(%ecx)
|
|
3491
|
+
faddp %st(0),%st(5)
|
|
3492
|
+
fldl 8(%edx)
|
|
3493
|
+
fmull 8(%ecx)
|
|
3494
|
+
faddp %st(0),%st(1)
|
|
3495
|
+
fldl 80(%edx)
|
|
3496
|
+
fmull -16(%ecx)
|
|
3497
|
+
faddp %st(0),%st(2)
|
|
3498
|
+
fxch %st(2)
|
|
3499
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3500
|
+
fldl 0(%edx)
|
|
3501
|
+
fmull 24(%ecx)
|
|
3502
|
+
faddp %st(0),%st(5)
|
|
3503
|
+
fldl 16(%edx)
|
|
3504
|
+
fmull 0(%ecx)
|
|
3505
|
+
faddp %st(0),%st(3)
|
|
3506
|
+
fxch %st(1)
|
|
3507
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3508
|
+
fldl -104(%ecx)
|
|
3509
|
+
fmull -32(%ecx)
|
|
3510
|
+
faddp %st(0),%st(2)
|
|
3511
|
+
fxch %st(3)
|
|
3512
|
+
fstpl 8(%esp)
|
|
3513
|
+
fldl -8(%edx)
|
|
3514
|
+
fmull 40(%ecx)
|
|
3515
|
+
fldl 8(%edx)
|
|
3516
|
+
fmull 16(%ecx)
|
|
3517
|
+
faddp %st(0),%st(5)
|
|
3518
|
+
fldl 80(%edx)
|
|
3519
|
+
fmull -8(%ecx)
|
|
3520
|
+
faddp %st(0),%st(3)
|
|
3521
|
+
fldl -104(%ecx)
|
|
3522
|
+
fmull -24(%ecx)
|
|
3523
|
+
faddp %st(0),%st(4)
|
|
3524
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha26
|
|
3525
|
+
fadd %st(2),%st(0)
|
|
3526
|
+
fldl 0(%edx)
|
|
3527
|
+
fmull 32(%ecx)
|
|
3528
|
+
faddp %st(0),%st(2)
|
|
3529
|
+
fldl 16(%edx)
|
|
3530
|
+
fmull 8(%ecx)
|
|
3531
|
+
faddp %st(0),%st(6)
|
|
3532
|
+
fxch %st(3)
|
|
3533
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3534
|
+
fldl -96(%ecx)
|
|
3535
|
+
fmull -32(%ecx)
|
|
3536
|
+
faddp %st(0),%st(5)
|
|
3537
|
+
fxch %st(3)
|
|
3538
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha26
|
|
3539
|
+
fldl 8(%edx)
|
|
3540
|
+
fmull 24(%ecx)
|
|
3541
|
+
faddp %st(0),%st(2)
|
|
3542
|
+
fldl 80(%edx)
|
|
3543
|
+
fmull 0(%ecx)
|
|
3544
|
+
faddp %st(0),%st(6)
|
|
3545
|
+
fldl -104(%ecx)
|
|
3546
|
+
fmull -16(%ecx)
|
|
3547
|
+
faddp %st(0),%st(4)
|
|
3548
|
+
fadd %st(0),%st(4)
|
|
3549
|
+
fsubrp %st(0),%st(2)
|
|
3550
|
+
fldl 0(%edx)
|
|
3551
|
+
fmull 40(%ecx)
|
|
3552
|
+
fldl 16(%edx)
|
|
3553
|
+
fmull 16(%ecx)
|
|
3554
|
+
faddp %st(0),%st(2)
|
|
3555
|
+
fxch %st(5)
|
|
3556
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3557
|
+
fldl -96(%ecx)
|
|
3558
|
+
fmull -24(%ecx)
|
|
3559
|
+
faddp %st(0),%st(4)
|
|
3560
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha51
|
|
3561
|
+
fadd %st(5),%st(0)
|
|
3562
|
+
fldl 8(%edx)
|
|
3563
|
+
fmull 32(%ecx)
|
|
3564
|
+
faddp %st(0),%st(7)
|
|
3565
|
+
fldl 80(%edx)
|
|
3566
|
+
fmull 8(%ecx)
|
|
3567
|
+
faddp %st(0),%st(3)
|
|
3568
|
+
fldl -104(%ecx)
|
|
3569
|
+
fmull -8(%ecx)
|
|
3570
|
+
faddp %st(0),%st(2)
|
|
3571
|
+
fldl -88(%ecx)
|
|
3572
|
+
fmull -32(%ecx)
|
|
3573
|
+
faddp %st(0),%st(5)
|
|
3574
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha51
|
|
3575
|
+
fxch %st(3)
|
|
3576
|
+
fstpl 64(%edx)
|
|
3577
|
+
fldl 16(%edx)
|
|
3578
|
+
fmull 24(%ecx)
|
|
3579
|
+
faddp %st(0),%st(6)
|
|
3580
|
+
fxch %st(1)
|
|
3581
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3582
|
+
fldl -96(%ecx)
|
|
3583
|
+
fmull -16(%ecx)
|
|
3584
|
+
faddp %st(0),%st(2)
|
|
3585
|
+
fxch %st(2)
|
|
3586
|
+
fadd %st(0),%st(3)
|
|
3587
|
+
fsubrp %st(0),%st(4)
|
|
3588
|
+
fldl 8(%edx)
|
|
3589
|
+
fmull 40(%ecx)
|
|
3590
|
+
fldl 80(%edx)
|
|
3591
|
+
fmull 16(%ecx)
|
|
3592
|
+
faddp %st(0),%st(6)
|
|
3593
|
+
fldl -104(%ecx)
|
|
3594
|
+
fmull 0(%ecx)
|
|
3595
|
+
faddp %st(0),%st(3)
|
|
3596
|
+
fldl -88(%ecx)
|
|
3597
|
+
fmull -24(%ecx)
|
|
3598
|
+
faddp %st(0),%st(2)
|
|
3599
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha77
|
|
3600
|
+
fadd %st(4),%st(0)
|
|
3601
|
+
fldl 16(%edx)
|
|
3602
|
+
fmull 32(%ecx)
|
|
3603
|
+
faddp %st(0),%st(2)
|
|
3604
|
+
fxch %st(6)
|
|
3605
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3606
|
+
fldl -96(%ecx)
|
|
3607
|
+
fmull -8(%ecx)
|
|
3608
|
+
faddp %st(0),%st(4)
|
|
3609
|
+
fldl -80(%ecx)
|
|
3610
|
+
fmull -32(%ecx)
|
|
3611
|
+
faddp %st(0),%st(3)
|
|
3612
|
+
fxch %st(6)
|
|
3613
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha77
|
|
3614
|
+
fxch %st(5)
|
|
3615
|
+
fstpl 72(%edx)
|
|
3616
|
+
fldl 80(%edx)
|
|
3617
|
+
fmull 24(%ecx)
|
|
3618
|
+
faddp %st(0),%st(1)
|
|
3619
|
+
fldl -104(%ecx)
|
|
3620
|
+
fmull 8(%ecx)
|
|
3621
|
+
faddp %st(0),%st(6)
|
|
3622
|
+
fldl -88(%ecx)
|
|
3623
|
+
fmull -16(%ecx)
|
|
3624
|
+
faddp %st(0),%st(3)
|
|
3625
|
+
fxch %st(4)
|
|
3626
|
+
fadd %st(0),%st(1)
|
|
3627
|
+
fsubrp %st(0),%st(3)
|
|
3628
|
+
fldl 16(%edx)
|
|
3629
|
+
fmull 40(%ecx)
|
|
3630
|
+
fxch %st(4)
|
|
3631
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3632
|
+
fldl -96(%ecx)
|
|
3633
|
+
fmull 0(%ecx)
|
|
3634
|
+
faddp %st(0),%st(6)
|
|
3635
|
+
fldl -80(%ecx)
|
|
3636
|
+
fmull -24(%ecx)
|
|
3637
|
+
faddp %st(0),%st(3)
|
|
3638
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha102
|
|
3639
|
+
fadd %st(2),%st(0)
|
|
3640
|
+
fldl 80(%edx)
|
|
3641
|
+
fmull 32(%ecx)
|
|
3642
|
+
faddp %st(0),%st(6)
|
|
3643
|
+
fldl -104(%ecx)
|
|
3644
|
+
fmull 16(%ecx)
|
|
3645
|
+
faddp %st(0),%st(2)
|
|
3646
|
+
fldl -88(%ecx)
|
|
3647
|
+
fmull -8(%ecx)
|
|
3648
|
+
faddp %st(0),%st(7)
|
|
3649
|
+
fldl -16(%edx)
|
|
3650
|
+
fmull -32(%ecx)
|
|
3651
|
+
faddp %st(0),%st(4)
|
|
3652
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha102
|
|
3653
|
+
fxch %st(4)
|
|
3654
|
+
fstpl 80(%edx)
|
|
3655
|
+
fxch %st(4)
|
|
3656
|
+
fmull crypto_scalarmult_curve25519_athlon_scale
|
|
3657
|
+
fldl -96(%ecx)
|
|
3658
|
+
fmull 8(%ecx)
|
|
3659
|
+
faddp %st(0),%st(5)
|
|
3660
|
+
fldl -80(%ecx)
|
|
3661
|
+
fmull -16(%ecx)
|
|
3662
|
+
faddp %st(0),%st(6)
|
|
3663
|
+
fxch %st(3)
|
|
3664
|
+
fadd %st(0),%st(2)
|
|
3665
|
+
fsubrp %st(0),%st(1)
|
|
3666
|
+
fldl -104(%ecx)
|
|
3667
|
+
fmull 24(%ecx)
|
|
3668
|
+
faddp %st(0),%st(3)
|
|
3669
|
+
fldl -88(%ecx)
|
|
3670
|
+
fmull 0(%ecx)
|
|
3671
|
+
faddp %st(0),%st(4)
|
|
3672
|
+
fldl -16(%edx)
|
|
3673
|
+
fmull -24(%ecx)
|
|
3674
|
+
faddp %st(0),%st(5)
|
|
3675
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha128
|
|
3676
|
+
fadd %st(2),%st(0)
|
|
3677
|
+
fldl -96(%ecx)
|
|
3678
|
+
fmull 16(%ecx)
|
|
3679
|
+
faddp %st(0),%st(4)
|
|
3680
|
+
fldl -80(%ecx)
|
|
3681
|
+
fmull -8(%ecx)
|
|
3682
|
+
faddp %st(0),%st(5)
|
|
3683
|
+
fldl -8(%edx)
|
|
3684
|
+
fmull -32(%ecx)
|
|
3685
|
+
faddp %st(0),%st(6)
|
|
3686
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha128
|
|
3687
|
+
fxch %st(1)
|
|
3688
|
+
fstpl 88(%edx)
|
|
3689
|
+
fldl -88(%ecx)
|
|
3690
|
+
fmull 8(%ecx)
|
|
3691
|
+
faddp %st(0),%st(3)
|
|
3692
|
+
fldl -16(%edx)
|
|
3693
|
+
fmull -16(%ecx)
|
|
3694
|
+
faddp %st(0),%st(4)
|
|
3695
|
+
fadd %st(0),%st(4)
|
|
3696
|
+
fsubrp %st(0),%st(1)
|
|
3697
|
+
fstpl -104(%ecx)
|
|
3698
|
+
fldl -80(%ecx)
|
|
3699
|
+
fmull 0(%ecx)
|
|
3700
|
+
faddp %st(0),%st(1)
|
|
3701
|
+
fldl -8(%edx)
|
|
3702
|
+
fmull -24(%ecx)
|
|
3703
|
+
faddp %st(0),%st(2)
|
|
3704
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha153
|
|
3705
|
+
fadd %st(3),%st(0)
|
|
3706
|
+
fldl -16(%edx)
|
|
3707
|
+
fmull -8(%ecx)
|
|
3708
|
+
faddp %st(0),%st(2)
|
|
3709
|
+
fldl 0(%edx)
|
|
3710
|
+
fmull -32(%ecx)
|
|
3711
|
+
faddp %st(0),%st(3)
|
|
3712
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha153
|
|
3713
|
+
fldl -8(%edx)
|
|
3714
|
+
fmull -16(%ecx)
|
|
3715
|
+
faddp %st(0),%st(2)
|
|
3716
|
+
fadd %st(0),%st(2)
|
|
3717
|
+
fsubrp %st(0),%st(3)
|
|
3718
|
+
fxch %st(2)
|
|
3719
|
+
fstpl -96(%ecx)
|
|
3720
|
+
fldl 0(%edx)
|
|
3721
|
+
fmull -24(%ecx)
|
|
3722
|
+
faddp %st(0),%st(2)
|
|
3723
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha179
|
|
3724
|
+
fadd %st(1),%st(0)
|
|
3725
|
+
fldl 8(%edx)
|
|
3726
|
+
fmull -32(%ecx)
|
|
3727
|
+
faddp %st(0),%st(3)
|
|
3728
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha179
|
|
3729
|
+
fldl 0(%esp)
|
|
3730
|
+
fldl 8(%esp)
|
|
3731
|
+
fxch %st(2)
|
|
3732
|
+
fadd %st(0),%st(4)
|
|
3733
|
+
fsubrp %st(0),%st(3)
|
|
3734
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha204
|
|
3735
|
+
fadd %st(4),%st(0)
|
|
3736
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha204
|
|
3737
|
+
fadd %st(0),%st(1)
|
|
3738
|
+
fsubrp %st(0),%st(4)
|
|
3739
|
+
fldl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3740
|
+
fadd %st(1),%st(0)
|
|
3741
|
+
fsubl crypto_scalarmult_curve25519_athlon_alpha230
|
|
3742
|
+
fsubr %st(0),%st(1)
|
|
3743
|
+
faddp %st(0),%st(2)
|
|
3744
|
+
fxch %st(2)
|
|
3745
|
+
fstpl -88(%ecx)
|
|
3746
|
+
fxch %st(2)
|
|
3747
|
+
fstpl -80(%ecx)
|
|
3748
|
+
fstpl -72(%ecx)
|
|
3749
|
+
fstpl -64(%ecx)
|
|
3750
|
+
fldl 136(%ecx)
|
|
3751
|
+
fldl -120(%edx)
|
|
3752
|
+
fldl 16(%esp)
|
|
3753
|
+
fsubr %st(1),%st(0)
|
|
3754
|
+
fmul %st(2),%st(0)
|
|
3755
|
+
fsubr %st(0),%st(1)
|
|
3756
|
+
faddl 16(%esp)
|
|
3757
|
+
fxch %st(1)
|
|
3758
|
+
fstpl -16(%edx)
|
|
3759
|
+
fstpl 0(%esp)
|
|
3760
|
+
fldl -112(%edx)
|
|
3761
|
+
fldl 24(%esp)
|
|
3762
|
+
fsubr %st(1),%st(0)
|
|
3763
|
+
fmul %st(2),%st(0)
|
|
3764
|
+
fsubr %st(0),%st(1)
|
|
3765
|
+
faddl 24(%esp)
|
|
3766
|
+
fxch %st(1)
|
|
3767
|
+
fstpl -8(%edx)
|
|
3768
|
+
fstpl 8(%esp)
|
|
3769
|
+
fldl -104(%edx)
|
|
3770
|
+
fldl 32(%esp)
|
|
3771
|
+
fsubr %st(1),%st(0)
|
|
3772
|
+
fmul %st(2),%st(0)
|
|
3773
|
+
fsubr %st(0),%st(1)
|
|
3774
|
+
faddl 32(%esp)
|
|
3775
|
+
fxch %st(1)
|
|
3776
|
+
fstpl 0(%edx)
|
|
3777
|
+
fstpl 16(%esp)
|
|
3778
|
+
fldl 40(%edx)
|
|
3779
|
+
fldl 40(%esp)
|
|
3780
|
+
fsubr %st(1),%st(0)
|
|
3781
|
+
fmul %st(2),%st(0)
|
|
3782
|
+
fsubr %st(0),%st(1)
|
|
3783
|
+
faddl 40(%esp)
|
|
3784
|
+
fxch %st(1)
|
|
3785
|
+
fstpl 8(%edx)
|
|
3786
|
+
fstpl 24(%esp)
|
|
3787
|
+
fldl -96(%edx)
|
|
3788
|
+
fldl 48(%esp)
|
|
3789
|
+
fsubr %st(1),%st(0)
|
|
3790
|
+
fmul %st(2),%st(0)
|
|
3791
|
+
fsubr %st(0),%st(1)
|
|
3792
|
+
faddl 48(%esp)
|
|
3793
|
+
fxch %st(1)
|
|
3794
|
+
fstpl 16(%edx)
|
|
3795
|
+
fstpl 32(%esp)
|
|
3796
|
+
fldl -88(%edx)
|
|
3797
|
+
fldl 24(%edx)
|
|
3798
|
+
fsubr %st(1),%st(0)
|
|
3799
|
+
fmul %st(2),%st(0)
|
|
3800
|
+
fsubr %st(0),%st(1)
|
|
3801
|
+
faddl 24(%edx)
|
|
3802
|
+
fxch %st(1)
|
|
3803
|
+
fstpl 24(%edx)
|
|
3804
|
+
fstpl 40(%esp)
|
|
3805
|
+
fldl -80(%edx)
|
|
3806
|
+
fldl 32(%edx)
|
|
3807
|
+
fsubr %st(1),%st(0)
|
|
3808
|
+
fmul %st(2),%st(0)
|
|
3809
|
+
fsubr %st(0),%st(1)
|
|
3810
|
+
faddl 32(%edx)
|
|
3811
|
+
fxch %st(1)
|
|
3812
|
+
fstpl 32(%edx)
|
|
3813
|
+
fstpl 48(%esp)
|
|
3814
|
+
fldl -72(%edx)
|
|
3815
|
+
fldl 48(%edx)
|
|
3816
|
+
fsubr %st(1),%st(0)
|
|
3817
|
+
fmul %st(2),%st(0)
|
|
3818
|
+
fsubr %st(0),%st(1)
|
|
3819
|
+
faddl 48(%edx)
|
|
3820
|
+
fxch %st(1)
|
|
3821
|
+
fstpl 40(%edx)
|
|
3822
|
+
fstpl -120(%edx)
|
|
3823
|
+
fldl -64(%edx)
|
|
3824
|
+
fldl 56(%edx)
|
|
3825
|
+
fsubr %st(1),%st(0)
|
|
3826
|
+
fmul %st(2),%st(0)
|
|
3827
|
+
fsubr %st(0),%st(1)
|
|
3828
|
+
faddl 56(%edx)
|
|
3829
|
+
fxch %st(1)
|
|
3830
|
+
fstpl 48(%edx)
|
|
3831
|
+
fstpl -112(%edx)
|
|
3832
|
+
fldl -56(%edx)
|
|
3833
|
+
fldl -112(%ecx)
|
|
3834
|
+
fsubr %st(1),%st(0)
|
|
3835
|
+
fmul %st(2),%st(0)
|
|
3836
|
+
fsubr %st(0),%st(1)
|
|
3837
|
+
faddl -112(%ecx)
|
|
3838
|
+
fxch %st(1)
|
|
3839
|
+
fstpl 56(%edx)
|
|
3840
|
+
fstpl -104(%edx)
|
|
3841
|
+
fldl -48(%edx)
|
|
3842
|
+
fldl 64(%edx)
|
|
3843
|
+
fsubr %st(1),%st(0)
|
|
3844
|
+
fmul %st(2),%st(0)
|
|
3845
|
+
fsubr %st(0),%st(1)
|
|
3846
|
+
faddl 64(%edx)
|
|
3847
|
+
fxch %st(1)
|
|
3848
|
+
fstpl 64(%edx)
|
|
3849
|
+
fstpl -96(%edx)
|
|
3850
|
+
fldl -40(%edx)
|
|
3851
|
+
fldl 72(%edx)
|
|
3852
|
+
fsubr %st(1),%st(0)
|
|
3853
|
+
fmul %st(2),%st(0)
|
|
3854
|
+
fsubr %st(0),%st(1)
|
|
3855
|
+
faddl 72(%edx)
|
|
3856
|
+
fxch %st(1)
|
|
3857
|
+
fstpl 72(%edx)
|
|
3858
|
+
fstpl -88(%edx)
|
|
3859
|
+
fldl -32(%edx)
|
|
3860
|
+
fldl 80(%edx)
|
|
3861
|
+
fsubr %st(1),%st(0)
|
|
3862
|
+
fmul %st(2),%st(0)
|
|
3863
|
+
fsubr %st(0),%st(1)
|
|
3864
|
+
faddl 80(%edx)
|
|
3865
|
+
fxch %st(1)
|
|
3866
|
+
fstpl 80(%edx)
|
|
3867
|
+
fstpl -80(%edx)
|
|
3868
|
+
fldl -24(%edx)
|
|
3869
|
+
fldl 88(%edx)
|
|
3870
|
+
fsubr %st(1),%st(0)
|
|
3871
|
+
fmul %st(2),%st(0)
|
|
3872
|
+
fsubr %st(0),%st(1)
|
|
3873
|
+
faddl 88(%edx)
|
|
3874
|
+
fxch %st(1)
|
|
3875
|
+
fstpl 88(%edx)
|
|
3876
|
+
fstpl -72(%edx)
|
|
3877
|
+
fldl 96(%edx)
|
|
3878
|
+
fldl -104(%ecx)
|
|
3879
|
+
fsubr %st(1),%st(0)
|
|
3880
|
+
fmul %st(2),%st(0)
|
|
3881
|
+
fsubr %st(0),%st(1)
|
|
3882
|
+
faddl -104(%ecx)
|
|
3883
|
+
fxch %st(1)
|
|
3884
|
+
fstpl 96(%edx)
|
|
3885
|
+
fstpl -64(%edx)
|
|
3886
|
+
fldl 104(%edx)
|
|
3887
|
+
fldl -96(%ecx)
|
|
3888
|
+
fsubr %st(1),%st(0)
|
|
3889
|
+
fmul %st(2),%st(0)
|
|
3890
|
+
fsubr %st(0),%st(1)
|
|
3891
|
+
faddl -96(%ecx)
|
|
3892
|
+
fxch %st(1)
|
|
3893
|
+
fstpl 104(%edx)
|
|
3894
|
+
fstpl -56(%edx)
|
|
3895
|
+
fldl 112(%edx)
|
|
3896
|
+
fldl -88(%ecx)
|
|
3897
|
+
fsubr %st(1),%st(0)
|
|
3898
|
+
fmul %st(2),%st(0)
|
|
3899
|
+
fsubr %st(0),%st(1)
|
|
3900
|
+
faddl -88(%ecx)
|
|
3901
|
+
fxch %st(1)
|
|
3902
|
+
fstpl 112(%edx)
|
|
3903
|
+
fstpl -48(%edx)
|
|
3904
|
+
fldl 120(%edx)
|
|
3905
|
+
fldl -80(%ecx)
|
|
3906
|
+
fsubr %st(1),%st(0)
|
|
3907
|
+
fmul %st(2),%st(0)
|
|
3908
|
+
fsubr %st(0),%st(1)
|
|
3909
|
+
faddl -80(%ecx)
|
|
3910
|
+
fxch %st(1)
|
|
3911
|
+
fstpl 120(%edx)
|
|
3912
|
+
fstpl -40(%edx)
|
|
3913
|
+
fldl -128(%ecx)
|
|
3914
|
+
fldl -72(%ecx)
|
|
3915
|
+
fsubr %st(1),%st(0)
|
|
3916
|
+
fmul %st(2),%st(0)
|
|
3917
|
+
fsubr %st(0),%st(1)
|
|
3918
|
+
faddl -72(%ecx)
|
|
3919
|
+
fxch %st(1)
|
|
3920
|
+
fstpl -128(%ecx)
|
|
3921
|
+
fstpl -32(%edx)
|
|
3922
|
+
fldl -120(%ecx)
|
|
3923
|
+
fldl -64(%ecx)
|
|
3924
|
+
fsubr %st(1),%st(0)
|
|
3925
|
+
fmulp %st(0),%st(2)
|
|
3926
|
+
fsub %st(1),%st(0)
|
|
3927
|
+
fxch %st(1)
|
|
3928
|
+
faddl -64(%ecx)
|
|
3929
|
+
fxch %st(1)
|
|
3930
|
+
fstpl -120(%ecx)
|
|
3931
|
+
fstpl -24(%edx)
|
|
3932
|
+
movl 180(%ecx),%esi
|
|
3933
|
+
movl 184(%ecx),%ebp
|
|
3934
|
+
sub $1,%ebp
|
|
3935
|
+
ja ._morebits
|
|
3936
|
+
movl 188(%ecx),%edi
|
|
3937
|
+
sub $4,%edi
|
|
3938
|
+
jb ._done
|
|
3939
|
+
movl (%ebx,%edi),%esi
|
|
3940
|
+
mov $32,%ebp
|
|
3941
|
+
jmp ._morebytes
|
|
3942
|
+
._done:
|
|
3943
|
+
movl 4(%esp,%eax),%eax
|
|
3944
|
+
fldl 0(%esp)
|
|
3945
|
+
fstpl 0(%eax)
|
|
3946
|
+
fldl 8(%esp)
|
|
3947
|
+
fstpl 8(%eax)
|
|
3948
|
+
fldl 16(%esp)
|
|
3949
|
+
fstpl 16(%eax)
|
|
3950
|
+
fldl 24(%esp)
|
|
3951
|
+
fstpl 24(%eax)
|
|
3952
|
+
fldl 32(%esp)
|
|
3953
|
+
fstpl 32(%eax)
|
|
3954
|
+
fldl 40(%esp)
|
|
3955
|
+
fstpl 40(%eax)
|
|
3956
|
+
fldl 48(%esp)
|
|
3957
|
+
fstpl 48(%eax)
|
|
3958
|
+
fldl -120(%edx)
|
|
3959
|
+
fstpl 56(%eax)
|
|
3960
|
+
fldl -112(%edx)
|
|
3961
|
+
fstpl 64(%eax)
|
|
3962
|
+
fldl -104(%edx)
|
|
3963
|
+
fstpl 72(%eax)
|
|
3964
|
+
fldl -96(%edx)
|
|
3965
|
+
fstpl 80(%eax)
|
|
3966
|
+
fldl -88(%edx)
|
|
3967
|
+
fstpl 88(%eax)
|
|
3968
|
+
fldl -80(%edx)
|
|
3969
|
+
fstpl 96(%eax)
|
|
3970
|
+
fldl -72(%edx)
|
|
3971
|
+
fstpl 104(%eax)
|
|
3972
|
+
fldl -64(%edx)
|
|
3973
|
+
fstpl 112(%eax)
|
|
3974
|
+
fldl -56(%edx)
|
|
3975
|
+
fstpl 120(%eax)
|
|
3976
|
+
fldl -48(%edx)
|
|
3977
|
+
fstpl 128(%eax)
|
|
3978
|
+
fldl -40(%edx)
|
|
3979
|
+
fstpl 136(%eax)
|
|
3980
|
+
fldl -32(%edx)
|
|
3981
|
+
fstpl 144(%eax)
|
|
3982
|
+
fldl -24(%edx)
|
|
3983
|
+
fstpl 152(%eax)
|
|
3984
|
+
movl 160(%ecx),%eax
|
|
3985
|
+
movl 164(%ecx),%ebx
|
|
3986
|
+
movl 168(%ecx),%esi
|
|
3987
|
+
movl 172(%ecx),%edi
|
|
3988
|
+
movl 176(%ecx),%ebp
|
|
3989
|
+
add %eax,%esp
|
|
3990
|
+
ret
|