brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · d41ddf2 Raw
52 lines · cpp
1/*2 * kmp_wait_release.cpp -- Wait/Release implementation3 */4 5//===----------------------------------------------------------------------===//6//7// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.8// See https://llvm.org/LICENSE.txt for license information.9// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception10//11//===----------------------------------------------------------------------===//12 13#include "kmp_wait_release.h"14 15void __kmp_wait_64(kmp_info_t *this_thr, kmp_flag_64<> *flag,16                   int final_spin USE_ITT_BUILD_ARG(void *itt_sync_obj)) {17  if (final_spin)18    __kmp_wait_template<kmp_flag_64<>, TRUE>(19        this_thr, flag USE_ITT_BUILD_ARG(itt_sync_obj));20  else21    __kmp_wait_template<kmp_flag_64<>, FALSE>(22        this_thr, flag USE_ITT_BUILD_ARG(itt_sync_obj));23}24 25void __kmp_release_64(kmp_flag_64<> *flag) { __kmp_release_template(flag); }26 27#if KMP_HAVE_MWAIT || KMP_HAVE_UMWAIT28template <bool C, bool S>29void __kmp_mwait_32(int th_gtid, kmp_flag_32<C, S> *flag) {30  __kmp_mwait_template(th_gtid, flag);31}32template <bool C, bool S>33void __kmp_mwait_64(int th_gtid, kmp_flag_64<C, S> *flag) {34  __kmp_mwait_template(th_gtid, flag);35}36template <bool C, bool S>37void __kmp_atomic_mwait_64(int th_gtid, kmp_atomic_flag_64<C, S> *flag) {38  __kmp_mwait_template(th_gtid, flag);39}40void __kmp_mwait_oncore(int th_gtid, kmp_flag_oncore *flag) {41  __kmp_mwait_template(th_gtid, flag);42}43 44template void __kmp_mwait_32<false, false>(int, kmp_flag_32<false, false> *);45template void __kmp_mwait_64<false, true>(int, kmp_flag_64<false, true> *);46template void __kmp_mwait_64<true, false>(int, kmp_flag_64<true, false> *);47template void48__kmp_atomic_mwait_64<false, true>(int, kmp_atomic_flag_64<false, true> *);49template void50__kmp_atomic_mwait_64<true, false>(int, kmp_atomic_flag_64<true, false> *);51#endif52