mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-30 11:44:28 +03:00
optimize caseMask handling
This commit is contained in:
@@ -143,14 +143,17 @@ match:
|
||||
#if defined(HAVE_AVX512)
|
||||
#define CHUNKSIZE 64
|
||||
#define MASK_TYPE m512
|
||||
#define ONES ones512()
|
||||
#include "noodle_engine_avx512.c"
|
||||
#elif defined(HAVE_AVX2)
|
||||
#define CHUNKSIZE 32
|
||||
#define MASK_TYPE m256
|
||||
#define ONES ones256()
|
||||
#include "noodle_engine_avx2.c"
|
||||
#else
|
||||
#define CHUNKSIZE 16
|
||||
#define MASK_TYPE m128
|
||||
#define ONES ones128()
|
||||
#include "noodle_engine_sse.c"
|
||||
#endif
|
||||
|
||||
@@ -160,7 +163,7 @@ hwlm_error_t scanSingleMain(const struct noodTable *n, const u8 *buf,
|
||||
const struct cb_info *cbi) {
|
||||
|
||||
const MASK_TYPE mask1 = getMask(n->key0, noCase);
|
||||
const MASK_TYPE caseMask = getCaseMask();
|
||||
const MASK_TYPE caseMask = noCase ? getCaseMask() : ONES;
|
||||
|
||||
size_t offset = start + n->msk_len - 1;
|
||||
size_t end = len;
|
||||
@@ -169,14 +172,14 @@ hwlm_error_t scanSingleMain(const struct noodTable *n, const u8 *buf,
|
||||
#if !defined(HAVE_AVX512)
|
||||
hwlm_error_t rv;
|
||||
|
||||
if (end - offset < CHUNKSIZE) {
|
||||
/* if (end - offset <= CHUNKSIZE) {
|
||||
rv = scanSingleShort(n, buf, len, noCase, caseMask, mask1, cbi, offset,
|
||||
end);
|
||||
return rv;
|
||||
}
|
||||
}*/
|
||||
|
||||
if (end - offset == CHUNKSIZE) {
|
||||
rv = scanSingleUnaligned(n, buf, len, offset, noCase, caseMask, mask1,
|
||||
if (end - offset <= CHUNKSIZE) {
|
||||
rv = scanSingleUnaligned(n, buf, len, offset, caseMask, mask1,
|
||||
cbi, offset, end);
|
||||
return rv;
|
||||
}
|
||||
@@ -190,7 +193,7 @@ hwlm_error_t scanSingleMain(const struct noodTable *n, const u8 *buf,
|
||||
if (offset != s2Start) {
|
||||
// first scan out to the fast scan starting point
|
||||
DEBUG_PRINTF("stage 1: -> %zu\n", s2Start);
|
||||
rv = scanSingleUnaligned(n, buf, len, offset, noCase, caseMask, mask1,
|
||||
rv = scanSingleUnaligned(n, buf, len, offset, caseMask, mask1,
|
||||
cbi, offset, s2Start);
|
||||
RETURN_IF_TERMINATED(rv);
|
||||
}
|
||||
@@ -199,7 +202,7 @@ hwlm_error_t scanSingleMain(const struct noodTable *n, const u8 *buf,
|
||||
// scan as far as we can, bounded by the last point this key can
|
||||
// possibly match
|
||||
DEBUG_PRINTF("fast: ~ %zu -> %zu\n", s2Start, s2End);
|
||||
rv = scanSingleFast(n, buf, len, noCase, caseMask, mask1, cbi, s2Start,
|
||||
rv = scanSingleFast(n, buf, len, caseMask, mask1, cbi, s2Start,
|
||||
s2End);
|
||||
RETURN_IF_TERMINATED(rv);
|
||||
}
|
||||
@@ -210,7 +213,7 @@ hwlm_error_t scanSingleMain(const struct noodTable *n, const u8 *buf,
|
||||
}
|
||||
|
||||
DEBUG_PRINTF("stage 3: %zu -> %zu\n", s2End, len);
|
||||
rv = scanSingleUnaligned(n, buf, len, s3Start, noCase, caseMask, mask1, cbi,
|
||||
rv = scanSingleUnaligned(n, buf, len, s3Start, caseMask, mask1, cbi,
|
||||
s2End, len);
|
||||
|
||||
return rv;
|
||||
@@ -231,20 +234,20 @@ hwlm_error_t scanDoubleMain(const struct noodTable *n, const u8 *buf,
|
||||
// the first place the key can match
|
||||
size_t offset = start + n->msk_len - n->key_offset;
|
||||
|
||||
const MASK_TYPE caseMask = getCaseMask();
|
||||
const MASK_TYPE caseMask = noCase ? getCaseMask() : ONES;
|
||||
const MASK_TYPE mask1 = getMask(n->key0, noCase);
|
||||
const MASK_TYPE mask2 = getMask(n->key1, noCase);
|
||||
|
||||
#if !defined(HAVE_AVX512)
|
||||
hwlm_error_t rv;
|
||||
|
||||
if (end - offset < CHUNKSIZE) {
|
||||
/* if (end - offset <= CHUNKSIZE) {
|
||||
rv = scanDoubleShort(n, buf, len, noCase, caseMask, mask1, mask2, cbi,
|
||||
offset, end);
|
||||
return rv;
|
||||
}
|
||||
if (end - offset == CHUNKSIZE) {
|
||||
rv = scanDoubleUnaligned(n, buf, len, offset, noCase, caseMask, mask1,
|
||||
}*/
|
||||
if (end - offset <= CHUNKSIZE) {
|
||||
rv = scanDoubleUnaligned(n, buf, len, offset, caseMask, mask1,
|
||||
mask2, cbi, offset, end);
|
||||
return rv;
|
||||
}
|
||||
@@ -261,7 +264,7 @@ hwlm_error_t scanDoubleMain(const struct noodTable *n, const u8 *buf,
|
||||
// first scan out to the fast scan starting point plus one char past to
|
||||
// catch the key on the overlap
|
||||
DEBUG_PRINTF("stage 1: %zu -> %zu\n", off, s2Start);
|
||||
rv = scanDoubleUnaligned(n, buf, len, offset, noCase, caseMask, mask1,
|
||||
rv = scanDoubleUnaligned(n, buf, len, offset, caseMask, mask1,
|
||||
mask2, cbi, off, s1End);
|
||||
RETURN_IF_TERMINATED(rv);
|
||||
}
|
||||
@@ -276,7 +279,7 @@ hwlm_error_t scanDoubleMain(const struct noodTable *n, const u8 *buf,
|
||||
// scan as far as we can, bounded by the last point this key can
|
||||
// possibly match
|
||||
DEBUG_PRINTF("fast: ~ %zu -> %zu\n", s2Start, s3Start);
|
||||
rv = scanDoubleFast(n, buf, len, noCase, caseMask, mask1, mask2, cbi,
|
||||
rv = scanDoubleFast(n, buf, len, caseMask, mask1, mask2, cbi,
|
||||
s2Start, s2End);
|
||||
RETURN_IF_TERMINATED(rv);
|
||||
off = s2End;
|
||||
@@ -288,12 +291,12 @@ hwlm_error_t scanDoubleMain(const struct noodTable *n, const u8 *buf,
|
||||
}
|
||||
|
||||
DEBUG_PRINTF("stage 3: %zu -> %zu\n", s3Start, end);
|
||||
rv = scanDoubleUnaligned(n, buf, len, s3Start, noCase, caseMask, mask1,
|
||||
rv = scanDoubleUnaligned(n, buf, len, s3Start, caseMask, mask1,
|
||||
mask2, cbi, off, end);
|
||||
|
||||
return rv;
|
||||
#else // AVX512
|
||||
return scanDouble512(n, buf, len, noCase, caseMask, mask1, mask2, cbi,
|
||||
return scanDouble512(n, buf, len, caseMask, mask1, mask2, cbi,
|
||||
offset, end);
|
||||
#endif // AVX512
|
||||
}
|
||||
@@ -303,14 +306,14 @@ static really_inline
|
||||
hwlm_error_t scanSingleNoCase(const struct noodTable *n, const u8 *buf,
|
||||
size_t len, size_t start,
|
||||
const struct cb_info *cbi) {
|
||||
return scanSingleMain(n, buf, len, start, 1, cbi);
|
||||
return scanSingleMain(n, buf, len, start, true, cbi);
|
||||
}
|
||||
|
||||
static really_inline
|
||||
hwlm_error_t scanSingleCase(const struct noodTable *n, const u8 *buf,
|
||||
size_t len, size_t start,
|
||||
const struct cb_info *cbi) {
|
||||
return scanSingleMain(n, buf, len, start, 0, cbi);
|
||||
return scanSingleMain(n, buf, len, start, false, cbi);
|
||||
}
|
||||
|
||||
// Single-character specialisation, used when keyLen = 1
|
||||
@@ -334,14 +337,14 @@ static really_inline
|
||||
hwlm_error_t scanDoubleNoCase(const struct noodTable *n, const u8 *buf,
|
||||
size_t len, size_t start,
|
||||
const struct cb_info *cbi) {
|
||||
return scanDoubleMain(n, buf, len, start, 1, cbi);
|
||||
return scanDoubleMain(n, buf, len, start, true, cbi);
|
||||
}
|
||||
|
||||
static really_inline
|
||||
hwlm_error_t scanDoubleCase(const struct noodTable *n, const u8 *buf,
|
||||
size_t len, size_t start,
|
||||
const struct cb_info *cbi) {
|
||||
return scanDoubleMain(n, buf, len, start, 0, cbi);
|
||||
return scanDoubleMain(n, buf, len, start, false, cbi);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user