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
|
|
|
|
2014-10-13 22:37:25 +00:00
|
|
|
#if !defined(__MINGW__)
|
|
|
|
#include <mutex>
|
|
|
|
#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
|
|
|
|
/// thread, passing it the provided \p UserData.
|
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);
|
2014-10-13 22:37:25 +00:00
|
|
|
|
2014-10-13 23:03:45 +00:00
|
|
|
/// \brief Execute the function specified as a template parameter once.
|
|
|
|
///
|
|
|
|
/// Calls \p UserFn once ever. The call uniqueness is based on the address of
|
|
|
|
/// the function passed in via the template arguement. This means no matter how
|
|
|
|
/// many times you call llvm_call_once<foo>() in the same or different
|
|
|
|
/// locations, foo will only be called once.
|
|
|
|
///
|
|
|
|
/// Typical usage:
|
|
|
|
/// \code
|
|
|
|
/// void foo() {...};
|
|
|
|
/// ...
|
|
|
|
/// llvm_call_once<foo>();
|
|
|
|
/// \endcode
|
|
|
|
///
|
2014-10-14 09:34:16 +00:00
|
|
|
/// \tparam UserFn Function to call once.
|
2014-10-13 22:37:25 +00:00
|
|
|
template <void (*UserFn)(void)> void llvm_call_once() {
|
|
|
|
#if !defined(__MINGW__)
|
|
|
|
static std::once_flag flag;
|
|
|
|
std::call_once(flag, UserFn);
|
|
|
|
#else
|
|
|
|
struct InitOnceWrapper {
|
|
|
|
InitOnceWrapper() { UserFn(); }
|
|
|
|
};
|
|
|
|
static InitOnceWrapper InitOnceVar;
|
|
|
|
#endif
|
|
|
|
}
|
2009-06-16 17:33:51 +00:00
|
|
|
}
|
|
|
|
|
2009-06-16 20:23:05 +00:00
|
|
|
#endif
|