mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
allocator: Improve MIPS coverage of spinlocks
This commit is contained in:
parent
9a54dd5bc6
commit
69f1e99f69
@ -34,12 +34,12 @@
|
|||||||
#define YIELD_PROCESSOR __asm__ __volatile__("pause")
|
#define YIELD_PROCESSOR __asm__ __volatile__("pause")
|
||||||
#elif (defined(ARCH_CPU_ARMEL) && __ARM_ARCH >= 6) || defined(ARCH_CPU_ARM64)
|
#elif (defined(ARCH_CPU_ARMEL) && __ARM_ARCH >= 6) || defined(ARCH_CPU_ARM64)
|
||||||
#define YIELD_PROCESSOR __asm__ __volatile__("yield")
|
#define YIELD_PROCESSOR __asm__ __volatile__("yield")
|
||||||
#elif defined(ARCH_CPU_MIPSEL)
|
#elif defined(ARCH_CPU_MIPSEL) && __mips_isa_rev < 2
|
||||||
// The MIPS32 docs state that the PAUSE instruction is a no-op on older
|
// The MIPS32 docs state that the PAUSE instruction is a no-op on older
|
||||||
// architectures (first added in MIPS32r2). To avoid assembler errors when
|
// architectures (first added in MIPS32r2). To avoid assembler errors when
|
||||||
// targeting pre-r2, we must encode the instruction manually.
|
// targeting pre-r2, we must encode the instruction manually.
|
||||||
#define YIELD_PROCESSOR __asm__ __volatile__(".word 0x00000140")
|
#define YIELD_PROCESSOR __asm__ __volatile__(".word 0x00000140")
|
||||||
#elif defined(ARCH_CPU_MIPS64EL) && __mips_isa_rev >= 2
|
#elif defined(ARCH_CPU_MIPS_FAMILY) && __mips_isa_rev >= 2
|
||||||
// Don't bother doing using .word here since r2 is the lowest supported mips64
|
// Don't bother doing using .word here since r2 is the lowest supported mips64
|
||||||
// that Chromium supports.
|
// that Chromium supports.
|
||||||
#define YIELD_PROCESSOR __asm__ __volatile__("pause")
|
#define YIELD_PROCESSOR __asm__ __volatile__("pause")
|
||||||
|
Loading…
Reference in New Issue
Block a user