2010-11-29 20:44:50 +01:00
|
|
|
//===-- llvm/Support/Threading.h - Control multithreading mode --*- C++ -*-===//
|
2009-06-16 19:33:51 +02: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 17:13:01 +02:00
|
|
|
// This file declares helper functions for running LLVM in a multi-threaded
|
|
|
|
// environment.
|
2009-06-16 19:33:51 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 01:45:19 +01:00
|
|
|
#ifndef LLVM_SUPPORT_THREADING_H
|
|
|
|
#define LLVM_SUPPORT_THREADING_H
|
2009-06-16 19:33:51 +02:00
|
|
|
|
2014-06-19 20:18:23 +02:00
|
|
|
namespace llvm {
|
2014-06-27 17:13:01 +02:00
|
|
|
/// Returns true if LLVM is compiled with support for multi-threading, and
|
|
|
|
/// false otherwise.
|
2014-06-11 01:15:43 +02:00
|
|
|
bool llvm_is_multithreaded();
|
2010-11-29 19:16:10 +01:00
|
|
|
|
2012-09-13 14:34:29 +02:00
|
|
|
/// llvm_execute_on_thread - Execute the given \p UserFn on a separate
|
|
|
|
/// thread, passing it the provided \p UserData.
|
2010-11-04 02:26:25 +01: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);
|
2009-06-16 19:33:51 +02:00
|
|
|
}
|
|
|
|
|
2009-06-16 22:23:05 +02:00
|
|
|
#endif
|