mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
c2eea8abba
* massive clang-format -style=LLVM * naming harmonization * adding commentary about sysinfoapi.h
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
#ifndef SIMDJSON_STRINGPARSING_WESTMERE_H
|
|
#define SIMDJSON_STRINGPARSING_WESTMERE_H
|
|
|
|
#include "simdjson/stringparsing.h"
|
|
#include "simdjson/stringparsing_macros.h"
|
|
|
|
#ifdef IS_X86_64
|
|
TARGET_WESTMERE
|
|
namespace simdjson {
|
|
template <>
|
|
really_inline parse_string_helper
|
|
find_bs_bits_and_quote_bits<Architecture::WESTMERE>(const uint8_t *src,
|
|
uint8_t *dst) {
|
|
// this can read up to 31 bytes beyond the buffer size, but we require
|
|
// SIMDJSON_PADDING of padding
|
|
__m128i v = _mm_loadu_si128(reinterpret_cast<const __m128i *>(src));
|
|
// store to dest unconditionally - we can overwrite the bits we don't like
|
|
// later
|
|
_mm_storeu_si128(reinterpret_cast<__m128i *>(dst), v);
|
|
auto quote_mask = _mm_cmpeq_epi8(v, _mm_set1_epi8('"'));
|
|
return {
|
|
static_cast<uint32_t>(
|
|
_mm_movemask_epi8(_mm_cmpeq_epi8(v, _mm_set1_epi8('\\')))), // bs_bits
|
|
static_cast<uint32_t>(_mm_movemask_epi8(quote_mask)) // quote_bits
|
|
};
|
|
}
|
|
|
|
template <>
|
|
WARN_UNUSED ALLOW_SAME_PAGE_BUFFER_OVERRUN_QUALIFIER LENIENT_MEM_SANITIZER
|
|
really_inline bool
|
|
parse_string<Architecture::WESTMERE>(UNUSED const uint8_t *buf,
|
|
UNUSED size_t len, ParsedJson &pj,
|
|
UNUSED const uint32_t depth,
|
|
UNUSED uint32_t offset) {
|
|
PARSE_STRING(Architecture::WESTMERE, buf, len, pj, depth, offset);
|
|
}
|
|
} // namespace simdjson
|
|
UNTARGET_REGION
|
|
#endif
|
|
|
|
#endif |