Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion deps/simdjson/simdjson.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2026-07-30 16:20:13 -0400. version 4.6.6 Do not edit! */
/* auto-generated on 2026-08-14 12:14:27 -0400. version 4.6.7 Do not edit! */
/* including simdjson.cpp: */
/* begin file simdjson.cpp */
#define SIMDJSON_SRC_SIMDJSON_CPP
Expand Down Expand Up @@ -15228,6 +15228,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -21620,6 +21623,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -28007,6 +28013,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -34665,6 +34674,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -41885,6 +41897,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -48136,6 +48151,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -54291,6 +54309,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -60865,6 +60886,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down Expand Up @@ -64733,6 +64757,9 @@ simdjson_warn_unused simdjson_inline error_code tape_builder::visit_number(json_
const uint8_t *p = value;
if (*p == '-') p++;
while (numberparsing::is_digit(*p)) p++;
// The digit run must be terminated by a structural or whitespace character; otherwise the
// token is malformed (e.g. "123456789123456789123x").
if (jsoncharutils::is_not_structural_or_whitespace(*p)) { return NUMBER_ERROR; }
size_t len = size_t(p - value);
tape.append(current_string_buf_loc - iter.dom_parser.doc->string_buf.get(), internal::tape_type::BIGINT);
uint8_t *dst = current_string_buf_loc + sizeof(uint32_t);
Expand Down
6 changes: 3 additions & 3 deletions deps/simdjson/simdjson.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2026-07-30 16:20:13 -0400. version 4.6.6 Do not edit! */
/* auto-generated on 2026-08-14 12:14:27 -0400. version 4.6.7 Do not edit! */
/* including simdjson.h: */
/* begin file simdjson.h */
#ifndef SIMDJSON_H
Expand Down Expand Up @@ -2538,7 +2538,7 @@ namespace std {
#define SIMDJSON_SIMDJSON_VERSION_H

/** The version of simdjson being used (major.minor.revision) */
#define SIMDJSON_VERSION "4.6.6"
#define SIMDJSON_VERSION "4.6.7"

namespace simdjson {
enum {
Expand All @@ -2553,7 +2553,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdjson being used.
*/
SIMDJSON_VERSION_REVISION = 6
SIMDJSON_VERSION_REVISION = 7
};
} // namespace simdjson

Expand Down
Loading