Implementation notes: aarch64, lionheart30, crypto_aead/aegis256

Computer: lionheart30
Architecture: aarch64
CPU ID: unknown CPU ID
SUPERCOP version: 20160806
Operation: crypto_aead
Primitive: aegis256
TimeImplementationCompilerBenchmark dateSUPERCOP version
98283refgcc -march=native -mtune=native -O3 -fomit-frame-pointer -fwrapv2016082020160806
98541refgcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv2016082020160806
101279refgcc -march=native -mtune=native -O -fomit-frame-pointer -fwrapv2016082020160806
102245refgcc -march=native -mtune=native -Os -fomit-frame-pointer -fwrapv2016082020160806

Compiler output

Implementation: crypto_aead/aegis256/aesni
Compiler: clang -march=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments
encrypt.c: In file included from encrypt.c:5:
encrypt.c: In file included from /usr/bin/../lib/clang/3.4/include/wmmintrin.h:27:
encrypt.c: /usr/bin/../lib/clang/3.4/include/emmintrin.h:28:2: error: "SSE2 instruction set not enabled"
encrypt.c: #error "SSE2 instruction set not enabled"
encrypt.c: ^
encrypt.c: In file included from encrypt.c:5:
encrypt.c: /usr/bin/../lib/clang/3.4/include/wmmintrin.h:30:3: error: "AES/PCLMUL instructions not enabled"
encrypt.c: # error "AES/PCLMUL instructions not enabled"
encrypt.c: ^
encrypt.c: encrypt.c:14:33: error: unknown type name '__m128i'
encrypt.c: const unsigned char *iv, __m128i *state)
encrypt.c: ^
encrypt.c: encrypt.c:18:9: error: use of undeclared identifier '__m128i'
encrypt.c: __m128i tmp;
encrypt.c: ^
encrypt.c: encrypt.c:19:9: error: use of undeclared identifier '__m128i'
encrypt.c: __m128i keytmp1 = _mm_load_si128((__m128i*)key);
encrypt.c: ^
encrypt.c: encrypt.c:20:9: error: use of undeclared identifier '__m128i'
encrypt.c: __m128i keytmp2 = _mm_load_si128((__m128i*)(key+16));
encrypt.c: ^
encrypt.c: encrypt.c:21:9: error: use of undeclared identifier '__m128i'
encrypt.c: __m128i ivtmp1 = _mm_load_si128((__m128i*)iv);
encrypt.c: ^
encrypt.c: encrypt.c:22:9: error: use of undeclared identifier '__m128i'
encrypt.c: ...

Number of similar (compiler,implementation) pairs: 1, namely:
CompilerImplementations
clang -march=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments aesni

Compiler output

Implementation: crypto_aead/aegis256/ref
Compiler: clang -march=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments
try.c: crypto_aead_aegis256.a(encrypt.o): In function `crypto_aead_aegis256_ref_encrypt':
try.c: encrypt.c:(.text+0x...): undefined reference to `aegis256_initialization'
try.c: crypto_aead_aegis256.a(encrypt.o): In function `crypto_aead_aegis256_ref_decrypt':
try.c: encrypt.c:(.text+0x...): undefined reference to `aegis256_initialization'
try.c: clang: error: linker command failed with exit code 1 (use -v to see invocation)

Number of similar (compiler,implementation) pairs: 1, namely:
CompilerImplementations
clang -march=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments ref

Compiler output

Implementation: crypto_aead/aegis256/aesni
Compiler: gcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv
encrypt.c: encrypt.c:4:23: fatal error: immintrin.h: No such file or directory
encrypt.c: #include gt;
encrypt.c: ^
encrypt.c: compilation terminated.

Number of similar (compiler,implementation) pairs: 4, namely:
CompilerImplementations
gcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv aesni
gcc -march=native -mtune=native -O3 -fomit-frame-pointer -fwrapv aesni
gcc -march=native -mtune=native -O -fomit-frame-pointer -fwrapv aesni
gcc -march=native -mtune=native -Os -fomit-frame-pointer -fwrapv aesni