Implementation notes: armeabi, novenablue, crypto_hash/coral256v1

Computer: novenablue
Architecture: armeabi
CPU ID: unknown CPU ID
SUPERCOP version: 20200702
Operation: crypto_hash
Primitive: coral256v1
TimeObject sizeTest sizeImplementationCompilerBenchmark dateSUPERCOP version
82338214108 0 024493 404 752opt64clang_-march=native_-O2_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
82338214108 0 024493 404 752opt64clang_-march=native_-O_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
82338214108 0 023447 400 752opt64clang_-march=native_-Os_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
82340014108 0 026189 404 752opt64clang_-march=native_-O3_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
9396743152 0 013501 404 752refclang_-march=native_-O_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
9396763152 0 013501 404 752refclang_-march=native_-O2_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
9397053152 0 015197 404 752refclang_-march=native_-O3_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
11303152016 0 011319 400 752refclang_-march=native_-Os_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
11902083200 0 015261 404 752refclang_-mcpu=native_-O3_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417
126648214124 0 026221 404 752opt64clang_-mcpu=native_-O3_-fomit-frame-pointer_-fwrapv_-Qunused-arguments_-fPIC_-fPIE2020042320200417

Compiler output

Implementation: opt64
Security model: unknown
Compiler: gcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE
hash.c: hash.c: In function 'crypto_hash_coral256v1_opt64':
hash.c: hash.c:106:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (unsigned long long i = 0; i < full_blocks; i += RATE) {
hash.c: ^
hash.c: hash.c:106:5: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
hash.c: hash.c:112:14: error: conflicting types for 'i'
hash.c: for (int i = 0; i < remaining; i++) {
hash.c: ^
hash.c: hash.c:106:29: note: previous definition of 'i' was here
hash.c: for (unsigned long long i = 0; i < full_blocks; i += RATE) {
hash.c: ^
hash.c: hash.c:112:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (int i = 0; i < remaining; i++) {
hash.c: ^
hash.c: hash.c:118:14: error: redefinition of 'i'
hash.c: for (int i = 0; i < CRYPTO_BYTES; i += RATE) {
hash.c: ^
hash.c: hash.c:112:14: note: previous definition of 'i' was here
hash.c: for (int i = 0; i < remaining; i++) {
hash.c: ^
hash.c: hash.c:118:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (int i = 0; i < CRYPTO_BYTES; i += RATE) {
hash.c: ^

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

Compiler output

Implementation: ref
Security model: unknown
Compiler: gcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE
hash.c: hash.c: In function 'load64':
hash.c: hash.c:18:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (int i = 1; i < 8; ++i) {
hash.c: ^
hash.c: hash.c:18:5: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
hash.c: hash.c: In function 'store64':
hash.c: hash.c:26:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (int i = 6; i >= 0; --i) {
hash.c: ^
hash.c: hash.c: In function 'permutation':
hash.c: hash.c:65:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (int i = 0, j = 0; i < ROUNDS; i++, j+= 15) {
hash.c: ^
hash.c: hash.c: In function 'crypto_hash_coral256v1_ref':
hash.c: hash.c:83:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (unsigned long long i = 0; i < full_blocks; i += RATE) {
hash.c: ^
hash.c: hash.c:84:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
hash.c: for (int j = 0; j < RATE; j++) {
hash.c: ^
hash.c: hash.c:89:14: error: conflicting types for 'i'
hash.c: for (int i = 0; i < remaining; i++) {
hash.c: ^
hash.c: hash.c:83:29: note: previous definition of 'i' was here
hash.c: for (unsigned long long i = 0; i < full_blocks; i += RATE) {
hash.c: ...

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

Namespace violations

Implementation: ref
Security model: unknown
Compiler: clang -march=native -O2 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE
hash.o diffusion T
hash.o load64 T
hash.o permutation T
hash.o sbox T
hash.o store64 T

Number of similar (compiler,implementation) pairs: 5, namely:
CompilerImplementations
clang -march=native -O2 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE ref
clang -march=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE ref
clang -march=native -O -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE ref
clang -march=native -Os -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE ref
clang -mcpu=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE ref