mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 177bd9d0e1 | |||
| d3bd561b77 | |||
| 62a6972d66 | |||
| 19bc77d99d | |||
| 4647320adc |
@@ -88,6 +88,7 @@ objs
|
|||||||
# Build outputs
|
# Build outputs
|
||||||
/build*/
|
/build*/
|
||||||
/visual_studio/
|
/visual_studio/
|
||||||
|
/originbuild/
|
||||||
|
|
||||||
# Fuzzer outputs generated by instructions in fuzz/Fuzzing.md
|
# Fuzzer outputs generated by instructions in fuzz/Fuzzing.md
|
||||||
/corpus.zip
|
/corpus.zip
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Implementation selection
|
# Implementation selection
|
||||||
#
|
#
|
||||||
set(SIMDJSON_ALL_IMPLEMENTATIONS fallback westmere haswell icelake arm64 ppc64)
|
set(SIMDJSON_ALL_IMPLEMENTATIONS fallback westmere haswell icelake arm64 ppc64 rvv)
|
||||||
|
|
||||||
set(
|
set(
|
||||||
SIMDJSON_IMPLEMENTATION ""
|
SIMDJSON_IMPLEMENTATION ""
|
||||||
@@ -15,7 +15,7 @@ set(
|
|||||||
SIMDJSON_EXCLUDE_IMPLEMENTATION ""
|
SIMDJSON_EXCLUDE_IMPLEMENTATION ""
|
||||||
CACHE STRING "\
|
CACHE STRING "\
|
||||||
Semicolon-separated list of implementations to exclude \
|
Semicolon-separated list of implementations to exclude \
|
||||||
(icelake/haswell/westmere/arm64/ppc64/fallback). By default, excludes any \
|
(icelake/haswell/westmere/arm64/ppc64/rvv/fallback). By default, excludes any \
|
||||||
implementations that are unsupported at compile time or cannot be selected at \
|
implementations that are unsupported at compile time or cannot be selected at \
|
||||||
runtime."
|
runtime."
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -24,6 +24,8 @@
|
|||||||
#include "simdjson/lsx.h"
|
#include "simdjson/lsx.h"
|
||||||
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
||||||
#include "simdjson/lasx.h"
|
#include "simdjson/lasx.h"
|
||||||
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(rvv)
|
||||||
|
#include "simdjson/rvv.h"
|
||||||
#else
|
#else
|
||||||
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ namespace simdjson {
|
|||||||
namespace lsx {}
|
namespace lsx {}
|
||||||
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
||||||
namespace lasx {}
|
namespace lasx {}
|
||||||
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(rvv)
|
||||||
|
namespace rvv {}
|
||||||
#else
|
#else
|
||||||
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -23,6 +23,8 @@
|
|||||||
#include "simdjson/lsx/implementation.h"
|
#include "simdjson/lsx/implementation.h"
|
||||||
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
||||||
#include "simdjson/lasx/implementation.h"
|
#include "simdjson/lasx/implementation.h"
|
||||||
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(rvv)
|
||||||
|
#include "simdjson/rvv/implementation.h"
|
||||||
#else
|
#else
|
||||||
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -24,6 +24,8 @@
|
|||||||
#include "simdjson/lsx/ondemand.h"
|
#include "simdjson/lsx/ondemand.h"
|
||||||
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(lasx)
|
||||||
#include "simdjson/lasx/ondemand.h"
|
#include "simdjson/lasx/ondemand.h"
|
||||||
|
#elif SIMDJSON_BUILTIN_IMPLEMENTATION_IS(rvv)
|
||||||
|
#include "simdjson/rvv/ondemand.h"
|
||||||
#else
|
#else
|
||||||
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
#error Unknown SIMDJSON_BUILTIN_IMPLEMENTATION
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
#define SIMDJSON_IMPLEMENTATION_ID_westmere 6
|
#define SIMDJSON_IMPLEMENTATION_ID_westmere 6
|
||||||
#define SIMDJSON_IMPLEMENTATION_ID_lsx 7
|
#define SIMDJSON_IMPLEMENTATION_ID_lsx 7
|
||||||
#define SIMDJSON_IMPLEMENTATION_ID_lasx 8
|
#define SIMDJSON_IMPLEMENTATION_ID_lasx 8
|
||||||
|
#define SIMDJSON_IMPLEMENTATION_ID_rvv 9
|
||||||
|
|
||||||
#define SIMDJSON_IMPLEMENTATION_ID_FOR(IMPL) SIMDJSON_CAT(SIMDJSON_IMPLEMENTATION_ID_, IMPL)
|
#define SIMDJSON_IMPLEMENTATION_ID_FOR(IMPL) SIMDJSON_CAT(SIMDJSON_IMPLEMENTATION_ID_, IMPL)
|
||||||
#define SIMDJSON_IMPLEMENTATION_ID SIMDJSON_IMPLEMENTATION_ID_FOR(SIMDJSON_IMPLEMENTATION)
|
#define SIMDJSON_IMPLEMENTATION_ID SIMDJSON_IMPLEMENTATION_ID_FOR(SIMDJSON_IMPLEMENTATION)
|
||||||
@@ -23,6 +24,15 @@
|
|||||||
// in which we include them.
|
// in which we include them.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#ifndef SIMDJSON_IMPLEMENTATION_RVV
|
||||||
|
#define SIMDJSON_IMPLEMENTATION_RVV (SIMDJSON_IS_RISCV64 && SIMDJSON_IS_RVV)
|
||||||
|
#endif
|
||||||
|
#if SIMDJSON_IMPLEMENTATION_RVV && SIMDJSON_IS_RISCV64 && SIMDJSON_IS_RVV
|
||||||
|
#define SIMDJSON_CAN_ALWAYS_RUN_RVV 1
|
||||||
|
#else
|
||||||
|
#define SIMDJSON_CAN_ALWAYS_RUN_RVV 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef SIMDJSON_IMPLEMENTATION_ARM64
|
#ifndef SIMDJSON_IMPLEMENTATION_ARM64
|
||||||
#define SIMDJSON_IMPLEMENTATION_ARM64 (SIMDJSON_IS_ARM64)
|
#define SIMDJSON_IMPLEMENTATION_ARM64 (SIMDJSON_IS_ARM64)
|
||||||
#endif
|
#endif
|
||||||
@@ -128,7 +138,7 @@
|
|||||||
|
|
||||||
// Default Fallback to on unless a builtin implementation has already been selected.
|
// Default Fallback to on unless a builtin implementation has already been selected.
|
||||||
#ifndef SIMDJSON_IMPLEMENTATION_FALLBACK
|
#ifndef SIMDJSON_IMPLEMENTATION_FALLBACK
|
||||||
#if SIMDJSON_CAN_ALWAYS_RUN_ARM64 || SIMDJSON_CAN_ALWAYS_RUN_ICELAKE || SIMDJSON_CAN_ALWAYS_RUN_HASWELL || SIMDJSON_CAN_ALWAYS_RUN_WESTMERE || SIMDJSON_CAN_ALWAYS_RUN_PPC64 || SIMDJSON_CAN_ALWAYS_RUN_LSX || SIMDJSON_CAN_ALWAYS_RUN_LASX
|
#if SIMDJSON_CAN_ALWAYS_RUN_ARM64 || SIMDJSON_CAN_ALWAYS_RUN_ICELAKE || SIMDJSON_CAN_ALWAYS_RUN_HASWELL || SIMDJSON_CAN_ALWAYS_RUN_WESTMERE || SIMDJSON_CAN_ALWAYS_RUN_PPC64 || SIMDJSON_CAN_ALWAYS_RUN_LSX || SIMDJSON_CAN_ALWAYS_RUN_LASX || SIMDJSON_CAN_ALWAYS_RUN_RVV
|
||||||
// if anything at all except fallback can always run, then disable fallback.
|
// if anything at all except fallback can always run, then disable fallback.
|
||||||
#define SIMDJSON_IMPLEMENTATION_FALLBACK 0
|
#define SIMDJSON_IMPLEMENTATION_FALLBACK 0
|
||||||
#else
|
#else
|
||||||
@@ -154,6 +164,8 @@
|
|||||||
#define SIMDJSON_BUILTIN_IMPLEMENTATION lsx
|
#define SIMDJSON_BUILTIN_IMPLEMENTATION lsx
|
||||||
#elif SIMDJSON_CAN_ALWAYS_RUN_LASX
|
#elif SIMDJSON_CAN_ALWAYS_RUN_LASX
|
||||||
#define SIMDJSON_BUILTIN_IMPLEMENTATION lasx
|
#define SIMDJSON_BUILTIN_IMPLEMENTATION lasx
|
||||||
|
#elif SIMDJSON_CAN_ALWAYS_RUN_RVV
|
||||||
|
#define SIMDJSON_BUILTIN_IMPLEMENTATION rvv
|
||||||
#elif SIMDJSON_CAN_ALWAYS_RUN_FALLBACK
|
#elif SIMDJSON_CAN_ALWAYS_RUN_FALLBACK
|
||||||
#define SIMDJSON_BUILTIN_IMPLEMENTATION fallback
|
#define SIMDJSON_BUILTIN_IMPLEMENTATION fallback
|
||||||
#else
|
#else
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#ifndef SIMDJSON_RVV_H
|
||||||
|
#define SIMDJSON_RVV_H
|
||||||
|
|
||||||
|
#include "simdjson/rvv/begin.h"
|
||||||
|
#include "simdjson/generic/amalgamated.h"
|
||||||
|
#include "simdjson/rvv/end.h"
|
||||||
|
|
||||||
|
#endif // SIMDJSON_RVV_H
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#ifndef SIMDJSON_RVV_BASE_H
|
||||||
|
#define SIMDJSON_RVV_BASE_H
|
||||||
|
|
||||||
|
#ifndef SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
#include "simdjson/base.h"
|
||||||
|
#endif // SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
|
||||||
|
#endif // SIMDJSON_RVV_BASE_H
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#define SIMDJSON_IMPLEMENTATION rvv
|
||||||
|
|
||||||
|
// include RVV intrinsics and definitions
|
||||||
|
#include "simdjson/rvv/base.h"
|
||||||
|
#include "simdjson/rvv/intrinsics.h"
|
||||||
|
#include "simdjson/rvv/bitmanipulation.h"
|
||||||
|
#include "simdjson/rvv/bitmask.h"
|
||||||
|
#include "simdjson/rvv/numberparsing_defs.h"
|
||||||
|
#include "simdjson/rvv/simd.h"
|
||||||
|
#include "simdjson/rvv/stringparsing_defs.h"
|
||||||
|
|
||||||
|
#define SIMDJSON_SKIP_BACKSLASH_SHORT_CIRCUIT 1
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
#include "simdjson/rvv/base.h"
|
||||||
|
#endif // SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
|
||||||
|
#undef SIMDJSON_SKIP_BACKSLASH_SHORT_CIRCUIT
|
||||||
|
#undef SIMDJSON_IMPLEMENTATION
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
#ifndef SIMDJSON_RVV_IMPLEMENTATION_H
|
||||||
|
#define SIMDJSON_RVV_IMPLEMENTATION_H
|
||||||
|
|
||||||
|
#ifndef SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
#define SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
#include "simdjson/base.h"
|
||||||
|
#include "simdjson/implementation.h"
|
||||||
|
#include "simdjson/internal/instruction_set.h"
|
||||||
|
#endif // SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
|
||||||
|
namespace simdjson {
|
||||||
|
namespace rvv {
|
||||||
|
|
||||||
|
class implementation final: public simdjson::implementation {
|
||||||
|
public:
|
||||||
|
simdjson_inline implementation() : simdjson::implementation("rvv", "RISC-V Vector Extension", 0) {}
|
||||||
|
simdjson_warn_unused error_code create_dom_parser_implementation(
|
||||||
|
size_t capacity,
|
||||||
|
size_t max_depth,
|
||||||
|
std::unique_ptr<internal::dom_parser_implementation>& dst
|
||||||
|
) const noexcept final;
|
||||||
|
simdjson_warn_unused error_code minify(const uint8_t *buf, size_t len, uint8_t *dst, size_t &dst_len) const noexcept final;
|
||||||
|
simdjson_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace rvv
|
||||||
|
} // namespace simdjson
|
||||||
|
|
||||||
|
#endif // SIMDJSON_RVV_IMPLEMENTATION_H
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef SIMDJSON_RVV_ONDEMAND_H
|
||||||
|
#define SIMDJSON_RVV_ONDEMAND_H
|
||||||
|
|
||||||
|
#include "simdjson/rvv/begin.h"
|
||||||
|
#include "simdjson/generic/ondemand/amalgamated.h"
|
||||||
|
#include "simdjson/rvv/end.h"
|
||||||
|
|
||||||
|
#endif // SIMDJSON_RVV_ONDEMAND_H
|
||||||
|
|
||||||
@@ -22,6 +22,9 @@ rules = """
|
|||||||
|
|
||||||
We refer your to the HACKING.md file for more information on how the project is organized.
|
We refer your to the HACKING.md file for more information on how the project is organized.
|
||||||
|
|
||||||
|
If you are trying to add a new implementation, you need to edit the amalgamate.py script
|
||||||
|
to add your implementation to the IMPLEMENTATIONS list.
|
||||||
|
|
||||||
To help understand the error, here are the rules for including files in simdjson:
|
To help understand the error, here are the rules for including files in simdjson:
|
||||||
|
|
||||||
All implementation-specific files, including arm64.h, arm64/implementation.h and
|
All implementation-specific files, including arm64.h, arm64/implementation.h and
|
||||||
@@ -68,7 +71,7 @@ else:
|
|||||||
RelativeRoot = str # Literal['src','include'] # Literal not supported in Python 3.7 (CI)
|
RelativeRoot = str # Literal['src','include'] # Literal not supported in Python 3.7 (CI)
|
||||||
RELATIVE_ROOTS: List[RelativeRoot] = ['src', 'include' ]
|
RELATIVE_ROOTS: List[RelativeRoot] = ['src', 'include' ]
|
||||||
Implementation = str # Literal['arm64', 'fallback', 'haswell', 'icelake', 'ppc64', 'westmere', 'lsx', 'lasx'] # Literal not supported in Python 3.7 (CI)
|
Implementation = str # Literal['arm64', 'fallback', 'haswell', 'icelake', 'ppc64', 'westmere', 'lsx', 'lasx'] # Literal not supported in Python 3.7 (CI)
|
||||||
IMPLEMENTATIONS: List[Implementation] = [ 'arm64', 'haswell', 'icelake', 'lasx', 'lsx', 'ppc64', 'westmere', 'fallback' ]
|
IMPLEMENTATIONS: List[Implementation] = [ 'arm64', 'haswell', 'icelake', 'lasx', 'lsx', 'ppc64', 'westmere', 'fallback', 'rvv' ]
|
||||||
GENERIC_INCLUDE = "simdjson/generic"
|
GENERIC_INCLUDE = "simdjson/generic"
|
||||||
GENERIC_SRC = "generic"
|
GENERIC_SRC = "generic"
|
||||||
BUILTIN = "simdjson/builtin"
|
BUILTIN = "simdjson/builtin"
|
||||||
@@ -355,7 +358,6 @@ class Amalgamator:
|
|||||||
self.include_stack.append(file)
|
self.include_stack.append(file)
|
||||||
|
|
||||||
file.processed = False
|
file.processed = False
|
||||||
|
|
||||||
self.write(f"/* begin file {self.file_to_str(file)} */")
|
self.write(f"/* begin file {self.file_to_str(file)} */")
|
||||||
|
|
||||||
if file == BUILTIN_BEGIN_H:
|
if file == BUILTIN_BEGIN_H:
|
||||||
|
|||||||
@@ -21,6 +21,19 @@ bool implementation::supported_by_runtime_system() const {
|
|||||||
|
|
||||||
#define SIMDJSON_CONDITIONAL_INCLUDE
|
#define SIMDJSON_CONDITIONAL_INCLUDE
|
||||||
|
|
||||||
|
#if SIMDJSON_IMPLEMENTATION_RVV
|
||||||
|
#include <simdjson/rvv/implementation.h>
|
||||||
|
namespace simdjson {
|
||||||
|
namespace internal {
|
||||||
|
static const rvv::implementation* get_rvv_singleton() {
|
||||||
|
static const rvv::implementation rvv_singleton{};
|
||||||
|
return &rvv_singleton;
|
||||||
|
}
|
||||||
|
} // namespace internal
|
||||||
|
} // namespace simdjson
|
||||||
|
#endif // SIMDJSON_IMPLEMENTATION_RVV
|
||||||
|
|
||||||
|
|
||||||
#if SIMDJSON_IMPLEMENTATION_ARM64
|
#if SIMDJSON_IMPLEMENTATION_ARM64
|
||||||
#include <simdjson/arm64/implementation.h>
|
#include <simdjson/arm64/implementation.h>
|
||||||
namespace simdjson {
|
namespace simdjson {
|
||||||
@@ -130,6 +143,7 @@ namespace internal {
|
|||||||
+ SIMDJSON_IMPLEMENTATION_HASWELL + SIMDJSON_IMPLEMENTATION_WESTMERE \
|
+ SIMDJSON_IMPLEMENTATION_HASWELL + SIMDJSON_IMPLEMENTATION_WESTMERE \
|
||||||
+ SIMDJSON_IMPLEMENTATION_ARM64 + SIMDJSON_IMPLEMENTATION_PPC64 \
|
+ SIMDJSON_IMPLEMENTATION_ARM64 + SIMDJSON_IMPLEMENTATION_PPC64 \
|
||||||
+ SIMDJSON_IMPLEMENTATION_LSX + SIMDJSON_IMPLEMENTATION_LASX \
|
+ SIMDJSON_IMPLEMENTATION_LSX + SIMDJSON_IMPLEMENTATION_LASX \
|
||||||
|
+ SIMDJSON_IMPLEMENTATION_RVV \
|
||||||
+ SIMDJSON_IMPLEMENTATION_FALLBACK == 1)
|
+ SIMDJSON_IMPLEMENTATION_FALLBACK == 1)
|
||||||
|
|
||||||
#if SIMDJSON_SINGLE_IMPLEMENTATION
|
#if SIMDJSON_SINGLE_IMPLEMENTATION
|
||||||
@@ -156,6 +170,9 @@ namespace internal {
|
|||||||
#if SIMDJSON_IMPLEMENTATION_LASX
|
#if SIMDJSON_IMPLEMENTATION_LASX
|
||||||
get_lasx_singleton();
|
get_lasx_singleton();
|
||||||
#endif
|
#endif
|
||||||
|
#if SIMDJSON_IMPLEMENTATION_RVV
|
||||||
|
get_rvv_singleton();
|
||||||
|
#endif
|
||||||
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
||||||
get_fallback_singleton();
|
get_fallback_singleton();
|
||||||
#endif
|
#endif
|
||||||
@@ -216,6 +233,9 @@ static const std::initializer_list<const implementation *>& get_available_implem
|
|||||||
#if SIMDJSON_IMPLEMENTATION_LASX
|
#if SIMDJSON_IMPLEMENTATION_LASX
|
||||||
get_lasx_singleton(),
|
get_lasx_singleton(),
|
||||||
#endif
|
#endif
|
||||||
|
#if SIMDJSON_IMPLEMENTATION_RVV
|
||||||
|
get_rvv_singleton(),
|
||||||
|
#endif
|
||||||
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
||||||
get_fallback_singleton(),
|
get_fallback_singleton(),
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+17
@@ -0,0 +1,17 @@
|
|||||||
|
#ifndef SIMDJSON_SRC_RVV_CPP
|
||||||
|
#define SIMDJSON_SRC_RVV_CPP
|
||||||
|
|
||||||
|
#include "simdjson/rvv/implementation.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
namespace simdjson {
|
||||||
|
namespace rvv {
|
||||||
|
error_code implementation::create_dom_parser_implementation(
|
||||||
|
size_t, size_t,
|
||||||
|
std::unique_ptr<simdjson::internal::dom_parser_implementation>&) const noexcept {
|
||||||
|
return error_code::UNSUPPORTED_ARCHITECTURE;
|
||||||
|
}
|
||||||
|
} // namespace rvv
|
||||||
|
} // namespace simdjson
|
||||||
|
#endif // SIMDJSON_SRC_RVV_CPP
|
||||||
@@ -41,6 +41,9 @@ SIMDJSON_PUSH_DISABLE_UNUSED_WARNINGS
|
|||||||
#if SIMDJSON_IMPLEMENTATION_LASX
|
#if SIMDJSON_IMPLEMENTATION_LASX
|
||||||
#include <lasx.cpp>
|
#include <lasx.cpp>
|
||||||
#endif
|
#endif
|
||||||
|
#if SIMDJSON_IMPLEMENTATION_RVV
|
||||||
|
#include <rvv.cpp>
|
||||||
|
#endif
|
||||||
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
||||||
#include <fallback.cpp>
|
#include <fallback.cpp>
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user