2019-08-21 19:59:49 +08:00
|
|
|
#ifndef SIMDJSON_ARM64_STRINGPARSING_H
|
|
|
|
#define SIMDJSON_ARM64_STRINGPARSING_H
|
2019-07-29 10:46:33 +08:00
|
|
|
|
2019-10-28 01:11:32 +08:00
|
|
|
#include "simdjson/portability.h"
|
|
|
|
|
2019-07-29 10:46:33 +08:00
|
|
|
#ifdef IS_ARM64
|
2019-08-21 19:59:49 +08:00
|
|
|
|
2019-10-28 01:51:54 +08:00
|
|
|
#include "arm64/simd.h"
|
2019-10-07 03:39:55 +08:00
|
|
|
#include "simdjson/common_defs.h"
|
|
|
|
#include "simdjson/parsedjson.h"
|
2019-10-14 02:16:26 +08:00
|
|
|
#include "jsoncharutils.h"
|
2019-12-17 08:09:18 +08:00
|
|
|
#include "arm64/intrinsics.h"
|
|
|
|
#include "arm64/bitmanipulation.h"
|
2019-10-07 03:39:55 +08:00
|
|
|
|
2019-08-21 19:59:49 +08:00
|
|
|
namespace simdjson::arm64 {
|
|
|
|
|
2019-10-28 01:51:54 +08:00
|
|
|
using namespace simd;
|
|
|
|
|
2019-10-07 03:39:55 +08:00
|
|
|
// Holds backslashes and quotes locations.
|
|
|
|
struct parse_string_helper {
|
|
|
|
uint32_t bs_bits;
|
|
|
|
uint32_t quote_bits;
|
2019-10-28 01:51:54 +08:00
|
|
|
static const uint32_t BYTES_PROCESSED = 32;
|
2019-10-07 03:39:55 +08:00
|
|
|
};
|
|
|
|
|
2019-08-21 19:59:49 +08:00
|
|
|
really_inline parse_string_helper find_bs_bits_and_quote_bits(const uint8_t *src, uint8_t *dst) {
|
2019-07-31 05:18:10 +08:00
|
|
|
// this can read up to 31 bytes beyond the buffer size, but we require
|
|
|
|
// SIMDJSON_PADDING of padding
|
2019-10-28 01:51:54 +08:00
|
|
|
static_assert(SIMDJSON_PADDING >= (parse_string_helper::BYTES_PROCESSED - 1));
|
|
|
|
simd8<uint8_t> v0(src);
|
|
|
|
simd8<uint8_t> v1(src + sizeof(v0));
|
|
|
|
v0.store(dst);
|
|
|
|
v1.store(dst + sizeof(v0));
|
|
|
|
|
|
|
|
// Getting a 64-bit bitmask is much cheaper than multiple 16-bit bitmasks on ARM; therefore, we
|
|
|
|
// smash them together into a 64-byte mask and get the bitmask from there.
|
|
|
|
uint64_t bs_and_quote = simd8x64<bool>(v0 == '\\', v1 == '\\', v0 == '"', v1 == '"').to_bitmask();
|
2019-07-31 05:18:10 +08:00
|
|
|
return {
|
2019-10-28 01:51:54 +08:00
|
|
|
static_cast<uint32_t>(bs_and_quote), // bs_bits
|
|
|
|
static_cast<uint32_t>(bs_and_quote >> 32) // quote_bits
|
2019-07-31 05:18:10 +08:00
|
|
|
};
|
2019-07-29 10:46:33 +08:00
|
|
|
}
|
|
|
|
|
2019-08-21 19:59:49 +08:00
|
|
|
#include "generic/stringparsing.h"
|
2019-08-05 07:57:55 +08:00
|
|
|
|
2019-08-21 19:59:49 +08:00
|
|
|
}
|
|
|
|
// namespace simdjson::amd64
|
2019-08-05 03:58:35 +08:00
|
|
|
|
2019-08-05 07:57:55 +08:00
|
|
|
#endif // IS_ARM64
|
2019-07-29 10:46:33 +08:00
|
|
|
#endif
|