| 1 | #ifndef SIMDJSON_ARM64_H |
|---|---|
| 2 | #define SIMDJSON_ARM64_H |
| 3 | |
| 4 | #include "simdjson/implementation-base.h" |
| 5 | |
| 6 | #if SIMDJSON_IMPLEMENTATION_ARM64 |
| 7 | |
| 8 | namespace simdjson { |
| 9 | /** |
| 10 | * Implementation for NEON (ARMv8). |
| 11 | */ |
| 12 | namespace arm64 { |
| 13 | } // namespace arm64 |
| 14 | } // namespace simdjson |
| 15 | |
| 16 | #include "simdjson/arm64/implementation.h" |
| 17 | |
| 18 | #include "simdjson/arm64/begin.h" |
| 19 | |
| 20 | // Declarations |
| 21 | #include "simdjson/generic/dom_parser_implementation.h" |
| 22 | #include "simdjson/arm64/intrinsics.h" |
| 23 | #include "simdjson/arm64/bitmanipulation.h" |
| 24 | #include "simdjson/arm64/bitmask.h" |
| 25 | #include "simdjson/arm64/simd.h" |
| 26 | #include "simdjson/generic/jsoncharutils.h" |
| 27 | #include "simdjson/generic/atomparsing.h" |
| 28 | #include "simdjson/arm64/stringparsing.h" |
| 29 | #include "simdjson/arm64/numberparsing.h" |
| 30 | #include "simdjson/arm64/end.h" |
| 31 | |
| 32 | #endif // SIMDJSON_IMPLEMENTATION_ARM64 |
| 33 | |
| 34 | #endif // SIMDJSON_ARM64_H |
| 35 |