📄 linux_ia32.h
字号:
/* Copyright 2005-2007 Intel Corporation. All Rights Reserved. This file is part of Threading Building Blocks. Threading Building Blocks is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Threading Building Blocks is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Threading Building Blocks; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License.*/#ifndef __TBB_machine_H#error Do not include this file directly; include tbb_machine.h instead#endif#include <stdint.h>#include <unistd.h>#include <sched.h>#define __TBB_WORDSIZE 4#define __TBB_BIG_ENDIAN 0#define __MACHINE_DECL_ATOMICS(S,T,X) \static inline T __TBB_machine_cmpswp##S (volatile void *ptr, T value, T comparand ) \{ \ T result; \ \ __asm__ __volatile__("lock\ncmpxchg" X " %2,%1" \ : "=a"(result), "=m"(*(T *)ptr) \ : "q"(value), "0"(comparand) \ : "memory"); \ return result; \} \ \static inline T __TBB_machine_fetchadd##S(volatile void *ptr, T addend) \{ \ T result; \ __asm__ __volatile__("lock\nxadd" X " %0,%1" \ : "=r"(result), "=m"(*(T *)ptr) \ : "0"(addend) \ : "memory"); \ return result; \} \ \static inline T __TBB_machine_fetchstore##S(volatile void *ptr, T value) \{ \ T result; \ __asm__ __volatile__("lock\nxchg" X " %0,%1" \ : "=r"(result), "=m"(*(T *)ptr) \ : "0"(value) \ : "memory"); \ return result; \} \ __MACHINE_DECL_ATOMICS(1,int8_t,"")__MACHINE_DECL_ATOMICS(2,int16_t,"")__MACHINE_DECL_ATOMICS(4,int32_t,"l")static int64_t __TBB_machine_cmpswp8 (volatile void *ptr, int64_t value, int64_t comparand ){ const int32_t comparand_lo = (int32_t)comparand; const int32_t comparand_hi = *(int32_t*)((intptr_t)&comparand+sizeof(int32_t)); int64_t result; // EBX register saved for compliancy with position-independent code (PIC) rules on IA32 __asm__ __volatile__ ( "pushl %%ebx\n\t" "movl (%%ecx),%%ebx\n\t" "movl 4(%%ecx),%%ecx\n\t" "lock\ncmpxchg8b (%2)\n\t" "popl %%ebx" : "=A"(result), "=m"(*(int64_t *)ptr) : "S"(ptr), "a"(comparand_lo), "d"(comparand_hi), "c"(&value) : "memory", "esp"); return result;}static inline int32_t __TBB_machine_lg( uint32_t x ) { int32_t j; __asm__ ("bsr %1,%0" : "=r"(j) : "r"(x)); return j;}static inline void __TBB_machine_or( volatile void *ptr, uint32_t addend ) { __asm__ __volatile__("lock\norl %1,%0" : "=m"(*(uint32_t *)ptr) : "r"(addend) : "memory");}static inline void __TBB_machine_pause( int32_t delay ) { for (int32_t i = 0; i < delay; i++) { __asm__ __volatile__("pause;"); } return;} static inline int64_t __TBB_machine_load8 (const volatile void *ptr) { int64_t result; __asm__ __volatile__ ( "fildq %1\n\t" "fistpq %0" : "=m"(result) : "m"(*(uint64_t *)ptr), "m"(result) : "memory" ); return result;}static inline void __TBB_machine_store8 (volatile void *ptr, int64_t value) { __asm__ __volatile__ ( "fildq %1\n\t" "fistpq (%2)" : "=m"(*(int64_t *)ptr) : "m"(value), "r"(ptr) : "memory" );}template <typename T, size_t S>struct __TBB_machine_load_store { static inline T load_with_acquire(const volatile T& location) { T to_return = location; __asm__ __volatile__("" : : : "memory" ); // Compiler fence to keep operations from migrating upwards return to_return; } static inline void store_with_release(volatile T &location, T value) { __asm__ __volatile__("" : : : "memory" ); // Compiler fence to keep operations from migrating upwards location = value; }};template <typename T>struct __TBB_machine_load_store<T,8> { static inline T load_with_acquire(const volatile T& location) { T to_return = __TBB_machine_load8((volatile void *)&location); __asm__ __volatile__("" : : : "memory" ); // Compiler fence to keep operations from migrating upwards return to_return; } static inline void store_with_release(volatile T &location, T value) { __asm__ __volatile__("" : : : "memory" ); // Compiler fence to keep operations from migrating downwards __TBB_machine_store8((volatile void *)&location,(int64_t)value); }};template<typename T>inline T __TBB_machine_load_with_acquire(const volatile T &location) { return __TBB_machine_load_store<T,sizeof(T)>::load_with_acquire(location);}template<typename T, typename V>inline void __TBB_machine_store_with_release(volatile T &location, V value) { __TBB_machine_load_store<T,sizeof(T)>::store_with_release(location,value);}#define __TBB_load_with_acquire(L) __TBB_machine_load_with_acquire((L))#define __TBB_store_with_release(L,V) __TBB_machine_store_with_release((L),(V))// Machine specific atomic operations#define __TBB_CompareAndSwap1(P,V,C) __TBB_machine_cmpswp1(P,V,C)#define __TBB_CompareAndSwap2(P,V,C) __TBB_machine_cmpswp2(P,V,C)#define __TBB_CompareAndSwap4(P,V,C) __TBB_machine_cmpswp4(P,V,C)#define __TBB_CompareAndSwap8(P,V,C) __TBB_machine_cmpswp8(P,V,C)#define __TBB_CompareAndSwapW(P,V,C) __TBB_machine_cmpswp4(P,V,C)#define __TBB_FetchAndAdd1(P,V) __TBB_machine_fetchadd1(P,V)#define __TBB_FetchAndAdd2(P,V) __TBB_machine_fetchadd2(P,V)#define __TBB_FetchAndAdd4(P,V) __TBB_machine_fetchadd4(P,V)#define __TBB_FetchAndAddW(P,V) __TBB_machine_fetchadd4(P,V)#define __TBB_FetchAndStore1(P,V) __TBB_machine_fetchstore1(P,V)#define __TBB_FetchAndStore2(P,V) __TBB_machine_fetchstore2(P,V)#define __TBB_FetchAndStore4(P,V) __TBB_machine_fetchstore4(P,V)#define __TBB_FetchAndStoreW(P,V) __TBB_machine_fetchstore4(P,V)#define __TBB_Store8(P,V) __TBB_machine_store8(P,V)#define __TBB_Load8(P) __TBB_machine_load8(P)#define __TBB_AtomicOR(P,V) __TBB_machine_or(P,V)// Those we chose not to implement (they will be implemented generically using CMPSWP8)#undef __TBB_FetchAndAdd8#undef __TBB_FetchAndStore8// Definition of other functions#define __TBB_Yield() sched_yield()#define __TBB_Pause(V) __TBB_machine_pause(V)#define __TBB_Log2(V) __TBB_machine_lg(V)// Special atomic functions#define __TBB_FetchAndAddWrelease(P,V) __TBB_FetchAndAddW(P,V)#define __TBB_FetchAndIncrementWacquire(P) __TBB_FetchAndAddW(P,1)#define __TBB_FetchAndDecrementWrelease(P) __TBB_FetchAndAddW(P,-1)// Definition of Lock functions#undef __TBB_TryLockByte#undef __TBB_LockByte#define __TBB_cpuidstatic inline void __TBB_x86_cpuid( int32_t buffer[4], int32_t mode ) { // EBX register saved for compliancy with position-independent code (PIC) rules on IA32 __asm__ ("pushl %%ebx\n\t" "cpuid\n\t" "movl %%ebx,%1\n\t" "popl %%ebx" : "=a"(buffer[0]), "=S"(buffer[1]), "=c"(buffer[2]), "=d"(buffer[3]) : "0"(mode) : "memory" );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -