summaryrefslogtreecommitdiff
path: root/deps/simdutf
diff options
context:
space:
mode:
authorNode.js GitHub Bot <github-bot@iojs.org>2023-02-25 18:03:09 +0100
committerGitHub <noreply@github.com>2023-02-25 17:03:09 +0000
commit620fd3b030658cf6725153cbe00ec22941a41912 (patch)
treef12ddb9321c73f1c105e73853edba6a70a37ee87 /deps/simdutf
parentf85113bf1c2de26d676aa29ea5ba1616e46aac12 (diff)
downloadnode-new-620fd3b030658cf6725153cbe00ec22941a41912.tar.gz
deps: update simdutf to 3.2.1
PR-URL: https://github.com/nodejs/node/pull/46800 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'deps/simdutf')
-rw-r--r--deps/simdutf/simdutf.cpp2
-rw-r--r--deps/simdutf/simdutf.h20
2 files changed, 6 insertions, 16 deletions
diff --git a/deps/simdutf/simdutf.cpp b/deps/simdutf/simdutf.cpp
index ea0d95f422..f7916d6814 100644
--- a/deps/simdutf/simdutf.cpp
+++ b/deps/simdutf/simdutf.cpp
@@ -1,4 +1,4 @@
-/* auto-generated on 2023-02-10 14:42:58 -0500. Do not edit! */
+/* auto-generated on 2023-02-23 11:36:05 -0500. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
/* begin file src/simdutf.cpp */
#include "simdutf.h"
diff --git a/deps/simdutf/simdutf.h b/deps/simdutf/simdutf.h
index 0a57a69f73..30600aaca4 100644
--- a/deps/simdutf/simdutf.h
+++ b/deps/simdutf/simdutf.h
@@ -1,4 +1,4 @@
-/* auto-generated on 2023-02-10 14:42:58 -0500. Do not edit! */
+/* auto-generated on 2023-02-23 11:36:05 -0500. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
/* begin file include/simdutf.h */
#ifndef SIMDUTF_H
@@ -572,7 +572,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
#define SIMDUTF_SIMDUTF_VERSION_H
/** The version of simdutf being used (major.minor.revision) */
-#define SIMDUTF_VERSION "3.2.0"
+#define SIMDUTF_VERSION "3.2.1"
namespace simdutf {
enum {
@@ -587,7 +587,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdutf being used.
*/
- SIMDUTF_VERSION_REVISION = 0
+ SIMDUTF_VERSION_REVISION = 1
};
} // namespace simdutf
@@ -690,22 +690,12 @@ static inline uint32_t detect_supported_architectures() {
return instruction_set::ALTIVEC;
}
-#elif defined(__arm__) || defined(__aarch64__) // incl. armel, armhf, arm64
-
-#if defined(__ARM_NEON)
+#elif defined(__aarch64__) || defined(_M_ARM64)
static inline uint32_t detect_supported_architectures() {
return instruction_set::NEON;
}
-#else // ARM without NEON
-
-static inline uint32_t detect_supported_architectures() {
- return instruction_set::DEFAULT;
-}
-
-#endif
-
#elif defined(__x86_64__) || defined(_M_AMD64) // x64
@@ -822,7 +812,7 @@ static inline uint32_t detect_supported_architectures() {
}
#else // fallback
-
+// includes 32-bit ARM.
static inline uint32_t detect_supported_architectures() {
return instruction_set::DEFAULT;
}