Fixes, tests passing.

This commit is contained in:
2023-11-29 21:56:55 +00:00
parent 0b01458a98
commit e063648ecf
5 changed files with 45 additions and 50 deletions
+9 -7
View File
@@ -4,7 +4,7 @@
#elif defined(__aarch64__)
#include "sse2neon.h"
#endif
#include <stdio.h>
// clang-format off
#define VEC4_ROT(A, IMM) \
@@ -45,12 +45,12 @@
_mm_storeu_si128((__m128i*)(OUT + 192), x[D]); \
}
#define COUNTER_INCREMENT(a, b, c, d) \
#define COUNTER_INCREMENT(addv) \
{ \
__m128i addv = _mm_set_epi32(d, c, b, a); \
__m128i carry = orig[12]; \
orig[12] = _mm_add_epi32(orig[12], addv); \
addv = _mm_srli_epi32(_mm_cmplt_epi32(orig[12], addv), 31); \
orig[13] = _mm_add_epi32(orig[13], addv); \
carry = _mm_srli_epi32(_mm_and_si128(_mm_xor_si128(orig[12], carry), carry), 31); \
orig[13] = _mm_add_epi32(orig[13], carry); \
}
static inline uint64_t
@@ -63,7 +63,9 @@ _cha_4block(uint8_t* buf, size_t bufsize, uint32_t state[16], unsigned rounds) {
// Load state to vectors, duplicate four times, only different counters
__m128i orig[16];
for (unsigned i = 0; i < 16; ++i) orig[i] = _mm_set1_epi32(state[i]);
COUNTER_INCREMENT(0, 1, 2, 3);
__m128i addv = _mm_set_epi32(3, 2, 1, 0);
COUNTER_INCREMENT(addv);
addv = _mm_set1_epi32(4);
const unsigned batches = bufsize / 256;
for (unsigned b = batches; b-->0;) {
__m128i x[16];
@@ -85,7 +87,7 @@ _cha_4block(uint8_t* buf, size_t bufsize, uint32_t state[16], unsigned rounds) {
ONEQUAD(4, 5, 6, 7, buf + 16);
ONEQUAD(8, 9, 10, 11, buf + 32);
ONEQUAD(12, 13, 14, 15, buf + 48);
COUNTER_INCREMENT(4, 4, 4, 4);
COUNTER_INCREMENT(addv);
buf += 256;
}
// Store counter
+6 -4
View File
@@ -64,10 +64,12 @@
_mm256_storeu_si256((__m256i*)(c + 448), _mm256_permute2x128_si256(x[D], x[D2], 0x31)); \
}
#define COUNTER_INCREMENT(addv) \
{ \
orig[12] = _mm256_add_epi32(orig[12], addv); \
orig[13] = _mm256_add_epi32(orig[13], _mm256_srli_epi32(_mm256_cmpgt_epi32(addv, orig[12]), 31)); \
#define COUNTER_INCREMENT(addv) \
{ \
__m256i carry = orig[12]; \
orig[12] = _mm256_add_epi32(orig[12], addv); \
carry = _mm256_srli_epi32(_mm256_and_si256(_mm256_xor_si256(orig[12], carry), carry), 31); \
orig[13] = _mm256_add_epi32(orig[13], carry); \
}
static inline uint64_t
+1 -1
View File
@@ -86,7 +86,7 @@ void cha_seek_blocks(cha_ctx* ctx, int64_t offset) {
/// @param ctx ChaCha context
/// @param out output buffer
/// @param outlen output buffer length
static inline void cha_update(cha_ctx* ctx, uint8_t* out, uint64_t outlen) {
void cha_update(cha_ctx* ctx, uint8_t* out, uint64_t outlen) {
// The included header will mess with these variables
uint8_t* end = out + outlen;
if (ctx->offset) {