123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- Copyright 2005-2013 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.
- */
- // TODO: revise by comparing with mac_ppc.h
- #if !defined(__TBB_machine_H) || defined(__TBB_machine_ibm_aix51_H)
- #error Do not #include this internal file directly; use public TBB headers instead.
- #endif
- #define __TBB_machine_ibm_aix51_H
- #define __TBB_WORDSIZE 8
- #define __TBB_BIG_ENDIAN 1 // assumption based on operating system
- #include <stdint.h>
- #include <unistd.h>
- #include <sched.h>
- extern "C" {
- int32_t __TBB_machine_cas_32 (volatile void* ptr, int32_t value, int32_t comparand);
- int64_t __TBB_machine_cas_64 (volatile void* ptr, int64_t value, int64_t comparand);
- void __TBB_machine_flush ();
- void __TBB_machine_lwsync ();
- void __TBB_machine_isync ();
- }
- // Mapping of old entry point names retained for the sake of backward binary compatibility
- #define __TBB_machine_cmpswp4 __TBB_machine_cas_32
- #define __TBB_machine_cmpswp8 __TBB_machine_cas_64
- #define __TBB_Yield() sched_yield()
- #define __TBB_USE_GENERIC_PART_WORD_CAS 1
- #define __TBB_USE_GENERIC_FETCH_ADD 1
- #define __TBB_USE_GENERIC_FETCH_STORE 1
- #define __TBB_USE_GENERIC_HALF_FENCED_LOAD_STORE 1
- #define __TBB_USE_GENERIC_RELAXED_LOAD_STORE 1
- #define __TBB_USE_GENERIC_SEQUENTIAL_CONSISTENCY_LOAD_STORE 1
- #if __GNUC__
- #define __TBB_control_consistency_helper() __asm__ __volatile__( "isync": : :"memory")
- #define __TBB_acquire_consistency_helper() __asm__ __volatile__("lwsync": : :"memory")
- #define __TBB_release_consistency_helper() __asm__ __volatile__("lwsync": : :"memory")
- #define __TBB_full_memory_fence() __asm__ __volatile__( "sync": : :"memory")
- #else
- // IBM C++ Compiler does not support inline assembly
- // TODO: Since XL 9.0 or earlier GCC syntax is supported. Replace with more
- // lightweight implementation (like in mac_ppc.h)
- #define __TBB_control_consistency_helper() __TBB_machine_isync ()
- #define __TBB_acquire_consistency_helper() __TBB_machine_lwsync ()
- #define __TBB_release_consistency_helper() __TBB_machine_lwsync ()
- #define __TBB_full_memory_fence() __TBB_machine_flush ()
- #endif
|