head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.07.06.13.07.02; author kikadf; state Exp; branches; next ; commitid 5JFQu3OxURxXTAMG; desc @@ 1.1 log @ chromium: update to 150.0.7871.46 This update includes 433 security fixes. Please see the Chrome Security Page for more information. @ text @$NetBSD$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- v8/src/objects/simd.cc.orig 2026-06-23 23:37:18.000000000 +0000 +++ v8/src/objects/simd.cc @@@@ -347,7 +347,7 @@@@ uintptr_t fast_search_avx(T* array, uint } #endif // ifdef __SSE3__ -#ifdef NEON64 +#if defined(NEON64) && !defined(V8_TARGET_OS_OPENBSD) template struct SVEOperations { @@@@ -637,9 +637,11 @@@@ template inline uintptr_t search(T* array, uintptr_t array_len, uintptr_t index, T search_element) { #ifdef NEON64 +#ifndef V8_TARGET_OS_OPENBSD if (get_vectorization_kind() == SimdKinds::kSVE) { return fast_search_sve(array, array_len, index, search_element); } +#endif #else if (get_vectorization_kind() == SimdKinds::kAVX2) { return fast_search_avx(array, array_len, index, search_element); @