mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* Update zlibng * Set cmake path more directly in zlibng to hopefully fix an issue with the build on drone * I'm dumb, missing / in path * Mackal helps with a dumb gitignore issue * Adding all the files, not sure what's ignoring them and im tired of looking * Some tweaks to zlibng build to hopefully get it to build properly. works on msvc now
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/*
|
|
* SSE optimized hash slide
|
|
*
|
|
* Copyright (C) 2017 Intel Corporation
|
|
* Authors:
|
|
* Arjan van de Ven <arjan@linux.intel.com>
|
|
* Jim Kukunas <james.t.kukunas@linux.intel.com>
|
|
*
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
#include "../../zbuild.h"
|
|
#include "../../deflate.h"
|
|
|
|
#include <immintrin.h>
|
|
|
|
Z_INTERNAL void slide_hash_sse2(deflate_state *s) {
|
|
Pos *p;
|
|
unsigned n;
|
|
uint16_t wsize = (uint16_t)s->w_size;
|
|
const __m128i xmm_wsize = _mm_set1_epi16((short)wsize);
|
|
|
|
n = HASH_SIZE;
|
|
p = &s->head[n] - 8;
|
|
do {
|
|
__m128i value, result;
|
|
|
|
value = _mm_loadu_si128((__m128i *)p);
|
|
result= _mm_subs_epu16(value, xmm_wsize);
|
|
_mm_storeu_si128((__m128i *)p, result);
|
|
p -= 8;
|
|
n -= 8;
|
|
} while (n > 0);
|
|
|
|
n = wsize;
|
|
p = &s->prev[n] - 8;
|
|
do {
|
|
__m128i value, result;
|
|
|
|
value = _mm_loadu_si128((__m128i *)p);
|
|
result= _mm_subs_epu16(value, xmm_wsize);
|
|
_mm_storeu_si128((__m128i *)p, result);
|
|
|
|
p -= 8;
|
|
n -= 8;
|
|
} while (n > 0);
|
|
}
|