Test results for aarch64, pi3bplus, crypto_stream/amastrid
[Page version: 20241105 13:29:25]
Measurements for aarch64, pi3bplus, crypto_stream
Test results for aarch64, pi3bplus, crypto_stream
Test results for crypto_stream/amastrid
Computer: pi3bplus
Microarchitecture: aarch64; Cortex-A53 (410fd034)
Architecture: aarch64
CPU ID: 410fd034
SUPERCOP version: 20241022
Operation: crypto_stream
Primitive: amastrid
Time | Object size | Test size | Implementation | Compiler | Benchmark date | SUPERCOP version |
133110 | 18593 24 2354 | 35233 1184 3184 | T:ref | g++ -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall | 20240920 | 20240909 |
151716 | 17269 24 2354 | 32932 1176 3184 | T:ref | g++ -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall | 20240920 | 20240909 |
201021 | 17333 24 2314 | 32819 1168 3120 | T:ref | g++ -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall | 20240920 | 20240909 |
212179 | 11925 24 2314 | 25469 1072 3112 | T:ref | g++ -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall | 20240920 | 20240909 |
Compiler output
Amastrid.cpp: Amastrid.cpp: In member function 'void Amastrid::Encrypt(unsigned int*)':
Amastrid.cpp: Amastrid.cpp:119:48: warning: 'pos2' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 119 | ar[pos2] = Amastrid::G1(ar[pos2]);
Amastrid.cpp: | ^
Amastrid.cpp: Amastrid.cpp:94:15: note: 'pos2' was declared here
Amastrid.cpp: 94 | int pos1, pos2, pos1o, pos2o, inc1, inc2;
Amastrid.cpp: | ^~~~
Amastrid.cpp: Amastrid.cpp: In member function 'void Amastrid::Decrypt(unsigned int*)':
Amastrid.cpp: Amastrid.cpp:261:56: warning: 'pos1temp' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 261 | ar[pos1temp] = Amastrid::F1(ar[pos1temp]);
Amastrid.cpp: | ^
Amastrid.cpp: Amastrid.cpp:212:35: note: 'pos1temp' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: | ^~~~~~~~
Amastrid.cpp: Amastrid.cpp:289:18: warning: 'pos2o' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 289 | else if (pos1 == pos2o)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:28: note: 'pos2o' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: | ^~~~~
Amastrid.cpp: Amastrid.cpp:291:17: warning: 'pos1o' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 291 | if (pos2 == pos1o)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:21: note: 'pos1o' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: ...
Number of similar (implementation,compiler) pairs: 2, namely:
Implementation | Compiler |
T:ref | g++ -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (12.2.0) |
T:ref | g++ -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (12.2.0) |
Compiler output
Amastrid.cpp: Amastrid.cpp: In member function 'void Amastrid::Encrypt(unsigned int*)':
Amastrid.cpp: Amastrid.cpp:120:17: warning: 'pos2' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 120 | if (pos1 > pos2)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:94:15: note: 'pos2' was declared here
Amastrid.cpp: 94 | int pos1, pos2, pos1o, pos2o, inc1, inc2;
Amastrid.cpp: | ^~~~
Amastrid.cpp: Amastrid.cpp: In member function 'void Amastrid::Decrypt(unsigned int*)':
Amastrid.cpp: Amastrid.cpp:251:13: warning: 'pos1temp' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 251 | if (pos1temp != pos2)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:35: note: 'pos1temp' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: | ^~~~~~~~
Amastrid.cpp: Amastrid.cpp:289:18: warning: 'pos2o' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 289 | else if (pos1 == pos2o)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:28: note: 'pos2o' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: | ^~~~~
Amastrid.cpp: Amastrid.cpp:291:17: warning: 'pos1o' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 291 | if (pos2 == pos1o)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:21: note: 'pos1o' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: ...
Number of similar (implementation,compiler) pairs: 1, namely:
Implementation | Compiler |
T:ref | g++ -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (12.2.0) |
Compiler output
Amastrid.cpp: Amastrid.cpp: In member function 'void Amastrid::Decrypt(unsigned int*)':
Amastrid.cpp: Amastrid.cpp:289:18: warning: 'pos2o' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 289 | else if (pos1 == pos2o)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:28: note: 'pos2o' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: | ^~~~~
Amastrid.cpp: Amastrid.cpp:291:17: warning: 'pos1o' may be used uninitialized [-Wmaybe-uninitialized]
Amastrid.cpp: 291 | if (pos2 == pos1o)
Amastrid.cpp: | ^~
Amastrid.cpp: Amastrid.cpp:212:21: note: 'pos1o' was declared here
Amastrid.cpp: 212 | int pos1, pos2, pos1o, pos2o, pos1temp, inc1, inc2;
Amastrid.cpp: | ^~~~~
Number of similar (implementation,compiler) pairs: 1, namely:
Implementation | Compiler |
T:ref | g++ -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (12.2.0) |