/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/base/platform/yield-processor.h
62 строки
2 KB
Michaël Zasso
deps: update V8 to 14.1.146.11
04 окт 2025, 19:47
Не верифицирован
04 окт 2025, 19:47
7772a2d
Код
Авторство
О чём код?
// Copyright 2021 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_BASE_PLATFORM_YIELD_PROCESSOR_H_ #define V8_BASE_PLATFORM_YIELD_PROCESSOR_H_ // The YIELD_PROCESSOR macro wraps an architecture specific-instruction that // informs the processor we're in a busy wait, so it can handle the branch more // intelligently and e.g. reduce power to our core or give more resources to the // other hyper-thread on this core. See the following for context: // https://software.intel.com/en-us/articles/benefitting-power-and-performance-sleep-loops #if defined(THREAD_SANITIZER) #include "src/base/platform/platform.h" // TSAN intercepts atomic accesses and uses locking. Since YIELD_PROCESSOR is // used in spinlock loops in conjunction with atomic accesses, such spinlock // loops can exhibit starvation in TSAN. To work around the problem, have // YIELD_PROCESSOR sleep the process for 1ms. #define YIELD_PROCESSOR base::OS::Sleep(base::TimeDelta::FromMilliseconds(1)) #else // !THREAD_SANITIZER #if defined(V8_CC_MSVC) && !defined(__clang__) // MSVC does not support inline assembly via __asm__ and provides compiler // intrinsics instead. Check if there is a usable intrinsic. // // intrin.h is an expensive header, so only include it if we're on a host // architecture that has a usable intrinsic. #if defined(V8_HOST_ARCH_IA32) || defined(V8_HOST_ARCH_X64) #include <intrin.h> #define YIELD_PROCESSOR _mm_pause() #elif defined(V8_HOST_ARCH_ARM64) || \ (defined(V8_HOST_ARCH_ARM) && __ARM_ARCH >= 6) #include <intrin.h> #define YIELD_PROCESSOR __isb(_ARM64_BARRIER_SY) #endif // V8_HOST_ARCH #else // !V8_CC_MSVC #if defined(V8_HOST_ARCH_IA32) || defined(V8_HOST_ARCH_X64) #define YIELD_PROCESSOR __asm__ __volatile__("pause") #elif defined(V8_HOST_ARCH_ARM64) || \ (defined(V8_HOST_ARCH_ARM) && __ARM_ARCH >= 6) #define YIELD_PROCESSOR __asm__ __volatile__("isb" ::: "memory") #elif defined(V8_HOST_ARCH_MIPS64EL) && __mips_isa_rev >= 2 // Don't bother doing using .word here since r2 is the lowest supported mips64 // that Chromium supports. #define YIELD_PROCESSOR __asm__ __volatile__("pause") #elif defined(V8_HOST_ARCH_PPC64) #define YIELD_PROCESSOR __asm__ __volatile__("or 31,31,31") #endif // V8_HOST_ARCH #endif // V8_CC_MSVC #endif // THREAD_SANITIZER #ifndef YIELD_PROCESSOR #define YIELD_PROCESSOR ((void)0) #endif #endif // V8_BASE_PLATFORM_YIELD_PROCESSOR_H_