4 #//===----------------------------------------------------------------------===//
6 #// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
7 #// See https://llvm.org/LICENSE.txt for license information.
8 #// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 #//===----------------------------------------------------------------------===//
13 # This is version script for OMP RTL shared library (libomp*.so)
17 global: # Exported symbols.
22 omp_*; # Standard OpenMP functions.
23 OMP_*; # Standard OpenMP symbols.
28 ompt_start_tool; # OMPT start interface
29 ompt_libomp_connect; # OMPT libomptarget interface
31 ompc_*; # omp.h renames some standard functions to ompc_*.
32 kmp_*; # Intel extensions.
33 kmpc_*; # Intel extensions.
34 __kmpc_*; # Functions called by compiler-generated code.
35 GOMP_*; # GNU C compatibility functions.
37 _You_must_link_with_*; # Mutual detection/MS compatibility symbols.
44 __kmp_omp_debug_struct_info;
45 #endif /* USE_DEBUGGER */
48 # Internal functions exported for testing purposes.
50 __kmp_get_reduce_method;
61 # The following entry points are added so that the backtraces from
62 # the tools contain meaningful names for all the functions that might
63 # appear in a backtrace of a thread which is blocked in the RTL.
64 __kmp_acquire_drdpa_lock;
65 __kmp_acquire_nested_drdpa_lock;
66 __kmp_acquire_nested_queuing_lock;
67 __kmp_acquire_nested_tas_lock;
68 __kmp_acquire_nested_ticket_lock;
69 __kmp_acquire_queuing_lock;
70 __kmp_acquire_tas_lock;
71 __kmp_acquire_ticket_lock;
73 __kmp_invoke_microtask;
82 # ittnotify symbols to be used by debugger
83 __kmp_itt_fini_ittlib;
84 __kmp_itt_init_ittlib;
85 #endif /* USE_ITT_BUILD */
87 local: # Non-exported symbols.
89 *; # All other symbols are not exported.
93 # sets up GCC OMP_ version dependency chain
109 # sets up GCC GOMP_ version dependency chain