| 1 | #include "simdjson.h" |
|---|---|
| 2 | |
| 3 | SIMDJSON_PUSH_DISABLE_WARNINGS |
| 4 | SIMDJSON_DISABLE_UNDESIRED_WARNINGS |
| 5 | |
| 6 | #include "to_chars.cpp" |
| 7 | #include "from_chars.cpp" |
| 8 | #include "internal/error_tables.cpp" |
| 9 | #include "internal/jsoncharutils_tables.cpp" |
| 10 | #include "internal/numberparsing_tables.cpp" |
| 11 | #include "internal/simdprune_tables.cpp" |
| 12 | #include "implementation.cpp" |
| 13 | |
| 14 | #if SIMDJSON_IMPLEMENTATION_ARM64 |
| 15 | #include "arm64/implementation.cpp" |
| 16 | #include "arm64/dom_parser_implementation.cpp" |
| 17 | #endif |
| 18 | #if SIMDJSON_IMPLEMENTATION_FALLBACK |
| 19 | #include "fallback/implementation.cpp" |
| 20 | #include "fallback/dom_parser_implementation.cpp" |
| 21 | #endif |
| 22 | #if SIMDJSON_IMPLEMENTATION_ICELAKE |
| 23 | #include "icelake/implementation.cpp" |
| 24 | #include "icelake/dom_parser_implementation.cpp" |
| 25 | #endif |
| 26 | #if SIMDJSON_IMPLEMENTATION_HASWELL |
| 27 | #include "haswell/implementation.cpp" |
| 28 | #include "haswell/dom_parser_implementation.cpp" |
| 29 | #endif |
| 30 | #if SIMDJSON_IMPLEMENTATION_PPC64 |
| 31 | #include "ppc64/implementation.cpp" |
| 32 | #include "ppc64/dom_parser_implementation.cpp" |
| 33 | #endif |
| 34 | #if SIMDJSON_IMPLEMENTATION_WESTMERE |
| 35 | #include "westmere/implementation.cpp" |
| 36 | #include "westmere/dom_parser_implementation.cpp" |
| 37 | #endif |
| 38 | |
| 39 | SIMDJSON_POP_DISABLE_WARNINGS |
| 40 |