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