-rw-r--r-- 11792 libmceliece-20240726/inttypes/crypto_int32.h raw
/* auto-generated: cd inttypes; ./autogen */ #ifndef crypto_int32_h #define crypto_int32_h #include <inttypes.h> #define crypto_int32 int32_t #define crypto_int32_unsigned uint32_t #define crypto_int32_optblocker mceliece_int32_optblocker extern volatile crypto_int32 crypto_int32_optblocker; __attribute__((unused)) static inline crypto_int32 crypto_int32_load(const unsigned char *crypto_int32_s) { crypto_int32 crypto_int32_z = 0; crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 0; crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 8; crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 16; crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 24; return crypto_int32_z; } __attribute__((unused)) static inline void crypto_int32_store(unsigned char *crypto_int32_s,crypto_int32 crypto_int32_x) { *crypto_int32_s++ = crypto_int32_x >> 0; *crypto_int32_s++ = crypto_int32_x >> 8; *crypto_int32_s++ = crypto_int32_x >> 16; *crypto_int32_s++ = crypto_int32_x >> 24; } __attribute__((unused)) static inline crypto_int32 crypto_int32_negative_mask(crypto_int32 crypto_int32_x) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("sarl $31,%0" : "+r"(crypto_int32_x) : : "cc"); return crypto_int32_x; #elif defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_y; __asm__ ("asr %w0,%w1,31" : "=r"(crypto_int32_y) : "r"(crypto_int32_x) : ); return crypto_int32_y; #else crypto_int32_x >>= 32-6; crypto_int32_x ^= crypto_int32_optblocker; crypto_int32_x >>= 5; return crypto_int32_x; #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_bottombit_mask(crypto_int32 crypto_int32_x) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("andl $1,%0" : "+r"(crypto_int32_x) : : "cc"); return -crypto_int32_x; #elif defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_y; __asm__ ("sbfx %w0,%w1,0,1" : "=r"(crypto_int32_y) : "r"(crypto_int32_x) : ); return crypto_int32_y; #else crypto_int32_x &= 1 ^ crypto_int32_optblocker; return -crypto_int32_x; #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_bitinrangepublicpos_mask(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_s) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("sarl %%cl,%0" : "+r"(crypto_int32_x) : "c"(crypto_int32_s) : "cc"); #elif defined(__GNUC__) && defined(__aarch64__) __asm__ ("asr %w0,%w0,%w1" : "+r"(crypto_int32_x) : "r"(crypto_int32_s) : ); #else crypto_int32_x >>= crypto_int32_s ^ crypto_int32_optblocker; #endif return crypto_int32_bottombit_mask(crypto_int32_x); } __attribute__((unused)) static inline crypto_int32 crypto_int32_shlmod(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_s) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("shll %%cl,%0" : "+r"(crypto_int32_x) : "c"(crypto_int32_s) : "cc"); #elif defined(__GNUC__) && defined(__aarch64__) __asm__ ("lsl %w0,%w0,%w1" : "+r"(crypto_int32_x) : "r"(crypto_int32_s) : ); #else int crypto_int32_k, crypto_int32_l; for (crypto_int32_l = 0,crypto_int32_k = 1;crypto_int32_k < 32;++crypto_int32_l,crypto_int32_k *= 2) crypto_int32_x ^= (crypto_int32_x ^ (crypto_int32_x << crypto_int32_k)) & crypto_int32_bitinrangepublicpos_mask(crypto_int32_s,crypto_int32_l); #endif return crypto_int32_x; } __attribute__((unused)) static inline crypto_int32 crypto_int32_shrmod(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_s) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("sarl %%cl,%0" : "+r"(crypto_int32_x) : "c"(crypto_int32_s) : "cc"); #elif defined(__GNUC__) && defined(__aarch64__) __asm__ ("asr %w0,%w0,%w1" : "+r"(crypto_int32_x) : "r"(crypto_int32_s) : ); #else int crypto_int32_k, crypto_int32_l; for (crypto_int32_l = 0,crypto_int32_k = 1;crypto_int32_k < 32;++crypto_int32_l,crypto_int32_k *= 2) crypto_int32_x ^= (crypto_int32_x ^ (crypto_int32_x >> crypto_int32_k)) & crypto_int32_bitinrangepublicpos_mask(crypto_int32_s,crypto_int32_l); #endif return crypto_int32_x; } __attribute__((unused)) static inline crypto_int32 crypto_int32_bitmod_mask(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_s) { crypto_int32_x = crypto_int32_shrmod(crypto_int32_x,crypto_int32_s); return crypto_int32_bottombit_mask(crypto_int32_x); } __attribute__((unused)) static inline crypto_int32 crypto_int32_nonzero_mask(crypto_int32 crypto_int32_x) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,0\n csetm %w0,ne" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); return crypto_int32_z; #else crypto_int32_x |= -crypto_int32_x; return crypto_int32_negative_mask(crypto_int32_x); #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_positive_mask(crypto_int32 crypto_int32_x) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,0\n csetm %w0,gt" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); return crypto_int32_z; #else crypto_int32 crypto_int32_z = -crypto_int32_x; crypto_int32_z ^= crypto_int32_x & crypto_int32_z; return crypto_int32_negative_mask(crypto_int32_z); #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_zero_mask(crypto_int32 crypto_int32_x) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,0\n csetm %w0,eq" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); return crypto_int32_z; #else return ~crypto_int32_nonzero_mask(crypto_int32_x); #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_unequal_mask(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_y) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,%w2\n csetm %w0,ne" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int32_y) : "cc"); return crypto_int32_z; #else return crypto_int32_nonzero_mask(crypto_int32_x ^ crypto_int32_y); #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_equal_mask(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_y) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,%w2\n csetm %w0,eq" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int32_y) : "cc"); return crypto_int32_z; #else return ~crypto_int32_unequal_mask(crypto_int32_x,crypto_int32_y); #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_min(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_y) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("cmpl %1,%0\n cmovgl %1,%0" : "+r"(crypto_int32_x) : "r"(crypto_int32_y) : "cc"); return crypto_int32_x; #elif defined(__GNUC__) && defined(__aarch64__) __asm__ ("cmp %w0,%w1\n csel %w0,%w0,%w1,lt" : "+r"(crypto_int32_x) : "r"(crypto_int32_y) : "cc"); return crypto_int32_x; #else crypto_int32 crypto_int32_r = crypto_int32_y ^ crypto_int32_x; crypto_int32 crypto_int32_z = crypto_int32_y - crypto_int32_x; crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_y); crypto_int32_z = crypto_int32_negative_mask(crypto_int32_z); crypto_int32_z &= crypto_int32_r; return crypto_int32_x ^ crypto_int32_z; #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_max(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_y) { #if defined(__GNUC__) && defined(__x86_64__) __asm__ ("cmpl %1,%0\n cmovll %1,%0" : "+r"(crypto_int32_x) : "r"(crypto_int32_y) : "cc"); return crypto_int32_x; #elif defined(__GNUC__) && defined(__aarch64__) __asm__ ("cmp %w0,%w1\n csel %w0,%w1,%w0,lt" : "+r"(crypto_int32_x) : "r"(crypto_int32_y) : "cc"); return crypto_int32_x; #else crypto_int32 crypto_int32_r = crypto_int32_y ^ crypto_int32_x; crypto_int32 crypto_int32_z = crypto_int32_y - crypto_int32_x; crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_y); crypto_int32_z = crypto_int32_negative_mask(crypto_int32_z); crypto_int32_z &= crypto_int32_r; return crypto_int32_y ^ crypto_int32_z; #endif } __attribute__((unused)) static inline void crypto_int32_minmax(crypto_int32 *crypto_int32_p,crypto_int32 *crypto_int32_q) { crypto_int32 crypto_int32_x = *crypto_int32_p; crypto_int32 crypto_int32_y = *crypto_int32_q; #if defined(__GNUC__) && defined(__x86_64__) crypto_int32 crypto_int32_z; __asm__ ("cmpl %2,%1\n movl %1,%0\n cmovgl %2,%1\n cmovgl %0,%2" : "=&r"(crypto_int32_z), "+&r"(crypto_int32_x), "+r"(crypto_int32_y) : : "cc"); *crypto_int32_p = crypto_int32_x; *crypto_int32_q = crypto_int32_y; #elif defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_r, crypto_int32_s; __asm__ ("cmp %w2,%w3\n csel %w0,%w2,%w3,lt\n csel %w1,%w3,%w2,lt" : "=&r"(crypto_int32_r), "=r"(crypto_int32_s) : "r"(crypto_int32_x), "r"(crypto_int32_y) : "cc"); *crypto_int32_p = crypto_int32_r; *crypto_int32_q = crypto_int32_s; #else crypto_int32 crypto_int32_r = crypto_int32_y ^ crypto_int32_x; crypto_int32 crypto_int32_z = crypto_int32_y - crypto_int32_x; crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_y); crypto_int32_z = crypto_int32_negative_mask(crypto_int32_z); crypto_int32_z &= crypto_int32_r; crypto_int32_x ^= crypto_int32_z; crypto_int32_y ^= crypto_int32_z; *crypto_int32_p = crypto_int32_x; *crypto_int32_q = crypto_int32_y; #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_smaller_mask(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_y) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,%w2\n csetm %w0,lt" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int32_y) : "cc"); return crypto_int32_z; #else crypto_int32 crypto_int32_r = crypto_int32_x ^ crypto_int32_y; crypto_int32 crypto_int32_z = crypto_int32_x - crypto_int32_y; crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_x); return crypto_int32_negative_mask(crypto_int32_z); #endif } __attribute__((unused)) static inline crypto_int32 crypto_int32_leq_mask(crypto_int32 crypto_int32_x,crypto_int32 crypto_int32_y) { #if defined(__GNUC__) && defined(__aarch64__) crypto_int32 crypto_int32_z; __asm__ ("cmp %w1,%w2\n csetm %w0,le" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int32_y) : "cc"); return crypto_int32_z; #else return ~crypto_int32_smaller_mask(crypto_int32_y,crypto_int32_x); #endif } __attribute__((unused)) static inline int crypto_int32_ones_num(crypto_int32 crypto_int32_x) { crypto_int32_unsigned crypto_int32_y = crypto_int32_x; const crypto_int32 C0 = 0x55555555; const crypto_int32 C1 = 0x33333333; const crypto_int32 C2 = 0x0f0f0f0f; crypto_int32_y -= ((crypto_int32_y >> 1) & C0); crypto_int32_y = (crypto_int32_y & C1) + ((crypto_int32_y >> 2) & C1); crypto_int32_y = (crypto_int32_y + (crypto_int32_y >> 4)) & C2; crypto_int32_y += crypto_int32_y >> 8; crypto_int32_y = (crypto_int32_y + (crypto_int32_y >> 16)) & 0xff; return crypto_int32_y; } __attribute__((unused)) static inline int crypto_int32_bottomzeros_num(crypto_int32 crypto_int32_x) { #if defined(__GNUC__) && defined(__x86_64__) crypto_int32 fallback = 32; __asm__ ("bsfl %0,%0\n cmovel %1,%0" : "+&r"(crypto_int32_x) : "r"(fallback) : "cc"); return crypto_int32_x; #elif defined(__GNUC__) && defined(__aarch64__) int64_t crypto_int32_y; __asm__ ("rbit %w0,%w1\n clz %w0,%w0" : "=r"(crypto_int32_y) : "r"(crypto_int32_x) : ); return crypto_int32_y; #else crypto_int32 crypto_int32_y = crypto_int32_x ^ (crypto_int32_x-1); crypto_int32_y = ((crypto_int32) crypto_int32_y) >> 1; crypto_int32_y &= ~(crypto_int32_x & (((crypto_int32) 1) << (32-1))); return crypto_int32_ones_num(crypto_int32_y); #endif } #endif