Implementation notes: armeabi, rpi3b, crypto_stream/speck128128ctr

Computer: rpi3b
Architecture: armeabi
CPU ID: unknown CPU ID
SUPERCOP version: 20191221
Operation: crypto_stream
Primitive: speck128128ctr

Compiler output

Implementation: neon
Security model: unknown
Compiler: clang -mcpu=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE
stream.c: In file included from stream.c:20:
stream.c: In file included from ./Speck128128NEON.h:16:
stream.c: In file included from ./Intrinsics_NEON_128block.h:5:
stream.c: /usr/lib/llvm-3.8/bin/../lib/clang/3.8.1/include/arm_neon.h:28:2: error: "NEON support not enabled"
stream.c: #error "NEON support not enabled"
stream.c: ^
stream.c: stream.c:112:24: error: invalid conversion between vector type 'uint64x1_t' (vector of 1 'uint64_t' value) and integer type 'int' of different size
stream.c: SET1(X[0],nonce[1]); SET2(Y[0],nonce[0]);
stream.c: ^~~~~~~~~~~~~~~~~~~
stream.c: ./Intrinsics_NEON_128block.h:24:39: note: expanded from macro 'SET2'
stream.c: #define SET2(X,c) (SET1(X,c), X=ADD(X,SET(0x1,0x0)),c+=2)
stream.c: ^~~~~~~~~~~~
stream.c: ./Intrinsics_NEON_128block.h:22:31: note: expanded from macro 'SET'
stream.c: #define SET(a,b) vcombine_u64((uint64x1_t)(a),(uint64x1_t)(b))
stream.c: ^~~~~~~~~~~~~~~
stream.c: stream.c:112:24: error: invalid conversion between vector type 'uint64x1_t' (vector of 1 'uint64_t' value) and integer type 'int' of different size
stream.c: SET1(X[0],nonce[1]); SET2(Y[0],nonce[0]);
stream.c: ^~~~~~~~~~~~~~~~~~~
stream.c: ./Intrinsics_NEON_128block.h:24:39: note: expanded from macro 'SET2'
stream.c: #define SET2(X,c) (SET1(X,c), X=ADD(X,SET(0x1,0x0)),c+=2)
stream.c: ^~~~~~~~~~~~
stream.c: ./Intrinsics_NEON_128block.h:22:47: note: expanded from macro 'SET'
stream.c: #define SET(a,b) vcombine_u64((uint64x1_t)(a),(uint64x1_t)(b))
stream.c: ^~~~~~~~~~~~~~~
stream.c: stream.c:116:16: error: invalid conversion between vector type 'uint64x1_t' (vector of 1 'uint64_t' value) and integer type 'int' of different size
stream.c: ...

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

Compiler output

Implementation: neon
Security model: unknown
Compiler: gcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE
stream.c: In file included from Speck128128NEON.h:16:0,
stream.c: from stream.c:20:
stream.c: Intrinsics_NEON_128block.h:26:16: warning: 'vgetq_lane_u64' is static but used in inline function 'Encrypt_Xor' which is not static
stream.c: #define LOW(Z) vgetq_lane_u64(Z,0)
stream.c: ^
stream.c: Intrinsics_NEON_128block.h:28:118: note: in expansion of macro 'LOW'
stream.c: #define STORE(ip,X,Y) (((u64 *)(ip))[0]=HIGH(Y), ((u64 *)(ip))[1]=HIGH(X), ((u64 *)(ip))[2]=LOW(Y), ((u64 *)(ip))[3]=LOW(X))
stream.c: ^~~
stream.c: Intrinsics_NEON_128block.h:29:130: note: in expansion of macro 'STORE'
stream.c: #define XOR_STORE(in,out,X,Y) (Y=XOR(Y,SET(((u64 *)(in))[2],((u64 *)(in))[0])), X=XOR(X,SET(((u64 *)(in))[3],((u64 *)(in))[1])), STORE(out,X,Y))
stream.c: ^~~~~
stream.c: stream.c:242:22: note: in expansion of macro 'XOR_STORE'
stream.c: if (numbytes>=128) XOR_STORE(in+96,out+96,X[3],Y[3]);
stream.c: ^~~~~~~~~
stream.c: Intrinsics_NEON_128block.h:26:16: warning: 'vgetq_lane_u64' is static but used in inline function 'Encrypt_Xor' which is not static
stream.c: #define LOW(Z) vgetq_lane_u64(Z,0)
stream.c: ^
stream.c: Intrinsics_NEON_128block.h:28:93: note: in expansion of macro 'LOW'
stream.c: #define STORE(ip,X,Y) (((u64 *)(ip))[0]=HIGH(Y), ((u64 *)(ip))[1]=HIGH(X), ((u64 *)(ip))[2]=LOW(Y), ((u64 *)(ip))[3]=LOW(X))
stream.c: ^~~
stream.c: Intrinsics_NEON_128block.h:29:130: note: in expansion of macro 'STORE'
stream.c: #define XOR_STORE(in,out,X,Y) (Y=XOR(Y,SET(((u64 *)(in))[2],((u64 *)(in))[0])), X=XOR(X,SET(((u64 *)(in))[3],((u64 *)(in))[1])), STORE(out,X,Y))
stream.c: ^~~~~
stream.c: stream.c:242:22: note: in expansion of macro 'XOR_STORE'
stream.c: if (numbytes>=128) XOR_STORE(in+96,out+96,X[3],Y[3]);
stream.c: ...

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