Test results for amd64, h4atom, crypto_aead/aezv5

[Page version: 20251115 13:22:58]

Measurements for amd64, h4atom, crypto_aead Test results for amd64, h4atom, crypto_aead Test results for crypto_aead/aezv5
Computer: h4atom
Microarchitecture: amd64; Bonnell (106ca)
Architecture: amd64
CPU ID: GenuineIntel-000106ca-bfe9fbff
SUPERCOP version: 20250922
Operation: crypto_aead
Primitive: aezv5
TimeObject sizeTest sizeImplementationCompilerBenchmark dateSUPERCOP version
54627731969 0 055183 836 1032T:refclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
54790431073 0 053143 836 1032T:refclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
58303432626 0 059295 836 1032T:refclang -mcpu=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
83669555752 0 078486 796 1096T:refgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
183523229530 0 051014 796 1096T:refgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
200132223733 0 043513 828 1032T:refclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
256198425602 0 046079 836 1032T:refclang -march=native -O -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
312800427223 0 048102 796 1096T:refgcc -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025090620250415
367300823595 0 042441 772 1064T:refgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025090620250415

Compiler output


encrypt.c: encrypt.c:187:2: error: - This implementation requires __AES__ or __ARM_FEATURE_CRYPTO
encrypt.c:   187 | #error - This implementation requires __AES__ or __ARM_FEATURE_CRYPTO
encrypt.c:       |  ^
encrypt.c: encrypt.c:216:8: error: unknown type name 'block'
encrypt.c:   216 | static block zero_pad(block x, unsigned zero_bytes) {
encrypt.c:       |        ^
encrypt.c: encrypt.c:216:23: error: unknown type name 'block'
encrypt.c:   216 | static block zero_pad(block x, unsigned zero_bytes) {
encrypt.c:       |                       ^
encrypt.c: encrypt.c:217:12: error: call to undeclared function 'vand'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
encrypt.c:   217 |     return vand(x, loadu(pad + zero_bytes));
encrypt.c:       |            ^
encrypt.c: encrypt.c:217:20: error: call to undeclared function 'loadu'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
encrypt.c:   217 |     return vand(x, loadu(pad + zero_bytes));
encrypt.c:       |                    ^
encrypt.c: encrypt.c:220:8: error: unknown type name 'block'
encrypt.c:   220 | static block one_zero_pad(block x, unsigned one_zero_bytes) {
encrypt.c:       |        ^
encrypt.c: encrypt.c:220:27: error: unknown type name 'block'
encrypt.c:   220 | static block one_zero_pad(block x, unsigned one_zero_bytes) {
encrypt.c:       |                           ^
encrypt.c: encrypt.c:221:5: error: use of undeclared identifier 'block'
encrypt.c:   221 |     block *p = (block*)(pad + one_zero_bytes);
encrypt.c:       |     ^
encrypt.c: encrypt.c:221:12: error: use of undeclared identifier 'p'
encrypt.c: ...

Number of similar (implementation,compiler) pairs: 5, namely:
ImplementationCompiler
T:aesniclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:aesniclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:aesniclang -march=native -O -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:aesniclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:aesniclang -mcpu=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))

Compiler output


encrypt.c: encrypt.c:187:2: error: #error - This implementation requires __AES__ or __ARM_FEATURE_CRYPTO
encrypt.c:   187 | #error - This implementation requires __AES__ or __ARM_FEATURE_CRYPTO
encrypt.c:       |  ^~~~~
encrypt.c: encrypt.c:216:8: error: unknown type name 'block'
encrypt.c:   216 | static block zero_pad(block x, unsigned zero_bytes) {
encrypt.c:       |        ^~~~~
encrypt.c: encrypt.c:216:23: error: unknown type name 'block'
encrypt.c:   216 | static block zero_pad(block x, unsigned zero_bytes) {
encrypt.c:       |                       ^~~~~
encrypt.c: encrypt.c:220:8: error: unknown type name 'block'
encrypt.c:   220 | static block one_zero_pad(block x, unsigned one_zero_bytes) {
encrypt.c:       |        ^~~~~
encrypt.c: encrypt.c:220:27: error: unknown type name 'block'
encrypt.c:   220 | static block one_zero_pad(block x, unsigned one_zero_bytes) {
encrypt.c:       |                           ^~~~~
encrypt.c: encrypt.c:225:8: error: unknown type name 'block'
encrypt.c:   225 | static block zero_set_byte(char val, unsigned idx) {
encrypt.c:       |        ^~~~~
encrypt.c: encrypt.c: In function 'zero_set_byte':
encrypt.c: encrypt.c:226:5: error: unknown type name 'block'
encrypt.c:   226 |     block tmp = zero; ((char *)&tmp)[idx] = val; return tmp;
encrypt.c:       |     ^~~~~
encrypt.c: encrypt.c:226:17: error: 'zero' undeclared (first use in this function)
encrypt.c:   226 |     block tmp = zero; ((char *)&tmp)[idx] = val; return tmp;
encrypt.c:       |                 ^~~~
encrypt.c: ...

Number of similar (implementation,compiler) pairs: 4, namely:
ImplementationCompiler
T:aesnigcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:aesnigcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:aesnigcc -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:aesnigcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)

Compiler output


encrypt.c: In function 'xor_bytes',
encrypt.c:     inlined from 'AEZcore' at encrypt.c:254:38:
encrypt.c: encrypt.c:67:29: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
encrypt.c:    67 |     while (n) { n--; dst[n] = src1[n] ^ src2[n]; }
encrypt.c:       |                      ~~~~~~~^~~~~~~~~~~~~~~~~~~
encrypt.c: encrypt.c: In function 'AEZcore':
encrypt.c: encrypt.c:202:10: note: at offset [4294967247, 4294967278] into destination object 'tmp' of size 16
encrypt.c:   202 |     byte tmp[16], X[16], Y[16], S[16];
encrypt.c:       |          ^~~
encrypt.c: In function 'xor_bytes',
encrypt.c:     inlined from 'AEZcore' at encrypt.c:254:38:
encrypt.c: encrypt.c:67:29: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
encrypt.c:    67 |     while (n) { n--; dst[n] = src1[n] ^ src2[n]; }
encrypt.c:       |                      ~~~~~~~^~~~~~~~~~~~~~~~~~~
encrypt.c: encrypt.c: In function 'AEZcore':
encrypt.c: encrypt.c:202:10: note: at offset [4294967246, 4294967277] into destination object 'tmp' of size 16
encrypt.c:   202 |     byte tmp[16], X[16], Y[16], S[16];
encrypt.c:       |          ^~~
encrypt.c: In function 'xor_bytes',
encrypt.c:     inlined from 'AEZcore' at encrypt.c:254:38:
encrypt.c: encrypt.c:67:29: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
encrypt.c:    67 |     while (n) { n--; dst[n] = src1[n] ^ src2[n]; }
encrypt.c:       |                      ~~~~~~~^~~~~~~~~~~~~~~~~~~
encrypt.c: encrypt.c: In function 'AEZcore':
encrypt.c: encrypt.c:202:10: note: at offset [4294967245, 4294967276] into destination object 'tmp' of size 16
encrypt.c: ...

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:refgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)

Namespace violations


blake2b.o blake2b T
blake2b.o blake2b_final T
blake2b.o blake2b_init T
blake2b.o blake2b_update T
encrypt.o Decrypt T
encrypt.o Encrypt T
rijndael-alg-fst.o rijndaelDecrypt T
rijndael-alg-fst.o rijndaelDecryptRound T
rijndael-alg-fst.o rijndaelEncrypt T
rijndael-alg-fst.o rijndaelEncryptRound T
rijndael-alg-fst.o rijndaelKeySetupDec T
rijndael-alg-fst.o rijndaelKeySetupEnc T

Number of similar (implementation,compiler) pairs: 9, namely:
ImplementationCompiler
T:refclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:refclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:refclang -march=native -O -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:refclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:refclang -mcpu=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3+b1))
T:refgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:refgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:refgcc -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:refgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)