交叉编译openGL,Ubuntu20.04 to aarch64 (二)

  编译openssl-openssl-master

进入解压后的文件夹:/home/huhu/third_part/openGL/openssl-openssl-master/

新建了一个build和install文件夹

注意:这个生成Makefile命令与其他的不一样(没有区分g++和gcc,而是用前缀)

./Configure --prefix=/home/huhu/third_part/openGL/openssl-openssl-master/install --cross-compile-prefix=aarch64-none-linux-gnu-    (经过测试有下面那两个问题)

./Configure linux-aarch64 --prefix=/home/huhu/third_part/openGL/openssl-openssl-master/install --cross-compile-prefix=aarch64-none-linux-gnu- (亲测好用的命令:因为我自己是arm64位 linux系统)

huhu@huhu-System-Product-Name:~/third_part/openGL/openssl-openssl-master$ ./Configure --prefix=/home/huhu/third_part/openGL/openssl-openssl-master/install --cross-compile-prefix=aarch64-none-linux-gnu-
Configuring OpenSSL version 3.1.0-dev for target linux-x86_64
Using os-specific seed configuration
Creating configdata.pm
Running configdata.pm
Creating Makefile.in
Creating Makefile

**********************************************************************
***                                                                ***
***   OpenSSL has been successfully configured                     ***
***                                                                ***
***   If you encounter a problem while building, please open an    ***
***   issue on GitHub   ***
***   and include the output from the following command:           ***
***                                                                ***
***       perl configdata.pm --dump                                ***
***                                                                ***
***   (If you are new to OpenSSL, you might want to consult the    ***
***   'Troubleshooting' section in the INSTALL.md file first)      ***
***                                                                ***
**********************************************************************

make

报错:

huhu@huhu-System-Product-Name:~/third_part/openGL/openssl-openssl-master$ make
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/crypto/bn_conf.h.in > include/crypto/bn_conf.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/crypto/dso_conf.h.in > include/crypto/dso_conf.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/asn1.h.in > include/openssl/asn1.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/asn1t.h.in > include/openssl/asn1t.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/bio.h.in > include/openssl/bio.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/cmp.h.in > include/openssl/cmp.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/cms.h.in > include/openssl/cms.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/conf.h.in > include/openssl/conf.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/configuration.h.in > include/openssl/configuration.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/crmf.h.in > include/openssl/crmf.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/crypto.h.in > include/openssl/crypto.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/ct.h.in > include/openssl/ct.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/err.h.in > include/openssl/err.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/ess.h.in > include/openssl/ess.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/fipskey.h.in > include/openssl/fipskey.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/lhash.h.in > include/openssl/lhash.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/ocsp.h.in > include/openssl/ocsp.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/opensslv.h.in > include/openssl/opensslv.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/pkcs12.h.in > include/openssl/pkcs12.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/pkcs7.h.in > include/openssl/pkcs7.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/safestack.h.in > include/openssl/safestack.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/srp.h.in > include/openssl/srp.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/ssl.h.in > include/openssl/ssl.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/ui.h.in > include/openssl/ui.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/x509.h.in > include/openssl/x509.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/x509_vfy.h.in > include/openssl/x509_vfy.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/x509v3.h.in > include/openssl/x509v3.h
/usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" test/provider_internal_test.cnf.in > test/provider_internal_test.cnf
make depend && make _build_sw
make[1]: Entering directory '/home/huhu/third_part/openGL/openssl-openssl-master'
make[1]: Leaving directory '/home/huhu/third_part/openGL/openssl-openssl-master'
make[1]: Entering directory '/home/huhu/third_part/openGL/openssl-openssl-master'
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -m64 -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-app_libctx.d.tmp -MT apps/lib/libapps-lib-app_libctx.o -c -o apps/lib/libapps-lib-app_libctx.o apps/lib/app_libctx.c
aarch64-none-linux-gnu-gcc: error: unrecognized command-line option '-m64'
make[1]: *** [Makefile:4245: apps/lib/libapps-lib-app_libctx.o] Error 1
make[1]: Leaving directory '/home/huhu/third_part/openGL/openssl-openssl-master'
make: *** [Makefile:3223:build_sw] 错误 2

博主提示:可以打开Makefile文件,将其中含有的-m64字符全部删掉即可。

 修改前:

交叉编译openGL,Ubuntu20.04 to aarch64 (二)_第1张图片

修改后:

交叉编译openGL,Ubuntu20.04 to aarch64 (二)_第2张图片

huhu@huhu-System-Product-Name:~/third_part/openGL/openssl-openssl-master$ make
make depend && make _build_sw
make[1]: Entering directory '/home/huhu/third_part/openGL/openssl-openssl-master'
make[1]: Leaving directory '/home/huhu/third_part/openGL/openssl-openssl-master'
make[1]: Entering directory '/home/huhu/third_part/openGL/openssl-openssl-master'
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-app_libctx.d.tmp -MT apps/lib/libapps-lib-app_libctx.o -c -o apps/lib/libapps-lib-app_libctx.o apps/lib/app_libctx.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-app_params.d.tmp -MT apps/lib/libapps-lib-app_params.o -c -o apps/lib/libapps-lib-app_params.o apps/lib/app_params.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-app_provider.d.tmp -MT apps/lib/libapps-lib-app_provider.o -c -o apps/lib/libapps-lib-app_provider.o apps/lib/app_provider.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-app_rand.d.tmp -MT apps/lib/libapps-lib-app_rand.o -c -o apps/lib/libapps-lib-app_rand.o apps/lib/app_rand.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-app_x509.d.tmp -MT apps/lib/libapps-lib-app_x509.o -c -o apps/lib/libapps-lib-app_x509.o apps/lib/app_x509.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-apps.d.tmp -MT apps/lib/libapps-lib-apps.o -c -o apps/lib/libapps-lib-apps.o apps/lib/apps.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-apps_ui.d.tmp -MT apps/lib/libapps-lib-apps_ui.o -c -o apps/lib/libapps-lib-apps_ui.o apps/lib/apps_ui.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-columns.d.tmp -MT apps/lib/libapps-lib-columns.o -c -o apps/lib/libapps-lib-columns.o apps/lib/columns.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-engine.d.tmp -MT apps/lib/libapps-lib-engine.o -c -o apps/lib/libapps-lib-engine.o apps/lib/engine.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-engine_loader.d.tmp -MT apps/lib/libapps-lib-engine_loader.o -c -o apps/lib/libapps-lib-engine_loader.o apps/lib/engine_loader.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-fmt.d.tmp -MT apps/lib/libapps-lib-fmt.o -c -o apps/lib/libapps-lib-fmt.o apps/lib/fmt.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-http_server.d.tmp -MT apps/lib/libapps-lib-http_server.o -c -o apps/lib/libapps-lib-http_server.o apps/lib/http_server.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-names.d.tmp -MT apps/lib/libapps-lib-names.o -c -o apps/lib/libapps-lib-names.o apps/lib/names.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-opt.d.tmp -MT apps/lib/libapps-lib-opt.o -c -o apps/lib/libapps-lib-opt.o apps/lib/opt.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-s_cb.d.tmp -MT apps/lib/libapps-lib-s_cb.o -c -o apps/lib/libapps-lib-s_cb.o apps/lib/s_cb.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-s_socket.d.tmp -MT apps/lib/libapps-lib-s_socket.o -c -o apps/lib/libapps-lib-s_socket.o apps/lib/s_socket.c
aarch64-none-linux-gnu-gcc  -I. -Iinclude -Iapps/include  -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -MMD -MF apps/lib/libapps-lib-tlssrp_depr.d.tmp -MT apps/lib/libapps-lib-tlssrp_depr.o -c -o apps/lib/libapps-lib-tlssrp_depr.o apps/lib/tlssrp_depr.c
rm -f apps/libapps.a
aarch64-none-linux-gnu-ar qc apps/libapps.a apps/lib/libapps-lib-app_libctx.o apps/lib/libapps-lib-app_params.o apps/lib/libapps-lib-app_provider.o apps/lib/libapps-lib-app_rand.o apps/lib/libapps-lib-app_x509.o apps/lib/libapps-lib-apps.o apps/lib/libapps-lib-apps_ui.o apps/lib/libapps-lib-columns.o apps/lib/libapps-lib-engine.o apps/lib/libapps-lib-engine_loader.o apps/lib/libapps-lib-fmt.o apps/lib/libapps-lib-http_server.o apps/lib/libapps-lib-names.o apps/lib/libapps-lib-opt.o apps/lib/libapps-lib-s_cb.o apps/lib/libapps-lib-s_socket.o apps/lib/libapps-lib-tlssrp_depr.o
aarch64-none-linux-gnu-ranlib apps/libapps.a || echo Never mind.
CC="aarch64-none-linux-gnu-gcc" /usr/bin/perl crypto/aes/asm/aes-x86_64.pl "elf" -I. -Iinclude -Iproviders/common/include -Iproviders/implementations/include -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -DAES_ASM -DBSAES_ASM -DCMLL_ASM -DECP_NISTZ256_ASM -DGHASH_ASM -DKECCAK1600_ASM -DMD5_ASM -DOPENSSL_BN_ASM_GF2m -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_CPUID_OBJ -DOPENSSL_IA32_SSE2 -DPOLY1305_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DVPAES_ASM -DWHIRLPOOL_ASM -DX25519_ASM  crypto/aes/aes-x86_64.s
aarch64-none-linux-gnu-gcc -fPIC -pthread -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/ssl\"" -DENGINESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/engines-3\"" -DMODULESDIR="\"/home/huhu/third_part/openGL/openssl-openssl-master/install/lib64/ossl-modules\"" -DOPENSSL_BUILDING_OPENSSL -DNDEBUG  -c -o crypto/aes/libcrypto-lib-aes-x86_64.o crypto/aes/aes-x86_64.s
crypto/aes/aes-x86_64.s: Assembler messages:
crypto/aes/aes-x86_64.s:6: Error: unknown mnemonic `xorl' -- `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:7: Error: unknown mnemonic `xorl' -- `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:8: Error: unknown mnemonic `xorl' -- `xorl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:9: Error: unknown mnemonic `xorl' -- `xorl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:11: Error: unknown mnemonic `movl' -- `movl 240(%r15),%r13d'
crypto/aes/aes-x86_64.s:12: Error: unknown mnemonic `subl' -- `subl $1,%r13d'
crypto/aes/aes-x86_64.s:13: Error: unknown mnemonic `jmp' -- `jmp .Lenc_loop'
crypto/aes/aes-x86_64.s:17: Error: unknown mnemonic `movzbl' -- `movzbl %al,%esi'
crypto/aes/aes-x86_64.s:18: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%edi'
crypto/aes/aes-x86_64.s:19: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%ebp'
crypto/aes/aes-x86_64.s:20: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:21: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:22: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rbp,8),%r12d'
crypto/aes/aes-x86_64.s:24: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:25: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%edi'
crypto/aes/aes-x86_64.s:26: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%ebp'
crypto/aes/aes-x86_64.s:27: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:28: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:29: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:31: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:32: Error: unknown mnemonic `shrl' -- `shrl $16,%ecx'
crypto/aes/aes-x86_64.s:33: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%ebp'
crypto/aes/aes-x86_64.s:34: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rsi,8),%r12d'
crypto/aes/aes-x86_64.s:35: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:36: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:38: Error: unknown mnemonic `shrl' -- `shrl $16,%ebx'
crypto/aes/aes-x86_64.s:39: Error: unknown mnemonic `leaq' -- `leaq 16(%r15),%r15'
crypto/aes/aes-x86_64.s:40: Error: unknown mnemonic `shrl' -- `shrl $16,%eax'
crypto/aes/aes-x86_64.s:42: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%esi'
crypto/aes/aes-x86_64.s:43: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%edi'
crypto/aes/aes-x86_64.s:44: Error: unknown mnemonic `movzbl' -- `movzbl %al,%ebp'
crypto/aes/aes-x86_64.s:45: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:46: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:47: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rbp,8),%r12d'
crypto/aes/aes-x86_64.s:49: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:50: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%edi'
crypto/aes/aes-x86_64.s:51: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%ebp'
crypto/aes/aes-x86_64.s:52: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:53: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:54: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:56: Error: unknown mnemonic `movl' -- `movl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:57: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%edi'
crypto/aes/aes-x86_64.s:58: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%ebp'
crypto/aes/aes-x86_64.s:59: Error: unknown mnemonic `movl' -- `movl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:60: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rdi,8),%r12d'
crypto/aes/aes-x86_64.s:61: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:63: Error: unknown mnemonic `movl' -- `movl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:64: Error: unknown mnemonic `movl' -- `movl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:65: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:66: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:67: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:68: Error: unknown mnemonic `xorl' -- `xorl %r8d,%edx'
crypto/aes/aes-x86_64.s:69: Error: unknown mnemonic `subl' -- `subl $1,%r13d'
crypto/aes/aes-x86_64.s:70: Error: unknown mnemonic `jnz' -- `jnz .Lenc_loop'
crypto/aes/aes-x86_64.s:71: Error: unknown mnemonic `movzbl' -- `movzbl %al,%esi'
crypto/aes/aes-x86_64.s:72: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%edi'
crypto/aes/aes-x86_64.s:73: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%ebp'
crypto/aes/aes-x86_64.s:74: Error: unknown mnemonic `movzbl' -- `movzbl 2(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:75: Error: unknown mnemonic `movzbl' -- `movzbl 2(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:76: Error: unknown mnemonic `movzbl' -- `movzbl 2(%r14,%rbp,8),%r12d'
crypto/aes/aes-x86_64.s:78: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:79: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%edi'
crypto/aes/aes-x86_64.s:80: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%ebp'
crypto/aes/aes-x86_64.s:81: Error: unknown mnemonic `movzbl' -- `movzbl 2(%r14,%rsi,8),%r8d'
crypto/aes/aes-x86_64.s:82: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rdi,8),%edi'
crypto/aes/aes-x86_64.s:83: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rbp,8),%ebp'
crypto/aes/aes-x86_64.s:85: Error: unknown mnemonic `andl' -- `andl $0x0000ff00,%edi'
crypto/aes/aes-x86_64.s:86: Error: unknown mnemonic `andl' -- `andl $0x0000ff00,%ebp'
crypto/aes/aes-x86_64.s:88: Error: unknown mnemonic `xorl' -- `xorl %edi,%r10d'
crypto/aes/aes-x86_64.s:89: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r11d'
crypto/aes/aes-x86_64.s:90: Error: unknown mnemonic `shrl' -- `shrl $16,%ecx'
crypto/aes/aes-x86_64.s:92: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:93: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%edi'
crypto/aes/aes-x86_64.s:94: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:95: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rsi,8),%esi'
crypto/aes/aes-x86_64.s:96: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rdi,8),%edi'
crypto/aes/aes-x86_64.s:98: Error: unknown mnemonic `andl' -- `andl $0x0000ff00,%esi'
crypto/aes/aes-x86_64.s:99: Error: unknown mnemonic `andl' -- `andl $0x0000ff00,%edi'
crypto/aes/aes-x86_64.s:100: Error: unknown mnemonic `shrl' -- `shrl $16,%ebx'
crypto/aes/aes-x86_64.s:101: Error: unknown mnemonic `xorl' -- `xorl %esi,%r12d'
crypto/aes/aes-x86_64.s:102: Error: unknown mnemonic `xorl' -- `xorl %edi,%r8d'
crypto/aes/aes-x86_64.s:103: Error: unknown mnemonic `shrl' -- `shrl $16,%eax'
crypto/aes/aes-x86_64.s:105: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%esi'
crypto/aes/aes-x86_64.s:106: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%edi'
crypto/aes/aes-x86_64.s:107: Error: unknown mnemonic `movzbl' -- `movzbl %al,%ebp'
crypto/aes/aes-x86_64.s:108: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rsi,8),%esi'
crypto/aes/aes-x86_64.s:109: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rdi,8),%edi'
crypto/aes/aes-x86_64.s:110: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rbp,8),%ebp'
crypto/aes/aes-x86_64.s:112: Error: unknown mnemonic `andl' -- `andl $0x00ff0000,%esi'
crypto/aes/aes-x86_64.s:113: Error: unknown mnemonic `andl' -- `andl $0x00ff0000,%edi'
crypto/aes/aes-x86_64.s:114: Error: unknown mnemonic `andl' -- `andl $0x00ff0000,%ebp'
crypto/aes/aes-x86_64.s:116: Error: unknown mnemonic `xorl' -- `xorl %esi,%r10d'
crypto/aes/aes-x86_64.s:117: Error: unknown mnemonic `xorl' -- `xorl %edi,%r11d'
crypto/aes/aes-x86_64.s:118: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r12d'
crypto/aes/aes-x86_64.s:120: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%esi'
crypto/aes/aes-x86_64.s:121: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%edi'
crypto/aes/aes-x86_64.s:122: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%ebp'
crypto/aes/aes-x86_64.s:123: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rsi,8),%esi'
crypto/aes/aes-x86_64.s:124: Error: unknown mnemonic `movl' -- `movl 2(%r14,%rdi,8),%edi'
crypto/aes/aes-x86_64.s:125: Error: unknown mnemonic `movl' -- `movl 2(%r14,%rbp,8),%ebp'
crypto/aes/aes-x86_64.s:127: Error: unknown mnemonic `andl' -- `andl $0x00ff0000,%esi'
crypto/aes/aes-x86_64.s:128: Error: unknown mnemonic `andl' -- `andl $0xff000000,%edi'
crypto/aes/aes-x86_64.s:129: Error: unknown mnemonic `andl' -- `andl $0xff000000,%ebp'
crypto/aes/aes-x86_64.s:131: Error: unknown mnemonic `xorl' -- `xorl %esi,%r8d'
crypto/aes/aes-x86_64.s:132: Error: unknown mnemonic `xorl' -- `xorl %edi,%r10d'
crypto/aes/aes-x86_64.s:133: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r11d'
crypto/aes/aes-x86_64.s:135: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:136: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%edi'
crypto/aes/aes-x86_64.s:137: Error: unknown mnemonic `movl' -- `movl 16+12(%r15),%edx'
crypto/aes/aes-x86_64.s:138: Error: unknown mnemonic `movl' -- `movl 2(%r14,%rsi,8),%esi'
crypto/aes/aes-x86_64.s:139: Error: unknown mnemonic `movl' -- `movl 2(%r14,%rdi,8),%edi'
crypto/aes/aes-x86_64.s:140: Error: unknown mnemonic `movl' -- `movl 16+0(%r15),%eax'
crypto/aes/aes-x86_64.s:142: Error: unknown mnemonic `andl' -- `andl $0xff000000,%esi'
crypto/aes/aes-x86_64.s:143: Error: unknown mnemonic `andl' -- `andl $0xff000000,%edi'
crypto/aes/aes-x86_64.s:145: Error: unknown mnemonic `xorl' -- `xorl %esi,%r12d'
crypto/aes/aes-x86_64.s:146: Error: unknown mnemonic `xorl' -- `xorl %edi,%r8d'
crypto/aes/aes-x86_64.s:148: Error: unknown mnemonic `movl' -- `movl 16+4(%r15),%ebx'
crypto/aes/aes-x86_64.s:149: Error: unknown mnemonic `movl' -- `movl 16+8(%r15),%ecx'
crypto/aes/aes-x86_64.s:150: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:151: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:152: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:153: Error: unknown mnemonic `xorl' -- `xorl %r8d,%edx'
crypto/aes/aes-x86_64.s:161: Error: unknown mnemonic `leaq' -- `leaq 128(%r14),%r8'
crypto/aes/aes-x86_64.s:162: Error: unknown mnemonic `movl' -- `movl 0-128(%r8),%edi'
crypto/aes/aes-x86_64.s:163: Error: unknown mnemonic `movl' -- `movl 32-128(%r8),%ebp'
crypto/aes/aes-x86_64.s:164: Error: unknown mnemonic `movl' -- `movl 64-128(%r8),%r10d'
crypto/aes/aes-x86_64.s:165: Error: unknown mnemonic `movl' -- `movl 96-128(%r8),%r11d'
crypto/aes/aes-x86_64.s:166: Error: unknown mnemonic `movl' -- `movl 128-128(%r8),%edi'
crypto/aes/aes-x86_64.s:167: Error: unknown mnemonic `movl' -- `movl 160-128(%r8),%ebp'
crypto/aes/aes-x86_64.s:168: Error: unknown mnemonic `movl' -- `movl 192-128(%r8),%r10d'
crypto/aes/aes-x86_64.s:169: Error: unknown mnemonic `movl' -- `movl 224-128(%r8),%r11d'
crypto/aes/aes-x86_64.s:170: Error: unknown mnemonic `jmp' -- `jmp .Lenc_loop_compact'
crypto/aes/aes-x86_64.s:173: Error: unknown mnemonic `xorl' -- `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:174: Error: unknown mnemonic `xorl' -- `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:175: Error: unknown mnemonic `xorl' -- `xorl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:176: Error: unknown mnemonic `xorl' -- `xorl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:177: Error: unknown mnemonic `leaq' -- `leaq 16(%r15),%r15'
crypto/aes/aes-x86_64.s:178: Error: unknown mnemonic `movzbl' -- `movzbl %al,%r10d'
crypto/aes/aes-x86_64.s:179: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%r11d'
crypto/aes/aes-x86_64.s:180: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%r12d'
crypto/aes/aes-x86_64.s:181: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%r8d'
crypto/aes/aes-x86_64.s:182: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:183: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%edi'
crypto/aes/aes-x86_64.s:184: Error: unknown mnemonic `shrl' -- `shrl $16,%ecx'
crypto/aes/aes-x86_64.s:185: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%ebp'
crypto/aes/aes-x86_64.s:186: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r10,1),%r10d'
crypto/aes/aes-x86_64.s:187: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r11,1),%r11d'
crypto/aes/aes-x86_64.s:188: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r12,1),%r12d'
crypto/aes/aes-x86_64.s:189: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r8,1),%r8d'
crypto/aes/aes-x86_64.s:191: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%r9d'
crypto/aes/aes-x86_64.s:192: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%esi'
crypto/aes/aes-x86_64.s:193: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%r13d'
crypto/aes/aes-x86_64.s:194: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%edi'
crypto/aes/aes-x86_64.s:195: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:196: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:198: Error: operand 1 must be a SIMD vector register -- `shll $8,%r9d'
crypto/aes/aes-x86_64.s:199: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:200: Error: operand 1 must be a SIMD vector register -- `shll $8,%r13d'
crypto/aes/aes-x86_64.s:201: Error: unknown mnemonic `xorl' -- `xorl %r9d,%r10d'
crypto/aes/aes-x86_64.s:202: Error: unknown mnemonic `shrl' -- `shrl $16,%eax'
crypto/aes/aes-x86_64.s:203: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%r9d'
crypto/aes/aes-x86_64.s:204: Error: unknown mnemonic `shrl' -- `shrl $16,%ebx'
crypto/aes/aes-x86_64.s:205: Error: unknown mnemonic `xorl' -- `xorl %r13d,%r11d'
crypto/aes/aes-x86_64.s:206: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebp'
crypto/aes/aes-x86_64.s:207: Error: unknown mnemonic `movzbl' -- `movzbl %al,%r13d'
crypto/aes/aes-x86_64.s:208: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:209: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r12d'
crypto/aes/aes-x86_64.s:211: Error: operand 1 must be a SIMD vector register -- `shll $8,%esi'
crypto/aes/aes-x86_64.s:212: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%ebp'
crypto/aes/aes-x86_64.s:213: Error: operand 1 must be a SIMD vector register -- `shll $16,%edi'
crypto/aes/aes-x86_64.s:214: Error: unknown mnemonic `xorl' -- `xorl %esi,%r8d'
crypto/aes/aes-x86_64.s:215: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r9,1),%r9d'
crypto/aes/aes-x86_64.s:216: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:217: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r13,1),%r13d'
crypto/aes/aes-x86_64.s:218: Error: unknown mnemonic `xorl' -- `xorl %edi,%r10d'
crypto/aes/aes-x86_64.s:220: Error: unknown mnemonic `shrl' -- `shrl $8,%ecx'
crypto/aes/aes-x86_64.s:221: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%edi'
crypto/aes/aes-x86_64.s:222: Error: operand 1 must be a SIMD vector register -- `shll $16,%r9d'
crypto/aes/aes-x86_64.s:223: Error: unknown mnemonic `shrl' -- `shrl $8,%ebx'
crypto/aes/aes-x86_64.s:224: Error: operand 1 must be a SIMD vector register -- `shll $16,%r13d'
crypto/aes/aes-x86_64.s:225: Error: unknown mnemonic `xorl' -- `xorl %r9d,%r11d'
crypto/aes/aes-x86_64.s:226: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:227: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:228: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:229: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rcx,1),%edx'
crypto/aes/aes-x86_64.s:230: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbx,1),%ecx'
crypto/aes/aes-x86_64.s:232: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebp'
crypto/aes/aes-x86_64.s:233: Error: unknown mnemonic `xorl' -- `xorl %r13d,%r12d'
crypto/aes/aes-x86_64.s:234: Error: operand 1 must be a SIMD vector register -- `shll $24,%esi'
crypto/aes/aes-x86_64.s:235: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r8d'
crypto/aes/aes-x86_64.s:236: Error: operand 1 must be a SIMD vector register -- `shll $24,%edi'
crypto/aes/aes-x86_64.s:237: Error: unknown mnemonic `xorl' -- `xorl %esi,%r10d'
crypto/aes/aes-x86_64.s:238: Error: operand 1 must be a SIMD vector register -- `shll $24,%edx'
crypto/aes/aes-x86_64.s:239: Error: unknown mnemonic `xorl' -- `xorl %edi,%r11d'
crypto/aes/aes-x86_64.s:240: Error: operand 1 must be a SIMD vector register -- `shll $24,%ecx'
crypto/aes/aes-x86_64.s:241: Error: unknown mnemonic `movl' -- `movl %r10d,%eax'
crypto/aes/aes-x86_64.s:242: Error: unknown mnemonic `movl' -- `movl %r11d,%ebx'
crypto/aes/aes-x86_64.s:243: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:244: Error: unknown mnemonic `xorl' -- `xorl %r8d,%edx'
crypto/aes/aes-x86_64.s:245: Error: unknown mnemonic `cmpq' -- `cmpq 16(%rsp),%r15'
crypto/aes/aes-x86_64.s:246: Error: unknown mnemonic `je' -- `je .Lenc_compact_done'
crypto/aes/aes-x86_64.s:247: Error: unknown mnemonic `movl' -- `movl $0x80808080,%r10d'
crypto/aes/aes-x86_64.s:248: Error: unknown mnemonic `movl' -- `movl $0x80808080,%r11d'
crypto/aes/aes-x86_64.s:249: Error: unknown mnemonic `andl' -- `andl %eax,%r10d'
crypto/aes/aes-x86_64.s:250: Error: unknown mnemonic `andl' -- `andl %ebx,%r11d'
crypto/aes/aes-x86_64.s:251: Error: unknown mnemonic `movl' -- `movl %r10d,%esi'
crypto/aes/aes-x86_64.s:252: Error: unknown mnemonic `movl' -- `movl %r11d,%edi'
crypto/aes/aes-x86_64.s:253: Error: unknown mnemonic `shrl' -- `shrl $7,%r10d'
crypto/aes/aes-x86_64.s:254: Error: unknown mnemonic `leal' -- `leal (%rax,%rax,1),%r8d'
crypto/aes/aes-x86_64.s:255: Error: unknown mnemonic `shrl' -- `shrl $7,%r11d'
crypto/aes/aes-x86_64.s:256: Error: unknown mnemonic `leal' -- `leal (%rbx,%rbx,1),%r9d'
crypto/aes/aes-x86_64.s:257: Error: unknown mnemonic `subl' -- `subl %r10d,%esi'
crypto/aes/aes-x86_64.s:258: Error: unknown mnemonic `subl' -- `subl %r11d,%edi'
crypto/aes/aes-x86_64.s:259: Error: unknown mnemonic `andl' -- `andl $0xfefefefe,%r8d'
crypto/aes/aes-x86_64.s:260: Error: unknown mnemonic `andl' -- `andl $0xfefefefe,%r9d'
crypto/aes/aes-x86_64.s:261: Error: unknown mnemonic `andl' -- `andl $0x1b1b1b1b,%esi'
crypto/aes/aes-x86_64.s:262: Error: unknown mnemonic `andl' -- `andl $0x1b1b1b1b,%edi'
crypto/aes/aes-x86_64.s:263: Error: unknown mnemonic `movl' -- `movl %eax,%r10d'
crypto/aes/aes-x86_64.s:264: Error: unknown mnemonic `movl' -- `movl %ebx,%r11d'
crypto/aes/aes-x86_64.s:265: Error: unknown mnemonic `xorl' -- `xorl %esi,%r8d'
crypto/aes/aes-x86_64.s:266: Error: unknown mnemonic `xorl' -- `xorl %edi,%r9d'
crypto/aes/aes-x86_64.s:268: Error: unknown mnemonic `xorl' -- `xorl %r8d,%eax'
crypto/aes/aes-x86_64.s:269: Error: unknown mnemonic `xorl' -- `xorl %r9d,%ebx'
crypto/aes/aes-x86_64.s:270: Error: unknown mnemonic `movl' -- `movl $0x80808080,%r12d'
crypto/aes/aes-x86_64.s:271: Error: unknown mnemonic `roll' -- `roll $24,%eax'
crypto/aes/aes-x86_64.s:272: Error: unknown mnemonic `movl' -- `movl $0x80808080,%ebp'
crypto/aes/aes-x86_64.s:273: Error: unknown mnemonic `roll' -- `roll $24,%ebx'
crypto/aes/aes-x86_64.s:274: Error: unknown mnemonic `andl' -- `andl %ecx,%r12d'
crypto/aes/aes-x86_64.s:275: Error: unknown mnemonic `andl' -- `andl %edx,%ebp'
crypto/aes/aes-x86_64.s:276: Error: unknown mnemonic `xorl' -- `xorl %r8d,%eax'
crypto/aes/aes-x86_64.s:277: Error: unknown mnemonic `xorl' -- `xorl %r9d,%ebx'
crypto/aes/aes-x86_64.s:278: Error: unknown mnemonic `movl' -- `movl %r12d,%esi'
crypto/aes/aes-x86_64.s:279: Error: unknown mnemonic `rorl' -- `rorl $16,%r10d'
crypto/aes/aes-x86_64.s:280: Error: unknown mnemonic `movl' -- `movl %ebp,%edi'
crypto/aes/aes-x86_64.s:281: Error: unknown mnemonic `rorl' -- `rorl $16,%r11d'
crypto/aes/aes-x86_64.s:282: Error: unknown mnemonic `leal' -- `leal (%rcx,%rcx,1),%r8d'
crypto/aes/aes-x86_64.s:283: Error: unknown mnemonic `shrl' -- `shrl $7,%r12d'
crypto/aes/aes-x86_64.s:284: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:285: Error: unknown mnemonic `shrl' -- `shrl $7,%ebp'
crypto/aes/aes-x86_64.s:286: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:287: Error: unknown mnemonic `rorl' -- `rorl $8,%r10d'
crypto/aes/aes-x86_64.s:288: Error: unknown mnemonic `leal' -- `leal (%rdx,%rdx,1),%r9d'
crypto/aes/aes-x86_64.s:289: Error: unknown mnemonic `rorl' -- `rorl $8,%r11d'
crypto/aes/aes-x86_64.s:290: Error: unknown mnemonic `subl' -- `subl %r12d,%esi'
crypto/aes/aes-x86_64.s:291: Error: unknown mnemonic `subl' -- `subl %ebp,%edi'
crypto/aes/aes-x86_64.s:292: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:293: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:295: Error: unknown mnemonic `andl' -- `andl $0xfefefefe,%r8d'
crypto/aes/aes-x86_64.s:296: Error: unknown mnemonic `andl' -- `andl $0xfefefefe,%r9d'
crypto/aes/aes-x86_64.s:297: Error: unknown mnemonic `andl' -- `andl $0x1b1b1b1b,%esi'
crypto/aes/aes-x86_64.s:298: Error: unknown mnemonic `andl' -- `andl $0x1b1b1b1b,%edi'
crypto/aes/aes-x86_64.s:299: Error: unknown mnemonic `movl' -- `movl %ecx,%r12d'
crypto/aes/aes-x86_64.s:300: Error: unknown mnemonic `movl' -- `movl %edx,%ebp'
crypto/aes/aes-x86_64.s:301: Error: unknown mnemonic `xorl' -- `xorl %esi,%r8d'
crypto/aes/aes-x86_64.s:302: Error: unknown mnemonic `xorl' -- `xorl %edi,%r9d'
crypto/aes/aes-x86_64.s:304: Error: unknown mnemonic `rorl' -- `rorl $16,%r12d'
crypto/aes/aes-x86_64.s:305: Error: unknown mnemonic `xorl' -- `xorl %r8d,%ecx'
crypto/aes/aes-x86_64.s:306: Error: unknown mnemonic `rorl' -- `rorl $16,%ebp'
crypto/aes/aes-x86_64.s:307: Error: unknown mnemonic `xorl' -- `xorl %r9d,%edx'
crypto/aes/aes-x86_64.s:308: Error: unknown mnemonic `roll' -- `roll $24,%ecx'
crypto/aes/aes-x86_64.s:309: Error: unknown mnemonic `movl' -- `movl 0(%r14),%esi'
crypto/aes/aes-x86_64.s:310: Error: unknown mnemonic `roll' -- `roll $24,%edx'
crypto/aes/aes-x86_64.s:311: Error: unknown mnemonic `xorl' -- `xorl %r8d,%ecx'
crypto/aes/aes-x86_64.s:312: Error: unknown mnemonic `movl' -- `movl 64(%r14),%edi'
crypto/aes/aes-x86_64.s:313: Error: unknown mnemonic `xorl' -- `xorl %r9d,%edx'
crypto/aes/aes-x86_64.s:314: Error: unknown mnemonic `movl' -- `movl 128(%r14),%r8d'
crypto/aes/aes-x86_64.s:315: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:316: Error: unknown mnemonic `rorl' -- `rorl $8,%r12d'
crypto/aes/aes-x86_64.s:317: Error: unknown mnemonic `xorl' -- `xorl %ebp,%edx'
crypto/aes/aes-x86_64.s:318: Error: unknown mnemonic `rorl' -- `rorl $8,%ebp'
crypto/aes/aes-x86_64.s:319: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:320: Error: unknown mnemonic `movl' -- `movl 192(%r14),%r9d'
crypto/aes/aes-x86_64.s:321: Error: unknown mnemonic `xorl' -- `xorl %ebp,%edx'
crypto/aes/aes-x86_64.s:322: Error: unknown mnemonic `jmp' -- `jmp .Lenc_loop_compact'
crypto/aes/aes-x86_64.s:325: Error: unknown mnemonic `xorl' -- `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:326: Error: unknown mnemonic `xorl' -- `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:327: Error: unknown mnemonic `xorl' -- `xorl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:328: Error: unknown mnemonic `xorl' -- `xorl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:341: Error: unknown mnemonic `movq' -- `movq %rsp,%rax'
crypto/aes/aes-x86_64.s:342: Error: bad register expression
crypto/aes/aes-x86_64.s:343: Error: unknown mnemonic `pushq' -- `pushq %rbx'
crypto/aes/aes-x86_64.s:344: Error: bad register expression
crypto/aes/aes-x86_64.s:345: Error: unknown mnemonic `pushq' -- `pushq %rbp'
crypto/aes/aes-x86_64.s:346: Error: bad register expression
crypto/aes/aes-x86_64.s:347: Error: unknown mnemonic `pushq' -- `pushq %r12'
crypto/aes/aes-x86_64.s:348: Error: bad register expression
crypto/aes/aes-x86_64.s:349: Error: unknown mnemonic `pushq' -- `pushq %r13'
crypto/aes/aes-x86_64.s:350: Error: bad register expression
crypto/aes/aes-x86_64.s:351: Error: unknown mnemonic `pushq' -- `pushq %r14'
crypto/aes/aes-x86_64.s:352: Error: bad register expression
crypto/aes/aes-x86_64.s:353: Error: unknown mnemonic `pushq' -- `pushq %r15'
crypto/aes/aes-x86_64.s:354: Error: bad register expression
crypto/aes/aes-x86_64.s:357: Error: unknown mnemonic `leaq' -- `leaq -63(%rdx),%rcx'
crypto/aes/aes-x86_64.s:358: Error: unknown mnemonic `andq' -- `andq $-64,%rsp'
crypto/aes/aes-x86_64.s:359: Error: unknown mnemonic `subq' -- `subq %rsp,%rcx'
crypto/aes/aes-x86_64.s:360: Error: unknown mnemonic `negq' -- `negq %rcx'
crypto/aes/aes-x86_64.s:361: Error: unknown mnemonic `andq' -- `andq $0x3c0,%rcx'
crypto/aes/aes-x86_64.s:362: Error: unknown mnemonic `subq' -- `subq %rcx,%rsp'
crypto/aes/aes-x86_64.s:363: Error: unknown mnemonic `subq' -- `subq $32,%rsp'
crypto/aes/aes-x86_64.s:365: Error: unknown mnemonic `movq' -- `movq %rsi,16(%rsp)'
crypto/aes/aes-x86_64.s:366: Error: unknown mnemonic `movq' -- `movq %rax,24(%rsp)'
crypto/aes/aes-x86_64.s:370: Error: unknown mnemonic `movq' -- `movq %rdx,%r15'
crypto/aes/aes-x86_64.s:371: Error: unknown mnemonic `movl' -- `movl 240(%r15),%r13d'
crypto/aes/aes-x86_64.s:373: Error: unknown mnemonic `movl' -- `movl 0(%rdi),%eax'
crypto/aes/aes-x86_64.s:374: Error: unknown mnemonic `movl' -- `movl 4(%rdi),%ebx'
crypto/aes/aes-x86_64.s:375: Error: unknown mnemonic `movl' -- `movl 8(%rdi),%ecx'
crypto/aes/aes-x86_64.s:376: Error: unknown mnemonic `movl' -- `movl 12(%rdi),%edx'
crypto/aes/aes-x86_64.s:378: Error: operand 1 must be a SIMD vector register -- `shll $4,%r13d'
crypto/aes/aes-x86_64.s:379: Error: unknown mnemonic `leaq' -- `leaq (%r15,%r13,1),%rbp'
crypto/aes/aes-x86_64.s:380: Error: unknown mnemonic `movq' -- `movq %r15,(%rsp)'
crypto/aes/aes-x86_64.s:381: Error: unknown mnemonic `movq' -- `movq %rbp,8(%rsp)'
crypto/aes/aes-x86_64.s:384: Error: unknown mnemonic `leaq' -- `leaq .LAES_Te+2048(%rip),%r14'
crypto/aes/aes-x86_64.s:385: Error: unknown mnemonic `leaq' -- `leaq 768(%rsp),%rbp'
crypto/aes/aes-x86_64.s:386: Error: unknown mnemonic `subq' -- `subq %r14,%rbp'
crypto/aes/aes-x86_64.s:387: Error: unknown mnemonic `andq' -- `andq $0x300,%rbp'
crypto/aes/aes-x86_64.s:388: Error: unknown mnemonic `leaq' -- `leaq (%r14,%rbp,1),%r14'
crypto/aes/aes-x86_64.s:390: Error: unknown mnemonic `call' -- `call _x86_64_AES_encrypt_compact'
crypto/aes/aes-x86_64.s:392: Error: unknown mnemonic `movq' -- `movq 16(%rsp),%r9'
crypto/aes/aes-x86_64.s:393: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%rsi'
crypto/aes/aes-x86_64.s:394: Error: bad register expression
crypto/aes/aes-x86_64.s:395: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:396: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:397: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:398: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:400: Error: unknown mnemonic `movq' -- `movq -48(%rsi),%r15'
crypto/aes/aes-x86_64.s:401: Error: bad register expression
crypto/aes/aes-x86_64.s:402: Error: unknown mnemonic `movq' -- `movq -40(%rsi),%r14'
crypto/aes/aes-x86_64.s:403: Error: bad register expression
crypto/aes/aes-x86_64.s:404: Error: unknown mnemonic `movq' -- `movq -32(%rsi),%r13'
crypto/aes/aes-x86_64.s:405: Error: bad register expression
crypto/aes/aes-x86_64.s:406: Error: unknown mnemonic `movq' -- `movq -24(%rsi),%r12'
crypto/aes/aes-x86_64.s:407: Error: bad register expression
crypto/aes/aes-x86_64.s:408: Error: unknown mnemonic `movq' -- `movq -16(%rsi),%rbp'
crypto/aes/aes-x86_64.s:409: Error: bad register expression
crypto/aes/aes-x86_64.s:410: Error: unknown mnemonic `movq' -- `movq -8(%rsi),%rbx'
crypto/aes/aes-x86_64.s:411: Error: bad register expression
crypto/aes/aes-x86_64.s:412: Error: unknown mnemonic `leaq' -- `leaq (%rsi),%rsp'
crypto/aes/aes-x86_64.s:413: Error: bad register expression
crypto/aes/aes-x86_64.s:422: Error: unknown mnemonic `xorl' -- `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:423: Error: unknown mnemonic `xorl' -- `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:424: Error: unknown mnemonic `xorl' -- `xorl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:425: Error: unknown mnemonic `xorl' -- `xorl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:427: Error: unknown mnemonic `movl' -- `movl 240(%r15),%r13d'
crypto/aes/aes-x86_64.s:428: Error: unknown mnemonic `subl' -- `subl $1,%r13d'
crypto/aes/aes-x86_64.s:429: Error: unknown mnemonic `jmp' -- `jmp .Ldec_loop'
crypto/aes/aes-x86_64.s:433: Error: unknown mnemonic `movzbl' -- `movzbl %al,%esi'
crypto/aes/aes-x86_64.s:434: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%edi'
crypto/aes/aes-x86_64.s:435: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%ebp'
crypto/aes/aes-x86_64.s:436: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:437: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:438: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rbp,8),%r12d'
crypto/aes/aes-x86_64.s:440: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:441: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%edi'
crypto/aes/aes-x86_64.s:442: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%ebp'
crypto/aes/aes-x86_64.s:443: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:444: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:445: Error: unknown mnemonic `movl' -- `movl 0(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:447: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:448: Error: unknown mnemonic `shrl' -- `shrl $16,%eax'
crypto/aes/aes-x86_64.s:449: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%ebp'
crypto/aes/aes-x86_64.s:450: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rsi,8),%r12d'
crypto/aes/aes-x86_64.s:451: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:452: Error: unknown mnemonic `xorl' -- `xorl 3(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:454: Error: unknown mnemonic `shrl' -- `shrl $16,%ebx'
crypto/aes/aes-x86_64.s:455: Error: unknown mnemonic `leaq' -- `leaq 16(%r15),%r15'
crypto/aes/aes-x86_64.s:456: Error: unknown mnemonic `shrl' -- `shrl $16,%ecx'
crypto/aes/aes-x86_64.s:458: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%esi'
crypto/aes/aes-x86_64.s:459: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%edi'
crypto/aes/aes-x86_64.s:460: Error: unknown mnemonic `movzbl' -- `movzbl %al,%ebp'
crypto/aes/aes-x86_64.s:461: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:462: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:463: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rbp,8),%r12d'
crypto/aes/aes-x86_64.s:465: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:466: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%edi'
crypto/aes/aes-x86_64.s:467: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%ebp'
crypto/aes/aes-x86_64.s:468: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rsi,8),%r10d'
crypto/aes/aes-x86_64.s:469: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rdi,8),%r11d'
crypto/aes/aes-x86_64.s:470: Error: unknown mnemonic `xorl' -- `xorl 2(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:472: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:473: Error: unknown mnemonic `movl' -- `movl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:474: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%ebp'
crypto/aes/aes-x86_64.s:475: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rsi,8),%r12d'
crypto/aes/aes-x86_64.s:476: Error: unknown mnemonic `movl' -- `movl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:477: Error: unknown mnemonic `xorl' -- `xorl 1(%r14,%rbp,8),%r8d'
crypto/aes/aes-x86_64.s:479: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:480: Error: unknown mnemonic `movl' -- `movl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:481: Error: unknown mnemonic `movl' -- `movl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:482: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:483: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:484: Error: unknown mnemonic `xorl' -- `xorl %r8d,%edx'
crypto/aes/aes-x86_64.s:485: Error: unknown mnemonic `subl' -- `subl $1,%r13d'
crypto/aes/aes-x86_64.s:486: Error: unknown mnemonic `jnz' -- `jnz .Ldec_loop'
crypto/aes/aes-x86_64.s:487: Error: unknown mnemonic `leaq' -- `leaq 2048(%r14),%r14'
crypto/aes/aes-x86_64.s:488: Error: unknown mnemonic `movzbl' -- `movzbl %al,%esi'
crypto/aes/aes-x86_64.s:489: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%edi'
crypto/aes/aes-x86_64.s:490: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%ebp'
crypto/aes/aes-x86_64.s:491: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%r10d'
crypto/aes/aes-x86_64.s:492: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%r11d'
crypto/aes/aes-x86_64.s:493: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%r12d'
crypto/aes/aes-x86_64.s:495: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:496: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%edi'
crypto/aes/aes-x86_64.s:497: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%ebp'
crypto/aes/aes-x86_64.s:498: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%r8d'
crypto/aes/aes-x86_64.s:499: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:500: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:502: Error: operand 1 must be a SIMD vector register -- `shll $8,%edi'
crypto/aes/aes-x86_64.s:503: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebp'
crypto/aes/aes-x86_64.s:505: Error: unknown mnemonic `xorl' -- `xorl %edi,%r10d'
crypto/aes/aes-x86_64.s:506: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r11d'
crypto/aes/aes-x86_64.s:507: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:509: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:510: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%edi'
crypto/aes/aes-x86_64.s:511: Error: unknown mnemonic `shrl' -- `shrl $16,%eax'
crypto/aes/aes-x86_64.s:512: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:513: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:515: Error: operand 1 must be a SIMD vector register -- `shll $8,%esi'
crypto/aes/aes-x86_64.s:516: Error: operand 1 must be a SIMD vector register -- `shll $8,%edi'
crypto/aes/aes-x86_64.s:517: Error: unknown mnemonic `shrl' -- `shrl $16,%ebx'
crypto/aes/aes-x86_64.s:518: Error: unknown mnemonic `xorl' -- `xorl %esi,%r12d'
crypto/aes/aes-x86_64.s:519: Error: unknown mnemonic `xorl' -- `xorl %edi,%r8d'
crypto/aes/aes-x86_64.s:520: Error: unknown mnemonic `shrl' -- `shrl $16,%ecx'
crypto/aes/aes-x86_64.s:522: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%esi'
crypto/aes/aes-x86_64.s:523: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%edi'
crypto/aes/aes-x86_64.s:524: Error: unknown mnemonic `movzbl' -- `movzbl %al,%ebp'
crypto/aes/aes-x86_64.s:525: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:526: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:527: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:529: Error: operand 1 must be a SIMD vector register -- `shll $16,%esi'
crypto/aes/aes-x86_64.s:530: Error: operand 1 must be a SIMD vector register -- `shll $16,%edi'
crypto/aes/aes-x86_64.s:531: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebp'
crypto/aes/aes-x86_64.s:533: Error: unknown mnemonic `xorl' -- `xorl %esi,%r10d'
crypto/aes/aes-x86_64.s:534: Error: unknown mnemonic `xorl' -- `xorl %edi,%r11d'
crypto/aes/aes-x86_64.s:535: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r12d'
crypto/aes/aes-x86_64.s:537: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%esi'
crypto/aes/aes-x86_64.s:538: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%edi'
crypto/aes/aes-x86_64.s:539: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%ebp'
crypto/aes/aes-x86_64.s:540: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:541: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:542: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:544: Error: operand 1 must be a SIMD vector register -- `shll $16,%esi'
crypto/aes/aes-x86_64.s:545: Error: operand 1 must be a SIMD vector register -- `shll $24,%edi'
crypto/aes/aes-x86_64.s:546: Error: operand 1 must be a SIMD vector register -- `shll $24,%ebp'
crypto/aes/aes-x86_64.s:548: Error: unknown mnemonic `xorl' -- `xorl %esi,%r8d'
crypto/aes/aes-x86_64.s:549: Error: unknown mnemonic `xorl' -- `xorl %edi,%r10d'
crypto/aes/aes-x86_64.s:550: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r11d'
crypto/aes/aes-x86_64.s:552: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:553: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%edi'
crypto/aes/aes-x86_64.s:554: Error: unknown mnemonic `movl' -- `movl 16+12(%r15),%edx'
crypto/aes/aes-x86_64.s:555: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:556: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:557: Error: unknown mnemonic `movl' -- `movl 16+0(%r15),%eax'
crypto/aes/aes-x86_64.s:559: Error: operand 1 must be a SIMD vector register -- `shll $24,%esi'
crypto/aes/aes-x86_64.s:560: Error: operand 1 must be a SIMD vector register -- `shll $24,%edi'
crypto/aes/aes-x86_64.s:562: Error: unknown mnemonic `xorl' -- `xorl %esi,%r12d'
crypto/aes/aes-x86_64.s:563: Error: unknown mnemonic `xorl' -- `xorl %edi,%r8d'
crypto/aes/aes-x86_64.s:565: Error: unknown mnemonic `movl' -- `movl 16+4(%r15),%ebx'
crypto/aes/aes-x86_64.s:566: Error: unknown mnemonic `movl' -- `movl 16+8(%r15),%ecx'
crypto/aes/aes-x86_64.s:567: Error: unknown mnemonic `leaq' -- `leaq -2048(%r14),%r14'
crypto/aes/aes-x86_64.s:568: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:569: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:570: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:571: Error: unknown mnemonic `xorl' -- `xorl %r8d,%edx'
crypto/aes/aes-x86_64.s:579: Error: unknown mnemonic `leaq' -- `leaq 128(%r14),%r8'
crypto/aes/aes-x86_64.s:580: Error: unknown mnemonic `movl' -- `movl 0-128(%r8),%edi'
crypto/aes/aes-x86_64.s:581: Error: unknown mnemonic `movl' -- `movl 32-128(%r8),%ebp'
crypto/aes/aes-x86_64.s:582: Error: unknown mnemonic `movl' -- `movl 64-128(%r8),%r10d'
crypto/aes/aes-x86_64.s:583: Error: unknown mnemonic `movl' -- `movl 96-128(%r8),%r11d'
crypto/aes/aes-x86_64.s:584: Error: unknown mnemonic `movl' -- `movl 128-128(%r8),%edi'
crypto/aes/aes-x86_64.s:585: Error: unknown mnemonic `movl' -- `movl 160-128(%r8),%ebp'
crypto/aes/aes-x86_64.s:586: Error: unknown mnemonic `movl' -- `movl 192-128(%r8),%r10d'
crypto/aes/aes-x86_64.s:587: Error: unknown mnemonic `movl' -- `movl 224-128(%r8),%r11d'
crypto/aes/aes-x86_64.s:588: Error: unknown mnemonic `jmp' -- `jmp .Ldec_loop_compact'
crypto/aes/aes-x86_64.s:592: Error: unknown mnemonic `xorl' -- `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:593: Error: unknown mnemonic `xorl' -- `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:594: Error: unknown mnemonic `xorl' -- `xorl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:595: Error: unknown mnemonic `xorl' -- `xorl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:596: Error: unknown mnemonic `leaq' -- `leaq 16(%r15),%r15'
crypto/aes/aes-x86_64.s:597: Error: unknown mnemonic `movzbl' -- `movzbl %al,%r10d'
crypto/aes/aes-x86_64.s:598: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%r11d'
crypto/aes/aes-x86_64.s:599: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%r12d'
crypto/aes/aes-x86_64.s:600: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%r8d'
crypto/aes/aes-x86_64.s:601: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:602: Error: unknown mnemonic `movzbl' -- `movzbl %ah,%edi'
crypto/aes/aes-x86_64.s:603: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:604: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%ebp'
crypto/aes/aes-x86_64.s:605: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r10,1),%r10d'
crypto/aes/aes-x86_64.s:606: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r11,1),%r11d'
crypto/aes/aes-x86_64.s:607: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r12,1),%r12d'
crypto/aes/aes-x86_64.s:608: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r8,1),%r8d'
crypto/aes/aes-x86_64.s:610: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%r9d'
crypto/aes/aes-x86_64.s:611: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%esi'
crypto/aes/aes-x86_64.s:612: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%r13d'
crypto/aes/aes-x86_64.s:613: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:614: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:616: Error: unknown mnemonic `shrl' -- `shrl $16,%ecx'
crypto/aes/aes-x86_64.s:617: Error: operand 1 must be a SIMD vector register -- `shll $8,%r13d'
crypto/aes/aes-x86_64.s:618: Error: operand 1 must be a SIMD vector register -- `shll $8,%r9d'
crypto/aes/aes-x86_64.s:619: Error: unknown mnemonic `movzbl' -- `movzbl %cl,%edi'
crypto/aes/aes-x86_64.s:620: Error: unknown mnemonic `shrl' -- `shrl $16,%eax'
crypto/aes/aes-x86_64.s:621: Error: unknown mnemonic `xorl' -- `xorl %r9d,%r10d'
crypto/aes/aes-x86_64.s:622: Error: unknown mnemonic `shrl' -- `shrl $16,%ebx'
crypto/aes/aes-x86_64.s:623: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%r9d'
crypto/aes/aes-x86_64.s:625: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebp'
crypto/aes/aes-x86_64.s:626: Error: unknown mnemonic `xorl' -- `xorl %r13d,%r11d'
crypto/aes/aes-x86_64.s:627: Error: operand 1 must be a SIMD vector register -- `shll $8,%esi'
crypto/aes/aes-x86_64.s:628: Error: unknown mnemonic `movzbl' -- `movzbl %al,%r13d'
crypto/aes/aes-x86_64.s:629: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%edi'
crypto/aes/aes-x86_64.s:630: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r12d'
crypto/aes/aes-x86_64.s:631: Error: unknown mnemonic `movzbl' -- `movzbl %bl,%ebp'
crypto/aes/aes-x86_64.s:633: Error: operand 1 must be a SIMD vector register -- `shll $16,%edi'
crypto/aes/aes-x86_64.s:634: Error: unknown mnemonic `xorl' -- `xorl %esi,%r8d'
crypto/aes/aes-x86_64.s:635: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r9,1),%r9d'
crypto/aes/aes-x86_64.s:636: Error: unknown mnemonic `movzbl' -- `movzbl %bh,%esi'
crypto/aes/aes-x86_64.s:637: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ebp'
crypto/aes/aes-x86_64.s:638: Error: unknown mnemonic `xorl' -- `xorl %edi,%r10d'
crypto/aes/aes-x86_64.s:639: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%r13,1),%r13d'
crypto/aes/aes-x86_64.s:640: Error: unknown mnemonic `movzbl' -- `movzbl %ch,%edi'
crypto/aes/aes-x86_64.s:642: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebp'
crypto/aes/aes-x86_64.s:643: Error: operand 1 must be a SIMD vector register -- `shll $16,%r9d'
crypto/aes/aes-x86_64.s:644: Error: operand 1 must be a SIMD vector register -- `shll $16,%r13d'
crypto/aes/aes-x86_64.s:645: Error: unknown mnemonic `xorl' -- `xorl %ebp,%r8d'
crypto/aes/aes-x86_64.s:646: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%ebp'
crypto/aes/aes-x86_64.s:647: Error: unknown mnemonic `xorl' -- `xorl %r9d,%r11d'
crypto/aes/aes-x86_64.s:648: Error: unknown mnemonic `shrl' -- `shrl $8,%eax'
crypto/aes/aes-x86_64.s:649: Error: unknown mnemonic `xorl' -- `xorl %r13d,%r12d'
crypto/aes/aes-x86_64.s:651: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rsi,1),%esi'
crypto/aes/aes-x86_64.s:652: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rdi,1),%ebx'
crypto/aes/aes-x86_64.s:653: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rbp,1),%ecx'
crypto/aes/aes-x86_64.s:654: Error: unknown mnemonic `movzbl' -- `movzbl (%r14,%rax,1),%edx'
crypto/aes/aes-x86_64.s:656: Error: unknown mnemonic `movl' -- `movl %r10d,%eax'
crypto/aes/aes-x86_64.s:657: Error: operand 1 must be a SIMD vector register -- `shll $24,%esi'
crypto/aes/aes-x86_64.s:658: Error: operand 1 must be a SIMD vector register -- `shll $24,%ebx'
crypto/aes/aes-x86_64.s:659: Error: operand 1 must be a SIMD vector register -- `shll $24,%ecx'
crypto/aes/aes-x86_64.s:660: Error: unknown mnemonic `xorl' -- `xorl %esi,%eax'
crypto/aes/aes-x86_64.s:661: Error: operand 1 must be a SIMD vector register -- `shll $24,%edx'
crypto/aes/aes-x86_64.s:662: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ebx'
crypto/aes/aes-x86_64.s:663: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:664: Error: unknown mnemonic `xorl' -- `xorl %r8d,%edx'
crypto/aes/aes-x86_64.s:665: Error: unknown mnemonic `cmpq' -- `cmpq 16(%rsp),%r15'
crypto/aes/aes-x86_64.s:666: Error: unknown mnemonic `je' -- `je .Ldec_compact_done'
crypto/aes/aes-x86_64.s:668: Error: unknown mnemonic `movq' -- `movq 256+0(%r14),%rsi'
crypto/aes/aes-x86_64.s:669: Error: unknown mnemonic `shlq' -- `shlq $32,%rbx'
crypto/aes/aes-x86_64.s:670: Error: unknown mnemonic `shlq' -- `shlq $32,%rdx'
crypto/aes/aes-x86_64.s:671: Error: unknown mnemonic `movq' -- `movq 256+8(%r14),%rdi'
crypto/aes/aes-x86_64.s:672: Error: unknown mnemonic `orq' -- `orq %rbx,%rax'
crypto/aes/aes-x86_64.s:673: Error: unknown mnemonic `orq' -- `orq %rdx,%rcx'
crypto/aes/aes-x86_64.s:674: Error: unknown mnemonic `movq' -- `movq 256+16(%r14),%rbp'
crypto/aes/aes-x86_64.s:675: Error: unknown mnemonic `movq' -- `movq %rsi,%r9'
crypto/aes/aes-x86_64.s:676: Error: unknown mnemonic `movq' -- `movq %rsi,%r12'
crypto/aes/aes-x86_64.s:677: Error: unknown mnemonic `andq' -- `andq %rax,%r9'
crypto/aes/aes-x86_64.s:678: Error: unknown mnemonic `andq' -- `andq %rcx,%r12'
crypto/aes/aes-x86_64.s:679: Error: unknown mnemonic `movq' -- `movq %r9,%rbx'
crypto/aes/aes-x86_64.s:680: Error: unknown mnemonic `movq' -- `movq %r12,%rdx'
crypto/aes/aes-x86_64.s:681: Error: unknown mnemonic `shrq' -- `shrq $7,%r9'
crypto/aes/aes-x86_64.s:682: Error: unknown mnemonic `leaq' -- `leaq (%rax,%rax,1),%r8'
crypto/aes/aes-x86_64.s:683: Error: unknown mnemonic `shrq' -- `shrq $7,%r12'
crypto/aes/aes-x86_64.s:684: Error: unknown mnemonic `leaq' -- `leaq (%rcx,%rcx,1),%r11'
crypto/aes/aes-x86_64.s:685: Error: unknown mnemonic `subq' -- `subq %r9,%rbx'
crypto/aes/aes-x86_64.s:686: Error: unknown mnemonic `subq' -- `subq %r12,%rdx'
crypto/aes/aes-x86_64.s:687: Error: unknown mnemonic `andq' -- `andq %rdi,%r8'
crypto/aes/aes-x86_64.s:688: Error: unknown mnemonic `andq' -- `andq %rdi,%r11'
crypto/aes/aes-x86_64.s:689: Error: unknown mnemonic `andq' -- `andq %rbp,%rbx'
crypto/aes/aes-x86_64.s:690: Error: unknown mnemonic `andq' -- `andq %rbp,%rdx'
crypto/aes/aes-x86_64.s:691: Error: unknown mnemonic `xorq' -- `xorq %rbx,%r8'
crypto/aes/aes-x86_64.s:692: Error: unknown mnemonic `xorq' -- `xorq %rdx,%r11'
crypto/aes/aes-x86_64.s:693: Error: unknown mnemonic `movq' -- `movq %rsi,%r10'
crypto/aes/aes-x86_64.s:694: Error: unknown mnemonic `movq' -- `movq %rsi,%r13'
crypto/aes/aes-x86_64.s:696: Error: unknown mnemonic `andq' -- `andq %r8,%r10'
crypto/aes/aes-x86_64.s:697: Error: unknown mnemonic `andq' -- `andq %r11,%r13'
crypto/aes/aes-x86_64.s:698: Error: unknown mnemonic `movq' -- `movq %r10,%rbx'
crypto/aes/aes-x86_64.s:699: Error: unknown mnemonic `movq' -- `movq %r13,%rdx'
crypto/aes/aes-x86_64.s:700: Error: unknown mnemonic `shrq' -- `shrq $7,%r10'
crypto/aes/aes-x86_64.s:701: Error: unknown mnemonic `leaq' -- `leaq (%r8,%r8,1),%r9'
crypto/aes/aes-x86_64.s:702: Error: unknown mnemonic `shrq' -- `shrq $7,%r13'
crypto/aes/aes-x86_64.s:703: Error: unknown mnemonic `leaq' -- `leaq (%r11,%r11,1),%r12'
crypto/aes/aes-x86_64.s:704: Error: unknown mnemonic `subq' -- `subq %r10,%rbx'
crypto/aes/aes-x86_64.s:705: Error: unknown mnemonic `subq' -- `subq %r13,%rdx'
crypto/aes/aes-x86_64.s:706: Error: unknown mnemonic `andq' -- `andq %rdi,%r9'
crypto/aes/aes-x86_64.s:707: Error: unknown mnemonic `andq' -- `andq %rdi,%r12'
crypto/aes/aes-x86_64.s:708: Error: unknown mnemonic `andq' -- `andq %rbp,%rbx'
crypto/aes/aes-x86_64.s:709: Error: unknown mnemonic `andq' -- `andq %rbp,%rdx'
crypto/aes/aes-x86_64.s:710: Error: unknown mnemonic `xorq' -- `xorq %rbx,%r9'
crypto/aes/aes-x86_64.s:711: Error: unknown mnemonic `xorq' -- `xorq %rdx,%r12'
crypto/aes/aes-x86_64.s:712: Error: unknown mnemonic `movq' -- `movq %rsi,%r10'
crypto/aes/aes-x86_64.s:713: Error: unknown mnemonic `movq' -- `movq %rsi,%r13'
crypto/aes/aes-x86_64.s:715: Error: unknown mnemonic `andq' -- `andq %r9,%r10'
crypto/aes/aes-x86_64.s:716: Error: unknown mnemonic `andq' -- `andq %r12,%r13'
crypto/aes/aes-x86_64.s:717: Error: unknown mnemonic `movq' -- `movq %r10,%rbx'
crypto/aes/aes-x86_64.s:718: Error: unknown mnemonic `movq' -- `movq %r13,%rdx'
crypto/aes/aes-x86_64.s:719: Error: unknown mnemonic `shrq' -- `shrq $7,%r10'
crypto/aes/aes-x86_64.s:720: Error: unknown mnemonic `xorq' -- `xorq %rax,%r8'
crypto/aes/aes-x86_64.s:721: Error: unknown mnemonic `shrq' -- `shrq $7,%r13'
crypto/aes/aes-x86_64.s:722: Error: unknown mnemonic `xorq' -- `xorq %rcx,%r11'
crypto/aes/aes-x86_64.s:723: Error: unknown mnemonic `subq' -- `subq %r10,%rbx'
crypto/aes/aes-x86_64.s:724: Error: unknown mnemonic `subq' -- `subq %r13,%rdx'
crypto/aes/aes-x86_64.s:725: Error: unknown mnemonic `leaq' -- `leaq (%r9,%r9,1),%r10'
crypto/aes/aes-x86_64.s:726: Error: unknown mnemonic `leaq' -- `leaq (%r12,%r12,1),%r13'
crypto/aes/aes-x86_64.s:727: Error: unknown mnemonic `xorq' -- `xorq %rax,%r9'
crypto/aes/aes-x86_64.s:728: Error: unknown mnemonic `xorq' -- `xorq %rcx,%r12'
crypto/aes/aes-x86_64.s:729: Error: unknown mnemonic `andq' -- `andq %rdi,%r10'
crypto/aes/aes-x86_64.s:730: Error: unknown mnemonic `andq' -- `andq %rdi,%r13'
crypto/aes/aes-x86_64.s:731: Error: unknown mnemonic `andq' -- `andq %rbp,%rbx'
crypto/aes/aes-x86_64.s:732: Error: unknown mnemonic `andq' -- `andq %rbp,%rdx'
crypto/aes/aes-x86_64.s:733: Error: unknown mnemonic `xorq' -- `xorq %rbx,%r10'
crypto/aes/aes-x86_64.s:734: Error: unknown mnemonic `xorq' -- `xorq %rdx,%r13'
crypto/aes/aes-x86_64.s:736: Error: unknown mnemonic `xorq' -- `xorq %r10,%rax'
crypto/aes/aes-x86_64.s:737: Error: unknown mnemonic `xorq' -- `xorq %r13,%rcx'
crypto/aes/aes-x86_64.s:738: Error: unknown mnemonic `xorq' -- `xorq %r10,%r8'
crypto/aes/aes-x86_64.s:739: Error: unknown mnemonic `xorq' -- `xorq %r13,%r11'
crypto/aes/aes-x86_64.s:740: Error: unknown mnemonic `movq' -- `movq %rax,%rbx'
crypto/aes/aes-x86_64.s:741: Error: unknown mnemonic `movq' -- `movq %rcx,%rdx'
crypto/aes/aes-x86_64.s:742: Error: unknown mnemonic `xorq' -- `xorq %r10,%r9'
crypto/aes/aes-x86_64.s:743: Error: unknown mnemonic `shrq' -- `shrq $32,%rbx'
crypto/aes/aes-x86_64.s:744: Error: unknown mnemonic `xorq' -- `xorq %r13,%r12'
crypto/aes/aes-x86_64.s:745: Error: unknown mnemonic `shrq' -- `shrq $32,%rdx'
crypto/aes/aes-x86_64.s:746: Error: unknown mnemonic `xorq' -- `xorq %r8,%r10'
crypto/aes/aes-x86_64.s:747: Error: unknown mnemonic `roll' -- `roll $8,%eax'
crypto/aes/aes-x86_64.s:748: Error: unknown mnemonic `xorq' -- `xorq %r11,%r13'
crypto/aes/aes-x86_64.s:749: Error: unknown mnemonic `roll' -- `roll $8,%ecx'
crypto/aes/aes-x86_64.s:750: Error: unknown mnemonic `xorq' -- `xorq %r9,%r10'
crypto/aes/aes-x86_64.s:751: Error: unknown mnemonic `roll' -- `roll $8,%ebx'
crypto/aes/aes-x86_64.s:752: Error: unknown mnemonic `xorq' -- `xorq %r12,%r13'
crypto/aes/aes-x86_64.s:754: Error: unknown mnemonic `roll' -- `roll $8,%edx'
crypto/aes/aes-x86_64.s:755: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:756: Error: unknown mnemonic `shrq' -- `shrq $32,%r10'
crypto/aes/aes-x86_64.s:757: Error: unknown mnemonic `xorl' -- `xorl %r13d,%ecx'
crypto/aes/aes-x86_64.s:758: Error: unknown mnemonic `shrq' -- `shrq $32,%r13'
crypto/aes/aes-x86_64.s:759: Error: unknown mnemonic `xorl' -- `xorl %r10d,%ebx'
crypto/aes/aes-x86_64.s:760: Error: unknown mnemonic `xorl' -- `xorl %r13d,%edx'
crypto/aes/aes-x86_64.s:762: Error: unknown mnemonic `movq' -- `movq %r8,%r10'
crypto/aes/aes-x86_64.s:763: Error: unknown mnemonic `roll' -- `roll $24,%r8d'
crypto/aes/aes-x86_64.s:764: Error: unknown mnemonic `movq' -- `movq %r11,%r13'
crypto/aes/aes-x86_64.s:765: Error: unknown mnemonic `roll' -- `roll $24,%r11d'
crypto/aes/aes-x86_64.s:766: Error: unknown mnemonic `shrq' -- `shrq $32,%r10'
crypto/aes/aes-x86_64.s:767: Error: unknown mnemonic `xorl' -- `xorl %r8d,%eax'
crypto/aes/aes-x86_64.s:768: Error: unknown mnemonic `shrq' -- `shrq $32,%r13'
crypto/aes/aes-x86_64.s:769: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ecx'
crypto/aes/aes-x86_64.s:770: Error: unknown mnemonic `roll' -- `roll $24,%r10d'
crypto/aes/aes-x86_64.s:771: Error: unknown mnemonic `movq' -- `movq %r9,%r8'
crypto/aes/aes-x86_64.s:772: Error: unknown mnemonic `roll' -- `roll $24,%r13d'
crypto/aes/aes-x86_64.s:773: Error: unknown mnemonic `movq' -- `movq %r12,%r11'
crypto/aes/aes-x86_64.s:774: Error: unknown mnemonic `shrq' -- `shrq $32,%r8'
crypto/aes/aes-x86_64.s:775: Error: unknown mnemonic `xorl' -- `xorl %r10d,%ebx'
crypto/aes/aes-x86_64.s:776: Error: unknown mnemonic `shrq' -- `shrq $32,%r11'
crypto/aes/aes-x86_64.s:777: Error: unknown mnemonic `xorl' -- `xorl %r13d,%edx'
crypto/aes/aes-x86_64.s:779: Error: unknown mnemonic `movq' -- `movq 0(%r14),%rsi'
crypto/aes/aes-x86_64.s:780: Error: unknown mnemonic `roll' -- `roll $16,%r9d'
crypto/aes/aes-x86_64.s:781: Error: unknown mnemonic `movq' -- `movq 64(%r14),%rdi'
crypto/aes/aes-x86_64.s:782: Error: unknown mnemonic `roll' -- `roll $16,%r12d'
crypto/aes/aes-x86_64.s:783: Error: unknown mnemonic `movq' -- `movq 128(%r14),%rbp'
crypto/aes/aes-x86_64.s:784: Error: unknown mnemonic `roll' -- `roll $16,%r8d'
crypto/aes/aes-x86_64.s:785: Error: unknown mnemonic `movq' -- `movq 192(%r14),%r10'
crypto/aes/aes-x86_64.s:786: Error: unknown mnemonic `xorl' -- `xorl %r9d,%eax'
crypto/aes/aes-x86_64.s:787: Error: unknown mnemonic `roll' -- `roll $16,%r11d'
crypto/aes/aes-x86_64.s:788: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:789: Error: unknown mnemonic `movq' -- `movq 256(%r14),%r13'
crypto/aes/aes-x86_64.s:790: Error: unknown mnemonic `xorl' -- `xorl %r8d,%ebx'
crypto/aes/aes-x86_64.s:791: Error: unknown mnemonic `xorl' -- `xorl %r11d,%edx'
crypto/aes/aes-x86_64.s:792: Error: unknown mnemonic `jmp' -- `jmp .Ldec_loop_compact'
crypto/aes/aes-x86_64.s:795: Error: unknown mnemonic `xorl' -- `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:796: Error: unknown mnemonic `xorl' -- `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:797: Error: unknown mnemonic `xorl' -- `xorl 8(%r15),%ecx'
crypto/aes/aes-x86_64.s:798: Error: unknown mnemonic `xorl' -- `xorl 12(%r15),%edx'
crypto/aes/aes-x86_64.s:811: Error: unknown mnemonic `movq' -- `movq %rsp,%rax'
crypto/aes/aes-x86_64.s:812: Error: bad register expression
crypto/aes/aes-x86_64.s:813: Error: unknown mnemonic `pushq' -- `pushq %rbx'
crypto/aes/aes-x86_64.s:814: Error: bad register expression
crypto/aes/aes-x86_64.s:815: Error: unknown mnemonic `pushq' -- `pushq %rbp'
crypto/aes/aes-x86_64.s:816: Error: bad register expression
crypto/aes/aes-x86_64.s:817: Error: unknown mnemonic `pushq' -- `pushq %r12'
crypto/aes/aes-x86_64.s:818: Error: bad register expression
crypto/aes/aes-x86_64.s:819: Error: unknown mnemonic `pushq' -- `pushq %r13'
crypto/aes/aes-x86_64.s:820: Error: bad register expression
crypto/aes/aes-x86_64.s:821: Error: unknown mnemonic `pushq' -- `pushq %r14'
crypto/aes/aes-x86_64.s:822: Error: bad register expression
crypto/aes/aes-x86_64.s:823: Error: unknown mnemonic `pushq' -- `pushq %r15'
crypto/aes/aes-x86_64.s:824: Error: bad register expression
crypto/aes/aes-x86_64.s:827: Error: unknown mnemonic `leaq' -- `leaq -63(%rdx),%rcx'
crypto/aes/aes-x86_64.s:828: Error: unknown mnemonic `andq' -- `andq $-64,%rsp'
crypto/aes/aes-x86_64.s:829: Error: unknown mnemonic `subq' -- `subq %rsp,%rcx'
crypto/aes/aes-x86_64.s:830: Error: unknown mnemonic `negq' -- `negq %rcx'
crypto/aes/aes-x86_64.s:831: Error: unknown mnemonic `andq' -- `andq $0x3c0,%rcx'
crypto/aes/aes-x86_64.s:832: Error: unknown mnemonic `subq' -- `subq %rcx,%rsp'
crypto/aes/aes-x86_64.s:833: Error: unknown mnemonic `subq' -- `subq $32,%rsp'
crypto/aes/aes-x86_64.s:835: Error: unknown mnemonic `movq' -- `movq %rsi,16(%rsp)'
crypto/aes/aes-x86_64.s:836: Error: unknown mnemonic `movq' -- `movq %rax,24(%rsp)'
crypto/aes/aes-x86_64.s:840: Error: unknown mnemonic `movq' -- `movq %rdx,%r15'
crypto/aes/aes-x86_64.s:841: Error: unknown mnemonic `movl' -- `movl 240(%r15),%r13d'
crypto/aes/aes-x86_64.s:843: Error: unknown mnemonic `movl' -- `movl 0(%rdi),%eax'
crypto/aes/aes-x86_64.s:844: Error: unknown mnemonic `movl' -- `movl 4(%rdi),%ebx'
crypto/aes/aes-x86_64.s:845: Error: unknown mnemonic `movl' -- `movl 8(%rdi),%ecx'
crypto/aes/aes-x86_64.s:846: Error: unknown mnemonic `movl' -- `movl 12(%rdi),%edx'
crypto/aes/aes-x86_64.s:848: Error: operand 1 must be a SIMD vector register -- `shll $4,%r13d'
crypto/aes/aes-x86_64.s:849: Error: unknown mnemonic `leaq' -- `leaq (%r15,%r13,1),%rbp'
crypto/aes/aes-x86_64.s:850: Error: unknown mnemonic `movq' -- `movq %r15,(%rsp)'
crypto/aes/aes-x86_64.s:851: Error: unknown mnemonic `movq' -- `movq %rbp,8(%rsp)'
crypto/aes/aes-x86_64.s:854: Error: unknown mnemonic `leaq' -- `leaq .LAES_Td+2048(%rip),%r14'
crypto/aes/aes-x86_64.s:855: Error: unknown mnemonic `leaq' -- `leaq 768(%rsp),%rbp'
crypto/aes/aes-x86_64.s:856: Error: unknown mnemonic `subq' -- `subq %r14,%rbp'
crypto/aes/aes-x86_64.s:857: Error: unknown mnemonic `andq' -- `andq $0x300,%rbp'
crypto/aes/aes-x86_64.s:858: Error: unknown mnemonic `leaq' -- `leaq (%r14,%rbp,1),%r14'
crypto/aes/aes-x86_64.s:859: Error: unknown mnemonic `shrq' -- `shrq $3,%rbp'
crypto/aes/aes-x86_64.s:860: Error: unknown mnemonic `addq' -- `addq %rbp,%r14'
crypto/aes/aes-x86_64.s:862: Error: unknown mnemonic `call' -- `call _x86_64_AES_decrypt_compact'
crypto/aes/aes-x86_64.s:864: Error: unknown mnemonic `movq' -- `movq 16(%rsp),%r9'
crypto/aes/aes-x86_64.s:865: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%rsi'
crypto/aes/aes-x86_64.s:866: Error: bad register expression
crypto/aes/aes-x86_64.s:867: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:868: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:869: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:870: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:872: Error: unknown mnemonic `movq' -- `movq -48(%rsi),%r15'
crypto/aes/aes-x86_64.s:873: Error: bad register expression
crypto/aes/aes-x86_64.s:874: Error: unknown mnemonic `movq' -- `movq -40(%rsi),%r14'
crypto/aes/aes-x86_64.s:875: Error: bad register expression
crypto/aes/aes-x86_64.s:876: Error: unknown mnemonic `movq' -- `movq -32(%rsi),%r13'
crypto/aes/aes-x86_64.s:877: Error: bad register expression
crypto/aes/aes-x86_64.s:878: Error: unknown mnemonic `movq' -- `movq -24(%rsi),%r12'
crypto/aes/aes-x86_64.s:879: Error: bad register expression
crypto/aes/aes-x86_64.s:880: Error: unknown mnemonic `movq' -- `movq -16(%rsi),%rbp'
crypto/aes/aes-x86_64.s:881: Error: bad register expression
crypto/aes/aes-x86_64.s:882: Error: unknown mnemonic `movq' -- `movq -8(%rsi),%rbx'
crypto/aes/aes-x86_64.s:883: Error: bad register expression
crypto/aes/aes-x86_64.s:884: Error: unknown mnemonic `leaq' -- `leaq (%rsi),%rsp'
crypto/aes/aes-x86_64.s:885: Error: bad register expression
crypto/aes/aes-x86_64.s:896: Error: unknown mnemonic `pushq' -- `pushq %rbx'
crypto/aes/aes-x86_64.s:898: Error: bad register expression
crypto/aes/aes-x86_64.s:899: Error: unknown mnemonic `pushq' -- `pushq %rbp'
crypto/aes/aes-x86_64.s:901: Error: bad register expression
crypto/aes/aes-x86_64.s:902: Error: unknown mnemonic `pushq' -- `pushq %r12'
crypto/aes/aes-x86_64.s:904: Error: bad register expression
crypto/aes/aes-x86_64.s:905: Error: unknown mnemonic `pushq' -- `pushq %r13'
crypto/aes/aes-x86_64.s:907: Error: bad register expression
crypto/aes/aes-x86_64.s:908: Error: unknown mnemonic `pushq' -- `pushq %r14'
crypto/aes/aes-x86_64.s:910: Error: bad register expression
crypto/aes/aes-x86_64.s:911: Error: unknown mnemonic `pushq' -- `pushq %r15'
crypto/aes/aes-x86_64.s:913: Error: bad register expression
crypto/aes/aes-x86_64.s:914: Error: unknown mnemonic `subq' -- `subq $8,%rsp'
crypto/aes/aes-x86_64.s:918: Error: unknown mnemonic `call' -- `call _x86_64_AES_set_encrypt_key'
crypto/aes/aes-x86_64.s:920: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%rbp'
crypto/aes/aes-x86_64.s:921: Error: bad register expression
crypto/aes/aes-x86_64.s:922: Error: unknown mnemonic `movq' -- `movq 48(%rsp),%rbx'
crypto/aes/aes-x86_64.s:923: Error: bad register expression
crypto/aes/aes-x86_64.s:924: Error: unknown mnemonic `addq' -- `addq $56,%rsp'
crypto/aes/aes-x86_64.s:935: Error: unknown mnemonic `movl' -- `movl %esi,%ecx'
crypto/aes/aes-x86_64.s:936: Error: unknown mnemonic `movq' -- `movq %rdi,%rsi'
crypto/aes/aes-x86_64.s:937: Error: unknown mnemonic `movq' -- `movq %rdx,%rdi'
crypto/aes/aes-x86_64.s:939: Error: unknown mnemonic `testq' -- `testq $-1,%rsi'
crypto/aes/aes-x86_64.s:940: Error: unknown mnemonic `jz' -- `jz .Lbadpointer'
crypto/aes/aes-x86_64.s:941: Error: unknown mnemonic `testq' -- `testq $-1,%rdi'
crypto/aes/aes-x86_64.s:942: Error: unknown mnemonic `jz' -- `jz .Lbadpointer'
crypto/aes/aes-x86_64.s:944: Error: unknown mnemonic `leaq' -- `leaq .LAES_Te(%rip),%rbp'
crypto/aes/aes-x86_64.s:945: Error: unknown mnemonic `leaq' -- `leaq 2048+128(%rbp),%rbp'
crypto/aes/aes-x86_64.s:948: Error: unknown mnemonic `movl' -- `movl 0-128(%rbp),%eax'
crypto/aes/aes-x86_64.s:949: Error: unknown mnemonic `movl' -- `movl 32-128(%rbp),%ebx'
crypto/aes/aes-x86_64.s:950: Error: unknown mnemonic `movl' -- `movl 64-128(%rbp),%r8d'
crypto/aes/aes-x86_64.s:951: Error: unknown mnemonic `movl' -- `movl 96-128(%rbp),%edx'
crypto/aes/aes-x86_64.s:952: Error: unknown mnemonic `movl' -- `movl 128-128(%rbp),%eax'
crypto/aes/aes-x86_64.s:953: Error: unknown mnemonic `movl' -- `movl 160-128(%rbp),%ebx'
crypto/aes/aes-x86_64.s:954: Error: unknown mnemonic `movl' -- `movl 192-128(%rbp),%r8d'
crypto/aes/aes-x86_64.s:955: Error: unknown mnemonic `movl' -- `movl 224-128(%rbp),%edx'
crypto/aes/aes-x86_64.s:957: Error: unknown mnemonic `cmpl' -- `cmpl $128,%ecx'
crypto/aes/aes-x86_64.s:958: Error: unknown mnemonic `je' -- `je .L10rounds'
crypto/aes/aes-x86_64.s:959: Error: unknown mnemonic `cmpl' -- `cmpl $192,%ecx'
crypto/aes/aes-x86_64.s:960: Error: unknown mnemonic `je' -- `je .L12rounds'
crypto/aes/aes-x86_64.s:961: Error: unknown mnemonic `cmpl' -- `cmpl $256,%ecx'
crypto/aes/aes-x86_64.s:962: Error: unknown mnemonic `je' -- `je .L14rounds'
crypto/aes/aes-x86_64.s:963: Error: unknown mnemonic `movq' -- `movq $-2,%rax'
crypto/aes/aes-x86_64.s:964: Error: unknown mnemonic `jmp' -- `jmp .Lexit'
crypto/aes/aes-x86_64.s:967: Error: unknown mnemonic `movq' -- `movq 0(%rsi),%rax'
crypto/aes/aes-x86_64.s:968: Error: unknown mnemonic `movq' -- `movq 8(%rsi),%rdx'
crypto/aes/aes-x86_64.s:969: Error: unknown mnemonic `movq' -- `movq %rax,0(%rdi)'
crypto/aes/aes-x86_64.s:970: Error: unknown mnemonic `movq' -- `movq %rdx,8(%rdi)'
crypto/aes/aes-x86_64.s:972: Error: unknown mnemonic `shrq' -- `shrq $32,%rdx'
crypto/aes/aes-x86_64.s:973: Error: unknown mnemonic `xorl' -- `xorl %ecx,%ecx'
crypto/aes/aes-x86_64.s:974: Error: unknown mnemonic `jmp' -- `jmp .L10shortcut'
crypto/aes/aes-x86_64.s:977: Error: unknown mnemonic `movl' -- `movl 0(%rdi),%eax'
crypto/aes/aes-x86_64.s:978: Error: unknown mnemonic `movl' -- `movl 12(%rdi),%edx'
crypto/aes/aes-x86_64.s:980: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:981: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:982: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:983: Error: operand 1 must be a SIMD vector register -- `shll $24,%ebx'
crypto/aes/aes-x86_64.s:984: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:986: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:987: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:988: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:989: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:991: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:992: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:993: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebx'
crypto/aes/aes-x86_64.s:994: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:996: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:997: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebx'
crypto/aes/aes-x86_64.s:998: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1000: Error: unknown mnemonic `xorl' -- `xorl 1024-128(%rbp,%rcx,4),%eax'
crypto/aes/aes-x86_64.s:1001: Error: unknown mnemonic `movl' -- `movl %eax,16(%rdi)'
crypto/aes/aes-x86_64.s:1002: Error: unknown mnemonic `xorl' -- `xorl 4(%rdi),%eax'
crypto/aes/aes-x86_64.s:1003: Error: unknown mnemonic `movl' -- `movl %eax,20(%rdi)'
crypto/aes/aes-x86_64.s:1004: Error: unknown mnemonic `xorl' -- `xorl 8(%rdi),%eax'
crypto/aes/aes-x86_64.s:1005: Error: unknown mnemonic `movl' -- `movl %eax,24(%rdi)'
crypto/aes/aes-x86_64.s:1006: Error: unknown mnemonic `xorl' -- `xorl 12(%rdi),%eax'
crypto/aes/aes-x86_64.s:1007: Error: unknown mnemonic `movl' -- `movl %eax,28(%rdi)'
crypto/aes/aes-x86_64.s:1008: Error: unknown mnemonic `addl' -- `addl $1,%ecx'
crypto/aes/aes-x86_64.s:1009: Error: unknown mnemonic `leaq' -- `leaq 16(%rdi),%rdi'
crypto/aes/aes-x86_64.s:1010: Error: unknown mnemonic `cmpl' -- `cmpl $10,%ecx'
crypto/aes/aes-x86_64.s:1011: Error: unknown mnemonic `jl' -- `jl .L10loop'
crypto/aes/aes-x86_64.s:1013: Error: unknown mnemonic `movl' -- `movl $10,80(%rdi)'
crypto/aes/aes-x86_64.s:1014: Error: unknown mnemonic `xorq' -- `xorq %rax,%rax'
crypto/aes/aes-x86_64.s:1015: Error: unknown mnemonic `jmp' -- `jmp .Lexit'
crypto/aes/aes-x86_64.s:1018: Error: unknown mnemonic `movq' -- `movq 0(%rsi),%rax'
crypto/aes/aes-x86_64.s:1019: Error: unknown mnemonic `movq' -- `movq 8(%rsi),%rbx'
crypto/aes/aes-x86_64.s:1020: Error: unknown mnemonic `movq' -- `movq 16(%rsi),%rdx'
crypto/aes/aes-x86_64.s:1021: Error: unknown mnemonic `movq' -- `movq %rax,0(%rdi)'
crypto/aes/aes-x86_64.s:1022: Error: unknown mnemonic `movq' -- `movq %rbx,8(%rdi)'
crypto/aes/aes-x86_64.s:1023: Error: unknown mnemonic `movq' -- `movq %rdx,16(%rdi)'
crypto/aes/aes-x86_64.s:1025: Error: unknown mnemonic `shrq' -- `shrq $32,%rdx'
crypto/aes/aes-x86_64.s:1026: Error: unknown mnemonic `xorl' -- `xorl %ecx,%ecx'
crypto/aes/aes-x86_64.s:1027: Error: unknown mnemonic `jmp' -- `jmp .L12shortcut'
crypto/aes/aes-x86_64.s:1030: Error: unknown mnemonic `movl' -- `movl 0(%rdi),%eax'
crypto/aes/aes-x86_64.s:1031: Error: unknown mnemonic `movl' -- `movl 20(%rdi),%edx'
crypto/aes/aes-x86_64.s:1033: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:1034: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1035: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:1036: Error: operand 1 must be a SIMD vector register -- `shll $24,%ebx'
crypto/aes/aes-x86_64.s:1037: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1039: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1040: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:1041: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:1042: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1044: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1045: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:1046: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebx'
crypto/aes/aes-x86_64.s:1047: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1049: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1050: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebx'
crypto/aes/aes-x86_64.s:1051: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1053: Error: unknown mnemonic `xorl' -- `xorl 1024-128(%rbp,%rcx,4),%eax'
crypto/aes/aes-x86_64.s:1054: Error: unknown mnemonic `movl' -- `movl %eax,24(%rdi)'
crypto/aes/aes-x86_64.s:1055: Error: unknown mnemonic `xorl' -- `xorl 4(%rdi),%eax'
crypto/aes/aes-x86_64.s:1056: Error: unknown mnemonic `movl' -- `movl %eax,28(%rdi)'
crypto/aes/aes-x86_64.s:1057: Error: unknown mnemonic `xorl' -- `xorl 8(%rdi),%eax'
crypto/aes/aes-x86_64.s:1058: Error: unknown mnemonic `movl' -- `movl %eax,32(%rdi)'
crypto/aes/aes-x86_64.s:1059: Error: unknown mnemonic `xorl' -- `xorl 12(%rdi),%eax'
crypto/aes/aes-x86_64.s:1060: Error: unknown mnemonic `movl' -- `movl %eax,36(%rdi)'
crypto/aes/aes-x86_64.s:1062: Error: unknown mnemonic `cmpl' -- `cmpl $7,%ecx'
crypto/aes/aes-x86_64.s:1063: Error: unknown mnemonic `je' -- `je .L12break'
crypto/aes/aes-x86_64.s:1064: Error: unknown mnemonic `addl' -- `addl $1,%ecx'
crypto/aes/aes-x86_64.s:1066: Error: unknown mnemonic `xorl' -- `xorl 16(%rdi),%eax'
crypto/aes/aes-x86_64.s:1067: Error: unknown mnemonic `movl' -- `movl %eax,40(%rdi)'
crypto/aes/aes-x86_64.s:1068: Error: unknown mnemonic `xorl' -- `xorl 20(%rdi),%eax'
crypto/aes/aes-x86_64.s:1069: Error: unknown mnemonic `movl' -- `movl %eax,44(%rdi)'
crypto/aes/aes-x86_64.s:1071: Error: unknown mnemonic `leaq' -- `leaq 24(%rdi),%rdi'
crypto/aes/aes-x86_64.s:1072: Error: unknown mnemonic `jmp' -- `jmp .L12loop'
crypto/aes/aes-x86_64.s:1074: Error: unknown mnemonic `movl' -- `movl $12,72(%rdi)'
crypto/aes/aes-x86_64.s:1075: Error: unknown mnemonic `xorq' -- `xorq %rax,%rax'
crypto/aes/aes-x86_64.s:1076: Error: unknown mnemonic `jmp' -- `jmp .Lexit'
crypto/aes/aes-x86_64.s:1079: Error: unknown mnemonic `movq' -- `movq 0(%rsi),%rax'
crypto/aes/aes-x86_64.s:1080: Error: unknown mnemonic `movq' -- `movq 8(%rsi),%rbx'
crypto/aes/aes-x86_64.s:1081: Error: unknown mnemonic `movq' -- `movq 16(%rsi),%rcx'
crypto/aes/aes-x86_64.s:1082: Error: unknown mnemonic `movq' -- `movq 24(%rsi),%rdx'
crypto/aes/aes-x86_64.s:1083: Error: unknown mnemonic `movq' -- `movq %rax,0(%rdi)'
crypto/aes/aes-x86_64.s:1084: Error: unknown mnemonic `movq' -- `movq %rbx,8(%rdi)'
crypto/aes/aes-x86_64.s:1085: Error: unknown mnemonic `movq' -- `movq %rcx,16(%rdi)'
crypto/aes/aes-x86_64.s:1086: Error: unknown mnemonic `movq' -- `movq %rdx,24(%rdi)'
crypto/aes/aes-x86_64.s:1088: Error: unknown mnemonic `shrq' -- `shrq $32,%rdx'
crypto/aes/aes-x86_64.s:1089: Error: unknown mnemonic `xorl' -- `xorl %ecx,%ecx'
crypto/aes/aes-x86_64.s:1090: Error: unknown mnemonic `jmp' -- `jmp .L14shortcut'
crypto/aes/aes-x86_64.s:1093: Error: unknown mnemonic `movl' -- `movl 0(%rdi),%eax'
crypto/aes/aes-x86_64.s:1094: Error: unknown mnemonic `movl' -- `movl 28(%rdi),%edx'
crypto/aes/aes-x86_64.s:1096: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:1097: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1098: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:1099: Error: operand 1 must be a SIMD vector register -- `shll $24,%ebx'
crypto/aes/aes-x86_64.s:1100: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1102: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1103: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:1104: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:1105: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1107: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1108: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:1109: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebx'
crypto/aes/aes-x86_64.s:1110: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1112: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1113: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebx'
crypto/aes/aes-x86_64.s:1114: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1116: Error: unknown mnemonic `xorl' -- `xorl 1024-128(%rbp,%rcx,4),%eax'
crypto/aes/aes-x86_64.s:1117: Error: unknown mnemonic `movl' -- `movl %eax,32(%rdi)'
crypto/aes/aes-x86_64.s:1118: Error: unknown mnemonic `xorl' -- `xorl 4(%rdi),%eax'
crypto/aes/aes-x86_64.s:1119: Error: unknown mnemonic `movl' -- `movl %eax,36(%rdi)'
crypto/aes/aes-x86_64.s:1120: Error: unknown mnemonic `xorl' -- `xorl 8(%rdi),%eax'
crypto/aes/aes-x86_64.s:1121: Error: unknown mnemonic `movl' -- `movl %eax,40(%rdi)'
crypto/aes/aes-x86_64.s:1122: Error: unknown mnemonic `xorl' -- `xorl 12(%rdi),%eax'
crypto/aes/aes-x86_64.s:1123: Error: unknown mnemonic `movl' -- `movl %eax,44(%rdi)'
crypto/aes/aes-x86_64.s:1125: Error: unknown mnemonic `cmpl' -- `cmpl $6,%ecx'
crypto/aes/aes-x86_64.s:1126: Error: unknown mnemonic `je' -- `je .L14break'
crypto/aes/aes-x86_64.s:1127: Error: unknown mnemonic `addl' -- `addl $1,%ecx'
crypto/aes/aes-x86_64.s:1129: Error: unknown mnemonic `movl' -- `movl %eax,%edx'
crypto/aes/aes-x86_64.s:1130: Error: unknown mnemonic `movl' -- `movl 16(%rdi),%eax'
crypto/aes/aes-x86_64.s:1131: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:1132: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1133: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:1134: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1136: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1137: Error: unknown mnemonic `shrl' -- `shrl $16,%edx'
crypto/aes/aes-x86_64.s:1138: Error: operand 1 must be a SIMD vector register -- `shll $8,%ebx'
crypto/aes/aes-x86_64.s:1139: Error: unknown mnemonic `movzbl' -- `movzbl %dl,%esi'
crypto/aes/aes-x86_64.s:1140: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1142: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1143: Error: unknown mnemonic `movzbl' -- `movzbl %dh,%esi'
crypto/aes/aes-x86_64.s:1144: Error: operand 1 must be a SIMD vector register -- `shll $16,%ebx'
crypto/aes/aes-x86_64.s:1145: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1147: Error: unknown mnemonic `movzbl' -- `movzbl -128(%rbp,%rsi,1),%ebx'
crypto/aes/aes-x86_64.s:1148: Error: operand 1 must be a SIMD vector register -- `shll $24,%ebx'
crypto/aes/aes-x86_64.s:1149: Error: unknown mnemonic `xorl' -- `xorl %ebx,%eax'
crypto/aes/aes-x86_64.s:1151: Error: unknown mnemonic `movl' -- `movl %eax,48(%rdi)'
crypto/aes/aes-x86_64.s:1152: Error: unknown mnemonic `xorl' -- `xorl 20(%rdi),%eax'
crypto/aes/aes-x86_64.s:1153: Error: unknown mnemonic `movl' -- `movl %eax,52(%rdi)'
crypto/aes/aes-x86_64.s:1154: Error: unknown mnemonic `xorl' -- `xorl 24(%rdi),%eax'
crypto/aes/aes-x86_64.s:1155: Error: unknown mnemonic `movl' -- `movl %eax,56(%rdi)'
crypto/aes/aes-x86_64.s:1156: Error: unknown mnemonic `xorl' -- `xorl 28(%rdi),%eax'
crypto/aes/aes-x86_64.s:1157: Error: unknown mnemonic `movl' -- `movl %eax,60(%rdi)'
crypto/aes/aes-x86_64.s:1159: Error: unknown mnemonic `leaq' -- `leaq 32(%rdi),%rdi'
crypto/aes/aes-x86_64.s:1160: Error: unknown mnemonic `jmp' -- `jmp .L14loop'
crypto/aes/aes-x86_64.s:1162: Error: unknown mnemonic `movl' -- `movl $14,48(%rdi)'
crypto/aes/aes-x86_64.s:1163: Error: unknown mnemonic `xorq' -- `xorq %rax,%rax'
crypto/aes/aes-x86_64.s:1164: Error: unknown mnemonic `jmp' -- `jmp .Lexit'
crypto/aes/aes-x86_64.s:1167: Error: unknown mnemonic `movq' -- `movq $-1,%rax'
crypto/aes/aes-x86_64.s:1178: Error: unknown mnemonic `pushq' -- `pushq %rbx'
crypto/aes/aes-x86_64.s:1180: Error: bad register expression
crypto/aes/aes-x86_64.s:1181: Error: unknown mnemonic `pushq' -- `pushq %rbp'
crypto/aes/aes-x86_64.s:1183: Error: bad register expression
crypto/aes/aes-x86_64.s:1184: Error: unknown mnemonic `pushq' -- `pushq %r12'
crypto/aes/aes-x86_64.s:1186: Error: bad register expression
crypto/aes/aes-x86_64.s:1187: Error: unknown mnemonic `pushq' -- `pushq %r13'
crypto/aes/aes-x86_64.s:1189: Error: bad register expression
crypto/aes/aes-x86_64.s:1190: Error: unknown mnemonic `pushq' -- `pushq %r14'
crypto/aes/aes-x86_64.s:1192: Error: bad register expression
crypto/aes/aes-x86_64.s:1193: Error: unknown mnemonic `pushq' -- `pushq %r15'
crypto/aes/aes-x86_64.s:1195: Error: bad register expression
crypto/aes/aes-x86_64.s:1196: Error: unknown mnemonic `pushq' -- `pushq %rdx'
crypto/aes/aes-x86_64.s:1200: Error: unknown mnemonic `call' -- `call _x86_64_AES_set_encrypt_key'
crypto/aes/aes-x86_64.s:1201: Error: unknown mnemonic `movq' -- `movq (%rsp),%r8'
crypto/aes/aes-x86_64.s:1202: Error: unknown mnemonic `cmpl' -- `cmpl $0,%eax'
crypto/aes/aes-x86_64.s:1203: Error: unknown mnemonic `jne' -- `jne .Labort'
crypto/aes/aes-x86_64.s:1205: Error: unknown mnemonic `movl' -- `movl 240(%r8),%r14d'
crypto/aes/aes-x86_64.s:1206: Error: unknown mnemonic `xorq' -- `xorq %rdi,%rdi'
crypto/aes/aes-x86_64.s:1207: Error: unknown mnemonic `leaq' -- `leaq (%rdi,%r14,4),%rcx'
crypto/aes/aes-x86_64.s:1208: Error: unknown mnemonic `movq' -- `movq %r8,%rsi'
crypto/aes/aes-x86_64.s:1209: Error: unknown mnemonic `leaq' -- `leaq (%r8,%rcx,4),%rdi'
crypto/aes/aes-x86_64.s:1212: Error: unknown mnemonic `movq' -- `movq 0(%rsi),%rax'
crypto/aes/aes-x86_64.s:1213: Error: unknown mnemonic `movq' -- `movq 8(%rsi),%rbx'
crypto/aes/aes-x86_64.s:1214: Error: unknown mnemonic `movq' -- `movq 0(%rdi),%rcx'
crypto/aes/aes-x86_64.s:1215: Error: unknown mnemonic `movq' -- `movq 8(%rdi),%rdx'
crypto/aes/aes-x86_64.s:1216: Error: unknown mnemonic `movq' -- `movq %rax,0(%rdi)'
crypto/aes/aes-x86_64.s:1217: Error: unknown mnemonic `movq' -- `movq %rbx,8(%rdi)'
crypto/aes/aes-x86_64.s:1218: Error: unknown mnemonic `movq' -- `movq %rcx,0(%rsi)'
crypto/aes/aes-x86_64.s:1219: Error: unknown mnemonic `movq' -- `movq %rdx,8(%rsi)'
crypto/aes/aes-x86_64.s:1220: Error: unknown mnemonic `leaq' -- `leaq 16(%rsi),%rsi'
crypto/aes/aes-x86_64.s:1221: Error: unknown mnemonic `leaq' -- `leaq -16(%rdi),%rdi'
crypto/aes/aes-x86_64.s:1222: Error: unknown mnemonic `cmpq' -- `cmpq %rsi,%rdi'
crypto/aes/aes-x86_64.s:1223: Error: unknown mnemonic `jne' -- `jne .Linvert'
crypto/aes/aes-x86_64.s:1225: Error: unknown mnemonic `leaq' -- `leaq .LAES_Te+2048+1024(%rip),%rax'
crypto/aes/aes-x86_64.s:1227: Error: unknown mnemonic `movq' -- `movq 40(%rax),%rsi'
crypto/aes/aes-x86_64.s:1228: Error: unknown mnemonic `movq' -- `movq 48(%rax),%rdi'
crypto/aes/aes-x86_64.s:1229: Error: unknown mnemonic `movq' -- `movq 56(%rax),%rbp'
crypto/aes/aes-x86_64.s:1231: Error: unknown mnemonic `movq' -- `movq %r8,%r15'
crypto/aes/aes-x86_64.s:1232: Error: unknown mnemonic `subl' -- `subl $1,%r14d'
crypto/aes/aes-x86_64.s:1235: Error: unknown mnemonic `leaq' -- `leaq 16(%r15),%r15'
crypto/aes/aes-x86_64.s:1236: Error: unknown mnemonic `movq' -- `movq 0(%r15),%rax'
crypto/aes/aes-x86_64.s:1237: Error: unknown mnemonic `movq' -- `movq 8(%r15),%rcx'
crypto/aes/aes-x86_64.s:1238: Error: unknown mnemonic `movq' -- `movq %rsi,%r9'
crypto/aes/aes-x86_64.s:1239: Error: unknown mnemonic `movq' -- `movq %rsi,%r12'
crypto/aes/aes-x86_64.s:1240: Error: unknown mnemonic `andq' -- `andq %rax,%r9'
crypto/aes/aes-x86_64.s:1241: Error: unknown mnemonic `andq' -- `andq %rcx,%r12'
crypto/aes/aes-x86_64.s:1242: Error: unknown mnemonic `movq' -- `movq %r9,%rbx'
crypto/aes/aes-x86_64.s:1243: Error: unknown mnemonic `movq' -- `movq %r12,%rdx'
crypto/aes/aes-x86_64.s:1244: Error: unknown mnemonic `shrq' -- `shrq $7,%r9'
crypto/aes/aes-x86_64.s:1245: Error: unknown mnemonic `leaq' -- `leaq (%rax,%rax,1),%r8'
crypto/aes/aes-x86_64.s:1246: Error: unknown mnemonic `shrq' -- `shrq $7,%r12'
crypto/aes/aes-x86_64.s:1247: Error: unknown mnemonic `leaq' -- `leaq (%rcx,%rcx,1),%r11'
crypto/aes/aes-x86_64.s:1248: Error: unknown mnemonic `subq' -- `subq %r9,%rbx'
crypto/aes/aes-x86_64.s:1249: Error: unknown mnemonic `subq' -- `subq %r12,%rdx'
crypto/aes/aes-x86_64.s:1250: Error: unknown mnemonic `andq' -- `andq %rdi,%r8'
crypto/aes/aes-x86_64.s:1251: Error: unknown mnemonic `andq' -- `andq %rdi,%r11'
crypto/aes/aes-x86_64.s:1252: Error: unknown mnemonic `andq' -- `andq %rbp,%rbx'
crypto/aes/aes-x86_64.s:1253: Error: unknown mnemonic `andq' -- `andq %rbp,%rdx'
crypto/aes/aes-x86_64.s:1254: Error: unknown mnemonic `xorq' -- `xorq %rbx,%r8'
crypto/aes/aes-x86_64.s:1255: Error: unknown mnemonic `xorq' -- `xorq %rdx,%r11'
crypto/aes/aes-x86_64.s:1256: Error: unknown mnemonic `movq' -- `movq %rsi,%r10'
crypto/aes/aes-x86_64.s:1257: Error: unknown mnemonic `movq' -- `movq %rsi,%r13'
crypto/aes/aes-x86_64.s:1259: Error: unknown mnemonic `andq' -- `andq %r8,%r10'
crypto/aes/aes-x86_64.s:1260: Error: unknown mnemonic `andq' -- `andq %r11,%r13'
crypto/aes/aes-x86_64.s:1261: Error: unknown mnemonic `movq' -- `movq %r10,%rbx'
crypto/aes/aes-x86_64.s:1262: Error: unknown mnemonic `movq' -- `movq %r13,%rdx'
crypto/aes/aes-x86_64.s:1263: Error: unknown mnemonic `shrq' -- `shrq $7,%r10'
crypto/aes/aes-x86_64.s:1264: Error: unknown mnemonic `leaq' -- `leaq (%r8,%r8,1),%r9'
crypto/aes/aes-x86_64.s:1265: Error: unknown mnemonic `shrq' -- `shrq $7,%r13'
crypto/aes/aes-x86_64.s:1266: Error: unknown mnemonic `leaq' -- `leaq (%r11,%r11,1),%r12'
crypto/aes/aes-x86_64.s:1267: Error: unknown mnemonic `subq' -- `subq %r10,%rbx'
crypto/aes/aes-x86_64.s:1268: Error: unknown mnemonic `subq' -- `subq %r13,%rdx'
crypto/aes/aes-x86_64.s:1269: Error: unknown mnemonic `andq' -- `andq %rdi,%r9'
crypto/aes/aes-x86_64.s:1270: Error: unknown mnemonic `andq' -- `andq %rdi,%r12'
crypto/aes/aes-x86_64.s:1271: Error: unknown mnemonic `andq' -- `andq %rbp,%rbx'
crypto/aes/aes-x86_64.s:1272: Error: unknown mnemonic `andq' -- `andq %rbp,%rdx'
crypto/aes/aes-x86_64.s:1273: Error: unknown mnemonic `xorq' -- `xorq %rbx,%r9'
crypto/aes/aes-x86_64.s:1274: Error: unknown mnemonic `xorq' -- `xorq %rdx,%r12'
crypto/aes/aes-x86_64.s:1275: Error: unknown mnemonic `movq' -- `movq %rsi,%r10'
crypto/aes/aes-x86_64.s:1276: Error: unknown mnemonic `movq' -- `movq %rsi,%r13'
crypto/aes/aes-x86_64.s:1278: Error: unknown mnemonic `andq' -- `andq %r9,%r10'
crypto/aes/aes-x86_64.s:1279: Error: unknown mnemonic `andq' -- `andq %r12,%r13'
crypto/aes/aes-x86_64.s:1280: Error: unknown mnemonic `movq' -- `movq %r10,%rbx'
crypto/aes/aes-x86_64.s:1281: Error: unknown mnemonic `movq' -- `movq %r13,%rdx'
crypto/aes/aes-x86_64.s:1282: Error: unknown mnemonic `shrq' -- `shrq $7,%r10'
crypto/aes/aes-x86_64.s:1283: Error: unknown mnemonic `xorq' -- `xorq %rax,%r8'
crypto/aes/aes-x86_64.s:1284: Error: unknown mnemonic `shrq' -- `shrq $7,%r13'
crypto/aes/aes-x86_64.s:1285: Error: unknown mnemonic `xorq' -- `xorq %rcx,%r11'
crypto/aes/aes-x86_64.s:1286: Error: unknown mnemonic `subq' -- `subq %r10,%rbx'
crypto/aes/aes-x86_64.s:1287: Error: unknown mnemonic `subq' -- `subq %r13,%rdx'
crypto/aes/aes-x86_64.s:1288: Error: unknown mnemonic `leaq' -- `leaq (%r9,%r9,1),%r10'
crypto/aes/aes-x86_64.s:1289: Error: unknown mnemonic `leaq' -- `leaq (%r12,%r12,1),%r13'
crypto/aes/aes-x86_64.s:1290: Error: unknown mnemonic `xorq' -- `xorq %rax,%r9'
crypto/aes/aes-x86_64.s:1291: Error: unknown mnemonic `xorq' -- `xorq %rcx,%r12'
crypto/aes/aes-x86_64.s:1292: Error: unknown mnemonic `andq' -- `andq %rdi,%r10'
crypto/aes/aes-x86_64.s:1293: Error: unknown mnemonic `andq' -- `andq %rdi,%r13'
crypto/aes/aes-x86_64.s:1294: Error: unknown mnemonic `andq' -- `andq %rbp,%rbx'
crypto/aes/aes-x86_64.s:1295: Error: unknown mnemonic `andq' -- `andq %rbp,%rdx'
crypto/aes/aes-x86_64.s:1296: Error: unknown mnemonic `xorq' -- `xorq %rbx,%r10'
crypto/aes/aes-x86_64.s:1297: Error: unknown mnemonic `xorq' -- `xorq %rdx,%r13'
crypto/aes/aes-x86_64.s:1299: Error: unknown mnemonic `xorq' -- `xorq %r10,%rax'
crypto/aes/aes-x86_64.s:1300: Error: unknown mnemonic `xorq' -- `xorq %r13,%rcx'
crypto/aes/aes-x86_64.s:1301: Error: unknown mnemonic `xorq' -- `xorq %r10,%r8'
crypto/aes/aes-x86_64.s:1302: Error: unknown mnemonic `xorq' -- `xorq %r13,%r11'
crypto/aes/aes-x86_64.s:1303: Error: unknown mnemonic `movq' -- `movq %rax,%rbx'
crypto/aes/aes-x86_64.s:1304: Error: unknown mnemonic `movq' -- `movq %rcx,%rdx'
crypto/aes/aes-x86_64.s:1305: Error: unknown mnemonic `xorq' -- `xorq %r10,%r9'
crypto/aes/aes-x86_64.s:1306: Error: unknown mnemonic `shrq' -- `shrq $32,%rbx'
crypto/aes/aes-x86_64.s:1307: Error: unknown mnemonic `xorq' -- `xorq %r13,%r12'
crypto/aes/aes-x86_64.s:1308: Error: unknown mnemonic `shrq' -- `shrq $32,%rdx'
crypto/aes/aes-x86_64.s:1309: Error: unknown mnemonic `xorq' -- `xorq %r8,%r10'
crypto/aes/aes-x86_64.s:1310: Error: unknown mnemonic `roll' -- `roll $8,%eax'
crypto/aes/aes-x86_64.s:1311: Error: unknown mnemonic `xorq' -- `xorq %r11,%r13'
crypto/aes/aes-x86_64.s:1312: Error: unknown mnemonic `roll' -- `roll $8,%ecx'
crypto/aes/aes-x86_64.s:1313: Error: unknown mnemonic `xorq' -- `xorq %r9,%r10'
crypto/aes/aes-x86_64.s:1314: Error: unknown mnemonic `roll' -- `roll $8,%ebx'
crypto/aes/aes-x86_64.s:1315: Error: unknown mnemonic `xorq' -- `xorq %r12,%r13'
crypto/aes/aes-x86_64.s:1317: Error: unknown mnemonic `roll' -- `roll $8,%edx'
crypto/aes/aes-x86_64.s:1318: Error: unknown mnemonic `xorl' -- `xorl %r10d,%eax'
crypto/aes/aes-x86_64.s:1319: Error: unknown mnemonic `shrq' -- `shrq $32,%r10'
crypto/aes/aes-x86_64.s:1320: Error: unknown mnemonic `xorl' -- `xorl %r13d,%ecx'
crypto/aes/aes-x86_64.s:1321: Error: unknown mnemonic `shrq' -- `shrq $32,%r13'
crypto/aes/aes-x86_64.s:1322: Error: unknown mnemonic `xorl' -- `xorl %r10d,%ebx'
crypto/aes/aes-x86_64.s:1323: Error: unknown mnemonic `xorl' -- `xorl %r13d,%edx'
crypto/aes/aes-x86_64.s:1325: Error: unknown mnemonic `movq' -- `movq %r8,%r10'
crypto/aes/aes-x86_64.s:1326: Error: unknown mnemonic `roll' -- `roll $24,%r8d'
crypto/aes/aes-x86_64.s:1327: Error: unknown mnemonic `movq' -- `movq %r11,%r13'
crypto/aes/aes-x86_64.s:1328: Error: unknown mnemonic `roll' -- `roll $24,%r11d'
crypto/aes/aes-x86_64.s:1329: Error: unknown mnemonic `shrq' -- `shrq $32,%r10'
crypto/aes/aes-x86_64.s:1330: Error: unknown mnemonic `xorl' -- `xorl %r8d,%eax'
crypto/aes/aes-x86_64.s:1331: Error: unknown mnemonic `shrq' -- `shrq $32,%r13'
crypto/aes/aes-x86_64.s:1332: Error: unknown mnemonic `xorl' -- `xorl %r11d,%ecx'
crypto/aes/aes-x86_64.s:1333: Error: unknown mnemonic `roll' -- `roll $24,%r10d'
crypto/aes/aes-x86_64.s:1334: Error: unknown mnemonic `movq' -- `movq %r9,%r8'
crypto/aes/aes-x86_64.s:1335: Error: unknown mnemonic `roll' -- `roll $24,%r13d'
crypto/aes/aes-x86_64.s:1336: Error: unknown mnemonic `movq' -- `movq %r12,%r11'
crypto/aes/aes-x86_64.s:1337: Error: unknown mnemonic `shrq' -- `shrq $32,%r8'
crypto/aes/aes-x86_64.s:1338: Error: unknown mnemonic `xorl' -- `xorl %r10d,%ebx'
crypto/aes/aes-x86_64.s:1339: Error: unknown mnemonic `shrq' -- `shrq $32,%r11'
crypto/aes/aes-x86_64.s:1340: Error: unknown mnemonic `xorl' -- `xorl %r13d,%edx'
crypto/aes/aes-x86_64.s:1343: Error: unknown mnemonic `roll' -- `roll $16,%r9d'
crypto/aes/aes-x86_64.s:1345: Error: unknown mnemonic `roll' -- `roll $16,%r12d'
crypto/aes/aes-x86_64.s:1347: Error: unknown mnemonic `roll' -- `roll $16,%r8d'
crypto/aes/aes-x86_64.s:1349: Error: unknown mnemonic `xorl' -- `xorl %r9d,%eax'
crypto/aes/aes-x86_64.s:1350: Error: unknown mnemonic `roll' -- `roll $16,%r11d'
crypto/aes/aes-x86_64.s:1351: Error: unknown mnemonic `xorl' -- `xorl %r12d,%ecx'
crypto/aes/aes-x86_64.s:1353: Error: unknown mnemonic `xorl' -- `xorl %r8d,%ebx'
crypto/aes/aes-x86_64.s:1354: Error: unknown mnemonic `xorl' -- `xorl %r11d,%edx'
crypto/aes/aes-x86_64.s:1355: Error: unknown mnemonic `movl' -- `movl %eax,0(%r15)'
crypto/aes/aes-x86_64.s:1356: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r15)'
crypto/aes/aes-x86_64.s:1357: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r15)'
crypto/aes/aes-x86_64.s:1358: Error: unknown mnemonic `movl' -- `movl %edx,12(%r15)'
crypto/aes/aes-x86_64.s:1359: Error: unknown mnemonic `subl' -- `subl $1,%r14d'
crypto/aes/aes-x86_64.s:1360: Error: unknown mnemonic `jnz' -- `jnz .Lpermute'
crypto/aes/aes-x86_64.s:1362: Error: unknown mnemonic `xorq' -- `xorq %rax,%rax'
crypto/aes/aes-x86_64.s:1364: Error: unknown mnemonic `movq' -- `movq 8(%rsp),%r15'
crypto/aes/aes-x86_64.s:1365: Error: bad register expression
crypto/aes/aes-x86_64.s:1366: Error: unknown mnemonic `movq' -- `movq 16(%rsp),%r14'
crypto/aes/aes-x86_64.s:1367: Error: bad register expression
crypto/aes/aes-x86_64.s:1368: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%r13'
crypto/aes/aes-x86_64.s:1369: Error: bad register expression
crypto/aes/aes-x86_64.s:1370: Error: unknown mnemonic `movq' -- `movq 32(%rsp),%r12'
crypto/aes/aes-x86_64.s:1371: Error: bad register expression
crypto/aes/aes-x86_64.s:1372: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%rbp'
crypto/aes/aes-x86_64.s:1373: Error: bad register expression
crypto/aes/aes-x86_64.s:1374: Error: unknown mnemonic `movq' -- `movq 48(%rsp),%rbx'
crypto/aes/aes-x86_64.s:1375: Error: bad register expression
crypto/aes/aes-x86_64.s:1376: Error: unknown mnemonic `addq' -- `addq $56,%rsp'
crypto/aes/aes-x86_64.s:1392: Error: unknown mnemonic `cmpq' -- `cmpq $0,%rdx'
crypto/aes/aes-x86_64.s:1393: Error: unknown mnemonic `je' -- `je .Lcbc_epilogue'
crypto/aes/aes-x86_64.s:1394: Error: unknown mnemonic `pushfq' -- `pushfq'
crypto/aes/aes-x86_64.s:1398: Error: unknown mnemonic `pushq' -- `pushq %rbx'
crypto/aes/aes-x86_64.s:1400: Error: bad register expression
crypto/aes/aes-x86_64.s:1401: Error: unknown mnemonic `pushq' -- `pushq %rbp'
crypto/aes/aes-x86_64.s:1403: Error: bad register expression
crypto/aes/aes-x86_64.s:1404: Error: unknown mnemonic `pushq' -- `pushq %r12'
crypto/aes/aes-x86_64.s:1406: Error: bad register expression
crypto/aes/aes-x86_64.s:1407: Error: unknown mnemonic `pushq' -- `pushq %r13'
crypto/aes/aes-x86_64.s:1409: Error: bad register expression
crypto/aes/aes-x86_64.s:1410: Error: unknown mnemonic `pushq' -- `pushq %r14'
crypto/aes/aes-x86_64.s:1412: Error: bad register expression
crypto/aes/aes-x86_64.s:1413: Error: unknown mnemonic `pushq' -- `pushq %r15'
crypto/aes/aes-x86_64.s:1415: Error: bad register expression
crypto/aes/aes-x86_64.s:1418: Error: unknown mnemonic `cld' -- `cld'
crypto/aes/aes-x86_64.s:1419: Error: unknown mnemonic `movl' -- `movl %r9d,%r9d'
crypto/aes/aes-x86_64.s:1421: Error: unknown mnemonic `leaq' -- `leaq .LAES_Te(%rip),%r14'
crypto/aes/aes-x86_64.s:1422: Error: unknown mnemonic `leaq' -- `leaq .LAES_Td(%rip),%r10'
crypto/aes/aes-x86_64.s:1423: Error: unknown mnemonic `cmpq' -- `cmpq $0,%r9'
crypto/aes/aes-x86_64.s:1424: Error: unknown mnemonic `cmoveq' -- `cmoveq %r10,%r14'
crypto/aes/aes-x86_64.s:1427: Error: unknown mnemonic `movl' -- `movl OPENSSL_ia32cap_P(%rip),%r10d'
crypto/aes/aes-x86_64.s:1428: Error: unknown mnemonic `cmpq' -- `cmpq $512,%rdx'
crypto/aes/aes-x86_64.s:1429: Error: unknown mnemonic `jb' -- `jb .Lcbc_slow_prologue'
crypto/aes/aes-x86_64.s:1430: Error: unknown mnemonic `testq' -- `testq $15,%rdx'
crypto/aes/aes-x86_64.s:1431: Error: unknown mnemonic `jnz' -- `jnz .Lcbc_slow_prologue'
crypto/aes/aes-x86_64.s:1432: Error: unknown mnemonic `btl' -- `btl $28,%r10d'
crypto/aes/aes-x86_64.s:1433: Error: unknown mnemonic `jc' -- `jc .Lcbc_slow_prologue'
crypto/aes/aes-x86_64.s:1436: Error: unknown mnemonic `leaq' -- `leaq -88-248(%rsp),%r15'
crypto/aes/aes-x86_64.s:1437: Error: unknown mnemonic `andq' -- `andq $-64,%r15'
crypto/aes/aes-x86_64.s:1440: Error: unknown mnemonic `movq' -- `movq %r14,%r10'
crypto/aes/aes-x86_64.s:1441: Error: unknown mnemonic `leaq' -- `leaq 2304(%r14),%r11'
crypto/aes/aes-x86_64.s:1442: Error: unknown mnemonic `movq' -- `movq %r15,%r12'
crypto/aes/aes-x86_64.s:1443: Error: unknown mnemonic `andq' -- `andq $0xFFF,%r10'
crypto/aes/aes-x86_64.s:1444: Error: unknown mnemonic `andq' -- `andq $0xFFF,%r11'
crypto/aes/aes-x86_64.s:1445: Error: unknown mnemonic `andq' -- `andq $0xFFF,%r12'
crypto/aes/aes-x86_64.s:1447: Error: unknown mnemonic `cmpq' -- `cmpq %r11,%r12'
crypto/aes/aes-x86_64.s:1448: Error: unknown mnemonic `jb' -- `jb .Lcbc_te_break_out'
crypto/aes/aes-x86_64.s:1449: Error: unknown mnemonic `subq' -- `subq %r11,%r12'
crypto/aes/aes-x86_64.s:1450: Error: unknown mnemonic `subq' -- `subq %r12,%r15'
crypto/aes/aes-x86_64.s:1451: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_te_ok'
crypto/aes/aes-x86_64.s:1453: Error: unknown mnemonic `subq' -- `subq %r10,%r12'
crypto/aes/aes-x86_64.s:1454: Error: unknown mnemonic `andq' -- `andq $0xFFF,%r12'
crypto/aes/aes-x86_64.s:1455: Error: unknown mnemonic `addq' -- `addq $320,%r12'
crypto/aes/aes-x86_64.s:1456: Error: unknown mnemonic `subq' -- `subq %r12,%r15'
crypto/aes/aes-x86_64.s:1460: Error: unknown mnemonic `xchgq' -- `xchgq %rsp,%r15'
crypto/aes/aes-x86_64.s:1461: Error: bad register expression
crypto/aes/aes-x86_64.s:1463: Error: unknown mnemonic `movq' -- `movq %r15,16(%rsp)'
crypto/aes/aes-x86_64.s:1466: Error: unknown mnemonic `movq' -- `movq %rdi,24(%rsp)'
crypto/aes/aes-x86_64.s:1467: Error: unknown mnemonic `movq' -- `movq %rsi,32(%rsp)'
crypto/aes/aes-x86_64.s:1468: Error: unknown mnemonic `movq' -- `movq %rdx,40(%rsp)'
crypto/aes/aes-x86_64.s:1469: Error: unknown mnemonic `movq' -- `movq %rcx,48(%rsp)'
crypto/aes/aes-x86_64.s:1470: Error: unknown mnemonic `movq' -- `movq %r8,56(%rsp)'
crypto/aes/aes-x86_64.s:1471: Error: unknown mnemonic `movl' -- `movl $0,80+240(%rsp)'
crypto/aes/aes-x86_64.s:1472: Error: unknown mnemonic `movq' -- `movq %r8,%rbp'
crypto/aes/aes-x86_64.s:1473: Error: unknown mnemonic `movq' -- `movq %r9,%rbx'
crypto/aes/aes-x86_64.s:1474: Error: unknown mnemonic `movq' -- `movq %rsi,%r9'
crypto/aes/aes-x86_64.s:1475: Error: unknown mnemonic `movq' -- `movq %rdi,%r8'
crypto/aes/aes-x86_64.s:1476: Error: unknown mnemonic `movq' -- `movq %rcx,%r15'
crypto/aes/aes-x86_64.s:1478: Error: unknown mnemonic `movl' -- `movl 240(%r15),%eax'
crypto/aes/aes-x86_64.s:1480: Error: unknown mnemonic `movq' -- `movq %r15,%r10'
crypto/aes/aes-x86_64.s:1481: Error: unknown mnemonic `subq' -- `subq %r14,%r10'
crypto/aes/aes-x86_64.s:1482: Error: unknown mnemonic `andq' -- `andq $0xfff,%r10'
crypto/aes/aes-x86_64.s:1483: Error: unknown mnemonic `cmpq' -- `cmpq $2304,%r10'
crypto/aes/aes-x86_64.s:1484: Error: unknown mnemonic `jb' -- `jb .Lcbc_do_ecopy'
crypto/aes/aes-x86_64.s:1485: Error: unknown mnemonic `cmpq' -- `cmpq $4096-248,%r10'
crypto/aes/aes-x86_64.s:1486: Error: unknown mnemonic `jb' -- `jb .Lcbc_skip_ecopy'
crypto/aes/aes-x86_64.s:1489: Error: unknown mnemonic `movq' -- `movq %r15,%rsi'
crypto/aes/aes-x86_64.s:1490: Error: unknown mnemonic `leaq' -- `leaq 80(%rsp),%rdi'
crypto/aes/aes-x86_64.s:1491: Error: unknown mnemonic `leaq' -- `leaq 80(%rsp),%r15'
crypto/aes/aes-x86_64.s:1492: Error: unknown mnemonic `movl' -- `movl $30,%ecx'
crypto/aes/aes-x86_64.s:1494: Error: unknown mnemonic `movl' -- `movl %eax,(%rdi)'
crypto/aes/aes-x86_64.s:1496: Error: unknown mnemonic `movq' -- `movq %r15,0(%rsp)'
crypto/aes/aes-x86_64.s:1498: Error: unknown mnemonic `movl' -- `movl $18,%ecx'
crypto/aes/aes-x86_64.s:1501: Error: unknown mnemonic `movq' -- `movq 0(%r14),%r10'
crypto/aes/aes-x86_64.s:1502: Error: unknown mnemonic `movq' -- `movq 32(%r14),%r11'
crypto/aes/aes-x86_64.s:1503: Error: unknown mnemonic `movq' -- `movq 64(%r14),%r12'
crypto/aes/aes-x86_64.s:1504: Error: unknown mnemonic `movq' -- `movq 96(%r14),%r13'
crypto/aes/aes-x86_64.s:1505: Error: unknown mnemonic `leaq' -- `leaq 128(%r14),%r14'
crypto/aes/aes-x86_64.s:1506: Error: unknown mnemonic `subl' -- `subl $1,%ecx'
crypto/aes/aes-x86_64.s:1507: Error: unknown mnemonic `jnz' -- `jnz .Lcbc_prefetch_te'
crypto/aes/aes-x86_64.s:1508: Error: unknown mnemonic `leaq' -- `leaq -2304(%r14),%r14'
crypto/aes/aes-x86_64.s:1510: Error: unknown mnemonic `cmpq' -- `cmpq $0,%rbx'
crypto/aes/aes-x86_64.s:1511: Error: unknown mnemonic `je' -- `je .LFAST_DECRYPT'
crypto/aes/aes-x86_64.s:1514: Error: unknown mnemonic `movl' -- `movl 0(%rbp),%eax'
crypto/aes/aes-x86_64.s:1515: Error: unknown mnemonic `movl' -- `movl 4(%rbp),%ebx'
crypto/aes/aes-x86_64.s:1516: Error: unknown mnemonic `movl' -- `movl 8(%rbp),%ecx'
crypto/aes/aes-x86_64.s:1517: Error: unknown mnemonic `movl' -- `movl 12(%rbp),%edx'
crypto/aes/aes-x86_64.s:1521: Error: unknown mnemonic `xorl' -- `xorl 0(%r8),%eax'
crypto/aes/aes-x86_64.s:1522: Error: unknown mnemonic `xorl' -- `xorl 4(%r8),%ebx'
crypto/aes/aes-x86_64.s:1523: Error: unknown mnemonic `xorl' -- `xorl 8(%r8),%ecx'
crypto/aes/aes-x86_64.s:1524: Error: unknown mnemonic `xorl' -- `xorl 12(%r8),%edx'
crypto/aes/aes-x86_64.s:1525: Error: unknown mnemonic `movq' -- `movq 0(%rsp),%r15'
crypto/aes/aes-x86_64.s:1526: Error: unknown mnemonic `movq' -- `movq %r8,24(%rsp)'
crypto/aes/aes-x86_64.s:1528: Error: unknown mnemonic `call' -- `call _x86_64_AES_encrypt'
crypto/aes/aes-x86_64.s:1530: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%r8'
crypto/aes/aes-x86_64.s:1531: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%r10'
crypto/aes/aes-x86_64.s:1532: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1533: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1534: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1535: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1537: Error: unknown mnemonic `leaq' -- `leaq 16(%r8),%r8'
crypto/aes/aes-x86_64.s:1538: Error: unknown mnemonic `leaq' -- `leaq 16(%r9),%r9'
crypto/aes/aes-x86_64.s:1539: Error: unknown mnemonic `subq' -- `subq $16,%r10'
crypto/aes/aes-x86_64.s:1540: Error: unknown mnemonic `testq' -- `testq $-16,%r10'
crypto/aes/aes-x86_64.s:1541: Error: unknown mnemonic `movq' -- `movq %r10,40(%rsp)'
crypto/aes/aes-x86_64.s:1542: Error: unknown mnemonic `jnz' -- `jnz .Lcbc_fast_enc_loop'
crypto/aes/aes-x86_64.s:1543: Error: unknown mnemonic `movq' -- `movq 56(%rsp),%rbp'
crypto/aes/aes-x86_64.s:1544: Error: unknown mnemonic `movl' -- `movl %eax,0(%rbp)'
crypto/aes/aes-x86_64.s:1545: Error: unknown mnemonic `movl' -- `movl %ebx,4(%rbp)'
crypto/aes/aes-x86_64.s:1546: Error: unknown mnemonic `movl' -- `movl %ecx,8(%rbp)'
crypto/aes/aes-x86_64.s:1547: Error: unknown mnemonic `movl' -- `movl %edx,12(%rbp)'
crypto/aes/aes-x86_64.s:1549: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_fast_cleanup'
crypto/aes/aes-x86_64.s:1554: Error: unknown mnemonic `cmpq' -- `cmpq %r8,%r9'
crypto/aes/aes-x86_64.s:1555: Error: unknown mnemonic `je' -- `je .Lcbc_fast_dec_in_place'
crypto/aes/aes-x86_64.s:1557: Error: unknown mnemonic `movq' -- `movq %rbp,64(%rsp)'
crypto/aes/aes-x86_64.s:1560: Error: unknown mnemonic `movl' -- `movl 0(%r8),%eax'
crypto/aes/aes-x86_64.s:1561: Error: unknown mnemonic `movl' -- `movl 4(%r8),%ebx'
crypto/aes/aes-x86_64.s:1562: Error: unknown mnemonic `movl' -- `movl 8(%r8),%ecx'
crypto/aes/aes-x86_64.s:1563: Error: unknown mnemonic `movl' -- `movl 12(%r8),%edx'
crypto/aes/aes-x86_64.s:1564: Error: unknown mnemonic `movq' -- `movq 0(%rsp),%r15'
crypto/aes/aes-x86_64.s:1565: Error: unknown mnemonic `movq' -- `movq %r8,24(%rsp)'
crypto/aes/aes-x86_64.s:1567: Error: unknown mnemonic `call' -- `call _x86_64_AES_decrypt'
crypto/aes/aes-x86_64.s:1569: Error: unknown mnemonic `movq' -- `movq 64(%rsp),%rbp'
crypto/aes/aes-x86_64.s:1570: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%r8'
crypto/aes/aes-x86_64.s:1571: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%r10'
crypto/aes/aes-x86_64.s:1572: Error: unknown mnemonic `xorl' -- `xorl 0(%rbp),%eax'
crypto/aes/aes-x86_64.s:1573: Error: unknown mnemonic `xorl' -- `xorl 4(%rbp),%ebx'
crypto/aes/aes-x86_64.s:1574: Error: unknown mnemonic `xorl' -- `xorl 8(%rbp),%ecx'
crypto/aes/aes-x86_64.s:1575: Error: unknown mnemonic `xorl' -- `xorl 12(%rbp),%edx'
crypto/aes/aes-x86_64.s:1576: Error: unknown mnemonic `movq' -- `movq %r8,%rbp'
crypto/aes/aes-x86_64.s:1578: Error: unknown mnemonic `subq' -- `subq $16,%r10'
crypto/aes/aes-x86_64.s:1579: Error: unknown mnemonic `movq' -- `movq %r10,40(%rsp)'
crypto/aes/aes-x86_64.s:1580: Error: unknown mnemonic `movq' -- `movq %rbp,64(%rsp)'
crypto/aes/aes-x86_64.s:1582: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1583: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1584: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1585: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1587: Error: unknown mnemonic `leaq' -- `leaq 16(%r8),%r8'
crypto/aes/aes-x86_64.s:1588: Error: unknown mnemonic `leaq' -- `leaq 16(%r9),%r9'
crypto/aes/aes-x86_64.s:1589: Error: unknown mnemonic `jnz' -- `jnz .Lcbc_fast_dec_loop'
crypto/aes/aes-x86_64.s:1590: Error: unknown mnemonic `movq' -- `movq 56(%rsp),%r12'
crypto/aes/aes-x86_64.s:1591: Error: unknown mnemonic `movq' -- `movq 0(%rbp),%r10'
crypto/aes/aes-x86_64.s:1592: Error: unknown mnemonic `movq' -- `movq 8(%rbp),%r11'
crypto/aes/aes-x86_64.s:1593: Error: unknown mnemonic `movq' -- `movq %r10,0(%r12)'
crypto/aes/aes-x86_64.s:1594: Error: unknown mnemonic `movq' -- `movq %r11,8(%r12)'
crypto/aes/aes-x86_64.s:1595: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_fast_cleanup'
crypto/aes/aes-x86_64.s:1599: Error: unknown mnemonic `movq' -- `movq 0(%rbp),%r10'
crypto/aes/aes-x86_64.s:1600: Error: unknown mnemonic `movq' -- `movq 8(%rbp),%r11'
crypto/aes/aes-x86_64.s:1601: Error: unknown mnemonic `movq' -- `movq %r10,0+64(%rsp)'
crypto/aes/aes-x86_64.s:1602: Error: unknown mnemonic `movq' -- `movq %r11,8+64(%rsp)'
crypto/aes/aes-x86_64.s:1605: Error: unknown mnemonic `movl' -- `movl 0(%r8),%eax'
crypto/aes/aes-x86_64.s:1606: Error: unknown mnemonic `movl' -- `movl 4(%r8),%ebx'
crypto/aes/aes-x86_64.s:1607: Error: unknown mnemonic `movl' -- `movl 8(%r8),%ecx'
crypto/aes/aes-x86_64.s:1608: Error: unknown mnemonic `movl' -- `movl 12(%r8),%edx'
crypto/aes/aes-x86_64.s:1609: Error: unknown mnemonic `movq' -- `movq 0(%rsp),%r15'
crypto/aes/aes-x86_64.s:1610: Error: unknown mnemonic `movq' -- `movq %r8,24(%rsp)'
crypto/aes/aes-x86_64.s:1612: Error: unknown mnemonic `call' -- `call _x86_64_AES_decrypt'
crypto/aes/aes-x86_64.s:1614: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%r8'
crypto/aes/aes-x86_64.s:1615: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%r10'
crypto/aes/aes-x86_64.s:1616: Error: unknown mnemonic `xorl' -- `xorl 0+64(%rsp),%eax'
crypto/aes/aes-x86_64.s:1617: Error: unknown mnemonic `xorl' -- `xorl 4+64(%rsp),%ebx'
crypto/aes/aes-x86_64.s:1618: Error: unknown mnemonic `xorl' -- `xorl 8+64(%rsp),%ecx'
crypto/aes/aes-x86_64.s:1619: Error: unknown mnemonic `xorl' -- `xorl 12+64(%rsp),%edx'
crypto/aes/aes-x86_64.s:1621: Error: unknown mnemonic `movq' -- `movq 0(%r8),%r11'
crypto/aes/aes-x86_64.s:1622: Error: unknown mnemonic `movq' -- `movq 8(%r8),%r12'
crypto/aes/aes-x86_64.s:1623: Error: unknown mnemonic `subq' -- `subq $16,%r10'
crypto/aes/aes-x86_64.s:1624: Error: unknown mnemonic `jz' -- `jz .Lcbc_fast_dec_in_place_done'
crypto/aes/aes-x86_64.s:1626: Error: unknown mnemonic `movq' -- `movq %r11,0+64(%rsp)'
crypto/aes/aes-x86_64.s:1627: Error: unknown mnemonic `movq' -- `movq %r12,8+64(%rsp)'
crypto/aes/aes-x86_64.s:1629: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1630: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1631: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1632: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1634: Error: unknown mnemonic `leaq' -- `leaq 16(%r8),%r8'
crypto/aes/aes-x86_64.s:1635: Error: unknown mnemonic `leaq' -- `leaq 16(%r9),%r9'
crypto/aes/aes-x86_64.s:1636: Error: unknown mnemonic `movq' -- `movq %r10,40(%rsp)'
crypto/aes/aes-x86_64.s:1637: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_fast_dec_in_place_loop'
crypto/aes/aes-x86_64.s:1639: Error: unknown mnemonic `movq' -- `movq 56(%rsp),%rdi'
crypto/aes/aes-x86_64.s:1640: Error: unknown mnemonic `movq' -- `movq %r11,0(%rdi)'
crypto/aes/aes-x86_64.s:1641: Error: unknown mnemonic `movq' -- `movq %r12,8(%rdi)'
crypto/aes/aes-x86_64.s:1643: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1644: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1645: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1646: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1650: Error: unknown mnemonic `cmpl' -- `cmpl $0,80+240(%rsp)'
crypto/aes/aes-x86_64.s:1651: Error: unknown mnemonic `leaq' -- `leaq 80(%rsp),%rdi'
crypto/aes/aes-x86_64.s:1652: Error: unknown mnemonic `je' -- `je .Lcbc_exit'
crypto/aes/aes-x86_64.s:1653: Error: unknown mnemonic `movl' -- `movl $30,%ecx'
crypto/aes/aes-x86_64.s:1654: Error: unknown mnemonic `xorq' -- `xorq %rax,%rax'
crypto/aes/aes-x86_64.s:1657: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_exit'
crypto/aes/aes-x86_64.s:1664: Error: unknown mnemonic `leaq' -- `leaq -88(%rsp),%rbp'
crypto/aes/aes-x86_64.s:1665: Error: unknown mnemonic `andq' -- `andq $-64,%rbp'
crypto/aes/aes-x86_64.s:1667: Error: unknown mnemonic `leaq' -- `leaq -88-63(%rcx),%r10'
crypto/aes/aes-x86_64.s:1668: Error: unknown mnemonic `subq' -- `subq %rbp,%r10'
crypto/aes/aes-x86_64.s:1669: Error: unknown mnemonic `negq' -- `negq %r10'
crypto/aes/aes-x86_64.s:1670: Error: unknown mnemonic `andq' -- `andq $0x3c0,%r10'
crypto/aes/aes-x86_64.s:1671: Error: unknown mnemonic `subq' -- `subq %r10,%rbp'
crypto/aes/aes-x86_64.s:1673: Error: unknown mnemonic `xchgq' -- `xchgq %rsp,%rbp'
crypto/aes/aes-x86_64.s:1674: Error: bad register expression
crypto/aes/aes-x86_64.s:1676: Error: unknown mnemonic `movq' -- `movq %rbp,16(%rsp)'
crypto/aes/aes-x86_64.s:1683: Error: unknown mnemonic `movq' -- `movq %r8,56(%rsp)'
crypto/aes/aes-x86_64.s:1684: Error: unknown mnemonic `movq' -- `movq %r8,%rbp'
crypto/aes/aes-x86_64.s:1685: Error: unknown mnemonic `movq' -- `movq %r9,%rbx'
crypto/aes/aes-x86_64.s:1686: Error: unknown mnemonic `movq' -- `movq %rsi,%r9'
crypto/aes/aes-x86_64.s:1687: Error: unknown mnemonic `movq' -- `movq %rdi,%r8'
crypto/aes/aes-x86_64.s:1688: Error: unknown mnemonic `movq' -- `movq %rcx,%r15'
crypto/aes/aes-x86_64.s:1689: Error: unknown mnemonic `movq' -- `movq %rdx,%r10'
crypto/aes/aes-x86_64.s:1691: Error: unknown mnemonic `movl' -- `movl 240(%r15),%eax'
crypto/aes/aes-x86_64.s:1692: Error: unknown mnemonic `movq' -- `movq %r15,0(%rsp)'
crypto/aes/aes-x86_64.s:1693: Error: operand 1 must be a SIMD vector register -- `shll $4,%eax'
crypto/aes/aes-x86_64.s:1694: Error: unknown mnemonic `leaq' -- `leaq (%r15,%rax,1),%rax'
crypto/aes/aes-x86_64.s:1695: Error: unknown mnemonic `movq' -- `movq %rax,8(%rsp)'
crypto/aes/aes-x86_64.s:1698: Error: unknown mnemonic `leaq' -- `leaq 2048(%r14),%r14'
crypto/aes/aes-x86_64.s:1699: Error: unknown mnemonic `leaq' -- `leaq 768-8(%rsp),%rax'
crypto/aes/aes-x86_64.s:1700: Error: unknown mnemonic `subq' -- `subq %r14,%rax'
crypto/aes/aes-x86_64.s:1701: Error: unknown mnemonic `andq' -- `andq $0x300,%rax'
crypto/aes/aes-x86_64.s:1702: Error: unknown mnemonic `leaq' -- `leaq (%r14,%rax,1),%r14'
crypto/aes/aes-x86_64.s:1704: Error: unknown mnemonic `cmpq' -- `cmpq $0,%rbx'
crypto/aes/aes-x86_64.s:1705: Error: unknown mnemonic `je' -- `je .LSLOW_DECRYPT'
crypto/aes/aes-x86_64.s:1708: Error: unknown mnemonic `testq' -- `testq $-16,%r10'
crypto/aes/aes-x86_64.s:1709: Error: unknown mnemonic `movl' -- `movl 0(%rbp),%eax'
crypto/aes/aes-x86_64.s:1710: Error: unknown mnemonic `movl' -- `movl 4(%rbp),%ebx'
crypto/aes/aes-x86_64.s:1711: Error: unknown mnemonic `movl' -- `movl 8(%rbp),%ecx'
crypto/aes/aes-x86_64.s:1712: Error: unknown mnemonic `movl' -- `movl 12(%rbp),%edx'
crypto/aes/aes-x86_64.s:1713: Error: unknown mnemonic `jz' -- `jz .Lcbc_slow_enc_tail'
crypto/aes/aes-x86_64.s:1717: Error: unknown mnemonic `xorl' -- `xorl 0(%r8),%eax'
crypto/aes/aes-x86_64.s:1718: Error: unknown mnemonic `xorl' -- `xorl 4(%r8),%ebx'
crypto/aes/aes-x86_64.s:1719: Error: unknown mnemonic `xorl' -- `xorl 8(%r8),%ecx'
crypto/aes/aes-x86_64.s:1720: Error: unknown mnemonic `xorl' -- `xorl 12(%r8),%edx'
crypto/aes/aes-x86_64.s:1721: Error: unknown mnemonic `movq' -- `movq 0(%rsp),%r15'
crypto/aes/aes-x86_64.s:1722: Error: unknown mnemonic `movq' -- `movq %r8,24(%rsp)'
crypto/aes/aes-x86_64.s:1723: Error: unknown mnemonic `movq' -- `movq %r9,32(%rsp)'
crypto/aes/aes-x86_64.s:1724: Error: unknown mnemonic `movq' -- `movq %r10,40(%rsp)'
crypto/aes/aes-x86_64.s:1726: Error: unknown mnemonic `call' -- `call _x86_64_AES_encrypt_compact'
crypto/aes/aes-x86_64.s:1728: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%r8'
crypto/aes/aes-x86_64.s:1729: Error: unknown mnemonic `movq' -- `movq 32(%rsp),%r9'
crypto/aes/aes-x86_64.s:1730: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%r10'
crypto/aes/aes-x86_64.s:1731: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1732: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1733: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1734: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1736: Error: unknown mnemonic `leaq' -- `leaq 16(%r8),%r8'
crypto/aes/aes-x86_64.s:1737: Error: unknown mnemonic `leaq' -- `leaq 16(%r9),%r9'
crypto/aes/aes-x86_64.s:1738: Error: unknown mnemonic `subq' -- `subq $16,%r10'
crypto/aes/aes-x86_64.s:1739: Error: unknown mnemonic `testq' -- `testq $-16,%r10'
crypto/aes/aes-x86_64.s:1740: Error: unknown mnemonic `jnz' -- `jnz .Lcbc_slow_enc_loop'
crypto/aes/aes-x86_64.s:1741: Error: unknown mnemonic `testq' -- `testq $15,%r10'
crypto/aes/aes-x86_64.s:1742: Error: unknown mnemonic `jnz' -- `jnz .Lcbc_slow_enc_tail'
crypto/aes/aes-x86_64.s:1743: Error: unknown mnemonic `movq' -- `movq 56(%rsp),%rbp'
crypto/aes/aes-x86_64.s:1744: Error: unknown mnemonic `movl' -- `movl %eax,0(%rbp)'
crypto/aes/aes-x86_64.s:1745: Error: unknown mnemonic `movl' -- `movl %ebx,4(%rbp)'
crypto/aes/aes-x86_64.s:1746: Error: unknown mnemonic `movl' -- `movl %ecx,8(%rbp)'
crypto/aes/aes-x86_64.s:1747: Error: unknown mnemonic `movl' -- `movl %edx,12(%rbp)'
crypto/aes/aes-x86_64.s:1749: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_exit'
crypto/aes/aes-x86_64.s:1753: Error: unknown mnemonic `movq' -- `movq %rax,%r11'
crypto/aes/aes-x86_64.s:1754: Error: unknown mnemonic `movq' -- `movq %rcx,%r12'
crypto/aes/aes-x86_64.s:1755: Error: unknown mnemonic `movq' -- `movq %r10,%rcx'
crypto/aes/aes-x86_64.s:1756: Error: unknown mnemonic `movq' -- `movq %r8,%rsi'
crypto/aes/aes-x86_64.s:1757: Error: unknown mnemonic `movq' -- `movq %r9,%rdi'
crypto/aes/aes-x86_64.s:1759: Error: unknown mnemonic `movq' -- `movq $16,%rcx'
crypto/aes/aes-x86_64.s:1760: Error: unknown mnemonic `subq' -- `subq %r10,%rcx'
crypto/aes/aes-x86_64.s:1761: Error: unknown mnemonic `xorq' -- `xorq %rax,%rax'
crypto/aes/aes-x86_64.s:1763: Error: unknown mnemonic `movq' -- `movq %r9,%r8'
crypto/aes/aes-x86_64.s:1764: Error: unknown mnemonic `movq' -- `movq $16,%r10'
crypto/aes/aes-x86_64.s:1765: Error: unknown mnemonic `movq' -- `movq %r11,%rax'
crypto/aes/aes-x86_64.s:1766: Error: unknown mnemonic `movq' -- `movq %r12,%rcx'
crypto/aes/aes-x86_64.s:1767: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_slow_enc_loop'
crypto/aes/aes-x86_64.s:1771: Error: unknown mnemonic `shrq' -- `shrq $3,%rax'
crypto/aes/aes-x86_64.s:1772: Error: unknown mnemonic `addq' -- `addq %rax,%r14'
crypto/aes/aes-x86_64.s:1774: Error: unknown mnemonic `movq' -- `movq 0(%rbp),%r11'
crypto/aes/aes-x86_64.s:1775: Error: unknown mnemonic `movq' -- `movq 8(%rbp),%r12'
crypto/aes/aes-x86_64.s:1776: Error: unknown mnemonic `movq' -- `movq %r11,0+64(%rsp)'
crypto/aes/aes-x86_64.s:1777: Error: unknown mnemonic `movq' -- `movq %r12,8+64(%rsp)'
crypto/aes/aes-x86_64.s:1781: Error: unknown mnemonic `movl' -- `movl 0(%r8),%eax'
crypto/aes/aes-x86_64.s:1782: Error: unknown mnemonic `movl' -- `movl 4(%r8),%ebx'
crypto/aes/aes-x86_64.s:1783: Error: unknown mnemonic `movl' -- `movl 8(%r8),%ecx'
crypto/aes/aes-x86_64.s:1784: Error: unknown mnemonic `movl' -- `movl 12(%r8),%edx'
crypto/aes/aes-x86_64.s:1785: Error: unknown mnemonic `movq' -- `movq 0(%rsp),%r15'
crypto/aes/aes-x86_64.s:1786: Error: unknown mnemonic `movq' -- `movq %r8,24(%rsp)'
crypto/aes/aes-x86_64.s:1787: Error: unknown mnemonic `movq' -- `movq %r9,32(%rsp)'
crypto/aes/aes-x86_64.s:1788: Error: unknown mnemonic `movq' -- `movq %r10,40(%rsp)'
crypto/aes/aes-x86_64.s:1790: Error: unknown mnemonic `call' -- `call _x86_64_AES_decrypt_compact'
crypto/aes/aes-x86_64.s:1792: Error: unknown mnemonic `movq' -- `movq 24(%rsp),%r8'
crypto/aes/aes-x86_64.s:1793: Error: unknown mnemonic `movq' -- `movq 32(%rsp),%r9'
crypto/aes/aes-x86_64.s:1794: Error: unknown mnemonic `movq' -- `movq 40(%rsp),%r10'
crypto/aes/aes-x86_64.s:1795: Error: unknown mnemonic `xorl' -- `xorl 0+64(%rsp),%eax'
crypto/aes/aes-x86_64.s:1796: Error: unknown mnemonic `xorl' -- `xorl 4+64(%rsp),%ebx'
crypto/aes/aes-x86_64.s:1797: Error: unknown mnemonic `xorl' -- `xorl 8+64(%rsp),%ecx'
crypto/aes/aes-x86_64.s:1798: Error: unknown mnemonic `xorl' -- `xorl 12+64(%rsp),%edx'
crypto/aes/aes-x86_64.s:1800: Error: unknown mnemonic `movq' -- `movq 0(%r8),%r11'
crypto/aes/aes-x86_64.s:1801: Error: unknown mnemonic `movq' -- `movq 8(%r8),%r12'
crypto/aes/aes-x86_64.s:1802: Error: unknown mnemonic `subq' -- `subq $16,%r10'
crypto/aes/aes-x86_64.s:1803: Error: unknown mnemonic `jc' -- `jc .Lcbc_slow_dec_partial'
crypto/aes/aes-x86_64.s:1804: Error: unknown mnemonic `jz' -- `jz .Lcbc_slow_dec_done'
crypto/aes/aes-x86_64.s:1806: Error: unknown mnemonic `movq' -- `movq %r11,0+64(%rsp)'
crypto/aes/aes-x86_64.s:1807: Error: unknown mnemonic `movq' -- `movq %r12,8+64(%rsp)'
crypto/aes/aes-x86_64.s:1809: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1810: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1811: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1812: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1814: Error: unknown mnemonic `leaq' -- `leaq 16(%r8),%r8'
crypto/aes/aes-x86_64.s:1815: Error: unknown mnemonic `leaq' -- `leaq 16(%r9),%r9'
crypto/aes/aes-x86_64.s:1816: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_slow_dec_loop'
crypto/aes/aes-x86_64.s:1818: Error: unknown mnemonic `movq' -- `movq 56(%rsp),%rdi'
crypto/aes/aes-x86_64.s:1819: Error: unknown mnemonic `movq' -- `movq %r11,0(%rdi)'
crypto/aes/aes-x86_64.s:1820: Error: unknown mnemonic `movq' -- `movq %r12,8(%rdi)'
crypto/aes/aes-x86_64.s:1822: Error: unknown mnemonic `movl' -- `movl %eax,0(%r9)'
crypto/aes/aes-x86_64.s:1823: Error: unknown mnemonic `movl' -- `movl %ebx,4(%r9)'
crypto/aes/aes-x86_64.s:1824: Error: unknown mnemonic `movl' -- `movl %ecx,8(%r9)'
crypto/aes/aes-x86_64.s:1825: Error: unknown mnemonic `movl' -- `movl %edx,12(%r9)'
crypto/aes/aes-x86_64.s:1827: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_exit'
crypto/aes/aes-x86_64.s:1831: Error: unknown mnemonic `movq' -- `movq 56(%rsp),%rdi'
crypto/aes/aes-x86_64.s:1832: Error: unknown mnemonic `movq' -- `movq %r11,0(%rdi)'
crypto/aes/aes-x86_64.s:1833: Error: unknown mnemonic `movq' -- `movq %r12,8(%rdi)'
crypto/aes/aes-x86_64.s:1835: Error: unknown mnemonic `movl' -- `movl %eax,0+64(%rsp)'
crypto/aes/aes-x86_64.s:1836: Error: unknown mnemonic `movl' -- `movl %ebx,4+64(%rsp)'
crypto/aes/aes-x86_64.s:1837: Error: unknown mnemonic `movl' -- `movl %ecx,8+64(%rsp)'
crypto/aes/aes-x86_64.s:1838: Error: unknown mnemonic `movl' -- `movl %edx,12+64(%rsp)'
crypto/aes/aes-x86_64.s:1840: Error: unknown mnemonic `movq' -- `movq %r9,%rdi'
crypto/aes/aes-x86_64.s:1841: Error: unknown mnemonic `leaq' -- `leaq 64(%rsp),%rsi'
crypto/aes/aes-x86_64.s:1842: Error: unknown mnemonic `leaq' -- `leaq 16(%r10),%rcx'
crypto/aes/aes-x86_64.s:1844: Error: unknown mnemonic `jmp' -- `jmp .Lcbc_exit'
crypto/aes/aes-x86_64.s:1848: Error: unknown mnemonic `movq' -- `movq 16(%rsp),%rsi'
crypto/aes/aes-x86_64.s:1849: Error: bad register expression
crypto/aes/aes-x86_64.s:1850: Error: unknown mnemonic `movq' -- `movq (%rsi),%r15'
crypto/aes/aes-x86_64.s:1851: Error: bad register expression
crypto/aes/aes-x86_64.s:1852: Error: unknown mnemonic `movq' -- `movq 8(%rsi),%r14'
crypto/aes/aes-x86_64.s:1853: Error: bad register expression
crypto/aes/aes-x86_64.s:1854: Error: unknown mnemonic `movq' -- `movq 16(%rsi),%r13'
crypto/aes/aes-x86_64.s:1855: Error: bad register expression
crypto/aes/aes-x86_64.s:1856: Error: unknown mnemonic `movq' -- `movq 24(%rsi),%r12'
crypto/aes/aes-x86_64.s:1857: Error: bad register expression
crypto/aes/aes-x86_64.s:1858: Error: unknown mnemonic `movq' -- `movq 32(%rsi),%rbp'
crypto/aes/aes-x86_64.s:1859: Error: bad register expression
crypto/aes/aes-x86_64.s:1860: Error: unknown mnemonic `movq' -- `movq 40(%rsi),%rbx'
crypto/aes/aes-x86_64.s:1861: Error: bad register expression
crypto/aes/aes-x86_64.s:1862: Error: unknown mnemonic `leaq' -- `leaq 48(%rsi),%rsp'
crypto/aes/aes-x86_64.s:1863: Error: bad register expression
crypto/aes/aes-x86_64.s:1865: Error: unknown mnemonic `popfq' -- `popfq'
crypto/aes/aes-x86_64.s:1873: Warning: alignment too large: 63 assumed
crypto/aes/aes-x86_64.s:2263: Warning: alignment too large: 63 assumed
crypto/aes/aes-x86_64.s:2658: Warning: alignment too large: 63 assumed
crypto/aes/aes-x86_64.s: Internal error in check_mapping_symbols at /data/jenkins/workspace/GNU-toolchain/arm-10/src/binutils-gdb/gas/config/tc-aarch64.c:8658.
Please report this bug.
make[1]: *** [Makefile:12790: crypto/aes/libcrypto-lib-aes-x86_64.o] Error 1
make[1]: Leaving directory '/home/huhu/third_part/openGL/openssl-openssl-master'
make: *** [Makefile:3223:build_sw] 错误 2

这个位置跟博主不一样

找到官方的地址:github openssl

找到别人提过跟我类似的问题,删除-m64并不是根本的解决办法,具体原因是没有给定 os/compile(虽然我目前也不知道这个是什么)在Configure 后面加,正确的configure命令已经记录在上面了:unrecognized command line option '-m64' · Issue #7655 · openssl/openssl · GitHub 

make

make install

//过程太长不在此做记录了

可以看到install文件夹下就出现了编译好后的文件(后面交叉编译mesa-12.0.5时需要依赖它们)

huhu@huhu-System-Product-Name:~/third_part/openGL/openssl-openssl-master$ cd install
huhu@huhu-System-Product-Name:~/third_part/openGL/openssl-openssl-master/install$ ls
bin  include  lib  share  ssl

如上一样,需要把此包路径添加到~/.bashrc中

export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/home/huhu/third_part/openGL/openssl-openssl-master/install/lib/pkgconfig"


你可能感兴趣的:(c++,linux,perl,unix)