head 1.2; access; symbols; locks; strict; comment @// @; 1.2 date 2026.07.08.13.42.34; author kikadf; state Exp; branches; next 1.1; commitid TrothZVUWCiZ0RMG; 1.1 date 2026.07.06.13.07.02; author kikadf; state Exp; branches; next ; commitid 5JFQu3OxURxXTAMG; desc @@ 1.2 log @ chromium: update to 150.0.7871.100 This update doesn't include security fixes. A full list of changes in this build is available in https://chromium.googlesource.com/chromium/src/+log/150.0.7871.47..150.0.7871.101?pretty=fuller&n=10000 @ 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-07-06 22:58:46.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); @ 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 @d7 1 a7 1 --- v8/src/objects/simd.cc.orig 2026-06-23 23:37:18.000000000 +0000 @