Home ⌂Doc Index ◂Up ▴
Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
atomic_support.c
Go to the documentation of this file.
1 /*
2  Copyright (c) 2005-2020 Intel Corporation
3 
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7 
8  http://www.apache.org/licenses/LICENSE-2.0
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 */
16 
17 #include <stdint.h>
18 #include <sys/atomic_op.h>
19 
20 /* This file must be compiled with gcc. The IBM compiler doesn't seem to
21  support inline assembly statements (October 2007). */
22 
23 #ifdef __GNUC__
24 
25 int32_t __TBB_machine_cas_32 (volatile void* ptr, int32_t value, int32_t comparand) {
26  __asm__ __volatile__ ("sync\n"); /* memory release operation */
27  compare_and_swap ((atomic_p) ptr, &comparand, value);
28  __asm__ __volatile__ ("isync\n"); /* memory acquire operation */
29  return comparand;
30 }
31 
32 int64_t __TBB_machine_cas_64 (volatile void* ptr, int64_t value, int64_t comparand) {
33  __asm__ __volatile__ ("sync\n"); /* memory release operation */
34  compare_and_swaplp ((atomic_l) ptr, &comparand, value);
35  __asm__ __volatile__ ("isync\n"); /* memory acquire operation */
36  return comparand;
37 }
38 
39 void __TBB_machine_flush () {
40  __asm__ __volatile__ ("sync\n");
41 }
42 
43 void __TBB_machine_lwsync () {
44  __asm__ __volatile__ ("lwsync\n");
45 }
46 
47 void __TBB_machine_isync () {
48  __asm__ __volatile__ ("isync\n");
49 }
50 
51 #endif /* __GNUC__ */
void __TBB_machine_flush()
int32_t __TBB_machine_cas_32(volatile void *ptr, int32_t value, int32_t comparand)
void __TBB_machine_isync()
int64_t __TBB_machine_cas_64(volatile void *ptr, int64_t value, int64_t comparand)
void __TBB_machine_lwsync()
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long value

Copyright © 2005-2020 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.