Skip to content

Commit

Permalink
deps: update simdutf to 3.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
nodejs-github-bot committed May 23, 2023
1 parent 7195d28 commit 93382cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions deps/simdutf/simdutf.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2023-05-22 13:06:02 -0400. Do not edit! */
/* auto-generated on 2023-05-22 21:46:48 -0400. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
/* begin file src/simdutf.cpp */
#include "simdutf.h"
Expand Down Expand Up @@ -807,7 +807,7 @@ struct simd16;
simdutf_really_inline simd16<T>& operator&=(const simd16<T> other) { auto this_cast = static_cast<simd16<T>*>(this); *this_cast = *this_cast & other; return *this_cast; }
simdutf_really_inline simd16<T>& operator^=(const simd16<T> other) { auto this_cast = static_cast<simd16<T>*>(this); *this_cast = *this_cast ^ other; return *this_cast; }

simdutf_really_inline Mask operator==(const simd16<T> other) const { return vceqq_u16(*this, other); }
friend simdutf_really_inline Mask operator==(const simd16<T> lhs, const simd16<T> rhs) { return vceqq_u16(lhs, rhs); }

template<int N=1>
simdutf_really_inline simd16<T> prev(const simd16<T> prev_chunk) const {
Expand All @@ -825,8 +825,6 @@ struct base16: base_u16<T> {
template <typename Pointer>
simdutf_really_inline base16(const Pointer* ptr) : base16(vld1q_u16(ptr)) {}

simdutf_really_inline Mask operator==(const simd16<T> other) const { return vceqq_u16(*this, other); }

static const int SIZE = sizeof(base_u16<T>::value);

template<int N=1>
Expand Down Expand Up @@ -3004,7 +3002,7 @@ struct base16: base<simd16<T>> {
template <typename Pointer>
simdutf_really_inline base16(const Pointer* ptr) : base16(_mm_loadu_si128(reinterpret_cast<const __m128i*>(ptr))) {}

simdutf_really_inline Mask operator==(const simd16<T> other) const { return _mm_cmpeq_epi16(*this, other); }
friend simdutf_really_inline Mask operator==(const simd16<T> lhs, const simd16<T> rhs) { return _mm_cmpeq_epi16(lhs, rhs); }

static const int SIZE = sizeof(base<simd16<T>>::value);

Expand Down
6 changes: 3 additions & 3 deletions deps/simdutf/simdutf.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2023-05-22 13:06:02 -0400. Do not edit! */
/* auto-generated on 2023-05-22 21:46:48 -0400. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
/* begin file include/simdutf.h */
#ifndef SIMDUTF_H
Expand Down Expand Up @@ -574,7 +574,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
#define SIMDUTF_SIMDUTF_VERSION_H
/** The version of simdutf being used (major.minor.revision) */
#define SIMDUTF_VERSION "3.2.11"
#define SIMDUTF_VERSION "3.2.12"
namespace simdutf {
enum {
Expand All @@ -589,7 +589,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdutf being used.
*/
SIMDUTF_VERSION_REVISION = 11
SIMDUTF_VERSION_REVISION = 12
};
} // namespace simdutf
Expand Down

0 comments on commit 93382cc

Please sign in to comment.