mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
44 lines
927 B
C++
44 lines
927 B
C++
#define SIMDJSON_SRC_SIMDJSON_CPP
|
|
|
|
#include "simdjson/common_defs.h"
|
|
|
|
SIMDJSON_PUSH_DISABLE_UNUSED_WARNINGS
|
|
|
|
#include "to_chars.cpp"
|
|
#include "from_chars.cpp"
|
|
#include "internal/error_tables.cpp"
|
|
#include "internal/jsoncharutils_tables.cpp"
|
|
#include "internal/numberparsing_tables.cpp"
|
|
#include "internal/simdprune_tables.cpp"
|
|
|
|
#include "simdjson/generic/dependencies.h"
|
|
#include "generic/dependencies.h"
|
|
|
|
#include "implementation.cpp"
|
|
|
|
#define SIMDJSON_AMALGAMATED
|
|
|
|
#if SIMDJSON_IMPLEMENTATION_ARM64
|
|
#include "arm64.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
|
#include "fallback.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_HASWELL
|
|
#include "haswell.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_ICELAKE
|
|
#include "icelake.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_PPC64
|
|
#include "ppc64.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_WESTMERE
|
|
#include "westmere.cpp"
|
|
#endif
|
|
|
|
#undef SIMDJSON_AMALGAMATED
|
|
|
|
SIMDJSON_POP_DISABLE_UNUSED_WARNINGS
|
|
|