2010-11-29 19:44:50 +00:00
|
|
|
//===-- llvm/Support/Threading.h - Control multithreading mode --*- C++ -*-===//
|
2009-06-16 17:33:51 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2014-06-27 15:13:01 +00:00
|
|
|
// This file declares helper functions for running LLVM in a multi-threaded
|
|
|
|
// environment.
|
2009-06-16 17:33:51 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_SUPPORT_THREADING_H
|
|
|
|
#define LLVM_SUPPORT_THREADING_H
|
2009-06-16 17:33:51 +00:00
|
|
|
|
2016-06-02 18:22:12 +00:00
|
|
|
#include "llvm/Config/llvm-config.h" // for LLVM_ON_UNIX
|
2016-06-04 19:57:55 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2016-06-02 18:22:12 +00:00
|
|
|
#include <ciso646> // So we can check the C++ standard lib macros.
|
2016-06-04 19:57:55 +00:00
|
|
|
#include <functional>
|
2016-06-02 18:22:12 +00:00
|
|
|
|
2016-11-02 01:39:01 +00:00
|
|
|
// std::call_once from libc++ is used on all Unix platforms. Other
|
|
|
|
// implementations like libstdc++ are known to have problems on NetBSD,
|
|
|
|
// OpenBSD and PowerPC.
|
|
|
|
#if defined(LLVM_ON_UNIX) && (defined(_LIBCPP_VERSION) || \
|
|
|
|
!(defined(__NetBSD__) || defined(__OpenBSD__) || defined(__ppc__)))
|
2016-06-02 18:22:12 +00:00
|
|
|
#define LLVM_THREADING_USE_STD_CALL_ONCE 1
|
|
|
|
#else
|
|
|
|
#define LLVM_THREADING_USE_STD_CALL_ONCE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LLVM_THREADING_USE_STD_CALL_ONCE
|
|
|
|
#include <mutex>
|
|
|
|
#else
|
|
|
|
#include "llvm/Support/Atomic.h"
|
|
|
|
#endif
|
|
|
|
|
2014-06-19 18:18:23 +00:00
|
|
|
namespace llvm {
|
2014-06-27 15:13:01 +00:00
|
|
|
/// Returns true if LLVM is compiled with support for multi-threading, and
|
|
|
|
/// false otherwise.
|
2014-06-10 23:15:43 +00:00
|
|
|
bool llvm_is_multithreaded();
|
2010-11-29 18:16:10 +00:00
|
|
|
|
2012-09-13 12:34:29 +00:00
|
|
|
/// llvm_execute_on_thread - Execute the given \p UserFn on a separate
|
2015-08-10 04:22:09 +00:00
|
|
|
/// thread, passing it the provided \p UserData and waits for thread
|
2014-11-24 14:51:41 +00:00
|
|
|
/// completion.
|
2010-11-04 01:26:25 +00:00
|
|
|
///
|
|
|
|
/// This function does not guarantee that the code will actually be executed
|
|
|
|
/// on a separate thread or honoring the requested stack size, but tries to do
|
|
|
|
/// so where system support is available.
|
|
|
|
///
|
|
|
|
/// \param UserFn - The callback to execute.
|
|
|
|
/// \param UserData - An argument to pass to the callback function.
|
|
|
|
/// \param RequestedStackSize - If non-zero, a requested size (in bytes) for
|
|
|
|
/// the thread stack.
|
|
|
|
void llvm_execute_on_thread(void (*UserFn)(void*), void *UserData,
|
|
|
|
unsigned RequestedStackSize = 0);
|
2016-06-02 18:22:12 +00:00
|
|
|
|
|
|
|
#if LLVM_THREADING_USE_STD_CALL_ONCE
|
|
|
|
|
|
|
|
typedef std::once_flag once_flag;
|
|
|
|
|
|
|
|
/// This macro is the only way you should define your once flag for LLVM's
|
|
|
|
/// call_once.
|
|
|
|
#define LLVM_DEFINE_ONCE_FLAG(flag) static once_flag flag
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
enum InitStatus { Uninitialized = 0, Wait = 1, Done = 2 };
|
|
|
|
typedef volatile sys::cas_flag once_flag;
|
|
|
|
|
|
|
|
/// This macro is the only way you should define your once flag for LLVM's
|
|
|
|
/// call_once.
|
|
|
|
#define LLVM_DEFINE_ONCE_FLAG(flag) static once_flag flag = Uninitialized
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/// \brief Execute the function specified as a parameter once.
|
|
|
|
///
|
|
|
|
/// Typical usage:
|
|
|
|
/// \code
|
|
|
|
/// void foo() {...};
|
|
|
|
/// ...
|
|
|
|
/// LLVM_DEFINE_ONCE_FLAG(flag);
|
|
|
|
/// call_once(flag, foo);
|
|
|
|
/// \endcode
|
|
|
|
///
|
|
|
|
/// \param flag Flag used for tracking whether or not this has run.
|
2016-06-05 00:15:44 +00:00
|
|
|
/// \param F Function to call once.
|
2016-06-04 19:57:55 +00:00
|
|
|
template <typename Function, typename... Args>
|
|
|
|
void call_once(once_flag &flag, Function &&F, Args &&... ArgList) {
|
|
|
|
#if LLVM_THREADING_USE_STD_CALL_ONCE
|
|
|
|
std::call_once(flag, std::forward<Function>(F),
|
|
|
|
std::forward<Args>(ArgList)...);
|
|
|
|
#else
|
|
|
|
// For other platforms we use a generic (if brittle) version based on our
|
|
|
|
// atomics.
|
|
|
|
sys::cas_flag old_val = sys::CompareAndSwap(&flag, Wait, Uninitialized);
|
|
|
|
if (old_val == Uninitialized) {
|
|
|
|
std::forward<Function>(F)(std::forward<Args>(ArgList)...);
|
|
|
|
sys::MemoryFence();
|
|
|
|
TsanIgnoreWritesBegin();
|
|
|
|
TsanHappensBefore(&flag);
|
|
|
|
flag = Done;
|
|
|
|
TsanIgnoreWritesEnd();
|
|
|
|
} else {
|
|
|
|
// Wait until any thread doing the call has finished.
|
|
|
|
sys::cas_flag tmp = flag;
|
|
|
|
sys::MemoryFence();
|
|
|
|
while (tmp != Done) {
|
|
|
|
tmp = flag;
|
|
|
|
sys::MemoryFence();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TsanHappensAfter(&flag);
|
|
|
|
#endif
|
|
|
|
}
|
2016-10-14 00:13:59 +00:00
|
|
|
|
2016-10-17 14:56:53 +00:00
|
|
|
/// Get the amount of currency to use for tasks requiring significant
|
|
|
|
/// memory or other resources. Currently based on physical cores, if
|
|
|
|
/// available for the host system, otherwise falls back to
|
|
|
|
/// thread::hardware_concurrency().
|
2016-10-14 21:32:35 +00:00
|
|
|
/// Returns 1 when LLVM is configured with LLVM_ENABLE_THREADS=OFF
|
2016-10-17 14:56:53 +00:00
|
|
|
unsigned heavyweight_hardware_concurrency();
|
2015-06-23 09:49:53 +00:00
|
|
|
}
|
2009-06-16 17:33:51 +00:00
|
|
|
|
2009-06-16 20:23:05 +00:00
|
|
|
#endif
|