blob: 0b7c5b57459730d23ea9800e18a5dfeb53b74e78 [file] [log] [blame]
Reid Spencerb2164e52005-07-12 15:37:43 +00001//===- Mutex.cpp - Mutual Exclusion Lock ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencerb2164e52005-07-12 15:37:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the llvm::sys::Mutex class.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencerb2164e52005-07-12 15:37:43 +000014#include "llvm/Config/config.h"
Reid Spencer0a262ba2005-08-24 10:07:20 +000015#include "llvm/System/Mutex.h"
Reid Spencer7107c3b2006-07-26 16:18:00 +000016#include "llvm/System/IncludeFile.h"
Reid Spencerb2164e52005-07-12 15:37:43 +000017
Reid Spencerb2164e52005-07-12 15:37:43 +000018//===----------------------------------------------------------------------===//
19//=== WARNING: Implementation here must contain only TRULY operating system
20//=== independent code.
21//===----------------------------------------------------------------------===//
22
Reid Spencer0a262ba2005-08-24 10:07:20 +000023#if !defined(ENABLE_THREADS) || ENABLE_THREADS == 0
24// Define all methods as no-ops if threading is explicitly disabled
Jeff Cohen6d235222005-07-13 02:15:18 +000025namespace llvm {
26using namespace sys;
Reid Spencer0a262ba2005-08-24 10:07:20 +000027Mutex::Mutex( bool recursive) { }
28Mutex::~Mutex() { }
29bool Mutex::acquire() { return true; }
30bool Mutex::release() { return true; }
31bool Mutex::tryacquire() { return true; }
32}
33#else
34
35#if defined(HAVE_PTHREAD_H) && defined(HAVE_PTHREAD_MUTEX_LOCK)
Jeff Cohen6d235222005-07-13 02:15:18 +000036
Reid Spencerb2164e52005-07-12 15:37:43 +000037#include <cassert>
38#include <pthread.h>
39#include <stdlib.h>
40
Reid Spencer0a262ba2005-08-24 10:07:20 +000041namespace llvm {
42using namespace sys;
43
44
Reid Spencerb2164e52005-07-12 15:37:43 +000045// This variable is useful for situations where the pthread library has been
Jeff Cohen00b168892005-07-27 06:12:32 +000046// compiled with weak linkage for its interface symbols. This allows the
Reid Spencerb2164e52005-07-12 15:37:43 +000047// threading support to be turned off by simply not linking against -lpthread.
Jeff Cohen00b168892005-07-27 06:12:32 +000048// In that situation, the value of pthread_mutex_init will be 0 and
Reid Spencerb2164e52005-07-12 15:37:43 +000049// consequently pthread_enabled will be false. In such situations, all the
50// pthread operations become no-ops and the functions all return false. If
51// pthread_mutex_init does have an address, then mutex support is enabled.
52// Note: all LLVM tools will link against -lpthread if its available since it
53// is configured into the LIBS variable.
54// Note: this line of code generates a warning if pthread_mutex_init is not
Misha Brukman15d89cb2005-08-02 16:04:59 +000055// declared with weak linkage. It's safe to ignore the warning.
Chris Lattnera5370172006-08-28 00:42:29 +000056static const bool pthread_enabled = true;
Reid Spencerb2164e52005-07-12 15:37:43 +000057
58// Construct a Mutex using pthread calls
59Mutex::Mutex( bool recursive)
60 : data_(0)
61{
62 if (pthread_enabled)
63 {
64 // Declare the pthread_mutex data structures
Jeff Cohen00b168892005-07-27 06:12:32 +000065 pthread_mutex_t* mutex =
Reid Spencerb2164e52005-07-12 15:37:43 +000066 static_cast<pthread_mutex_t*>(malloc(sizeof(pthread_mutex_t)));
67 pthread_mutexattr_t attr;
68
69 // Initialize the mutex attributes
70 int errorcode = pthread_mutexattr_init(&attr);
71 assert(errorcode == 0);
72
73 // Initialize the mutex as a recursive mutex, if requested, or normal
74 // otherwise.
75 int kind = ( recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL );
76 errorcode = pthread_mutexattr_settype(&attr, kind);
77 assert(errorcode == 0);
78
Reid Spencer1c7a2422007-01-20 20:44:38 +000079#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
Reid Spencerb2164e52005-07-12 15:37:43 +000080 // Make it a process local mutex
81 errorcode = pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE);
Reid Spencer24998412005-07-13 03:02:06 +000082#endif
Reid Spencerb2164e52005-07-12 15:37:43 +000083
84 // Initialize the mutex
85 errorcode = pthread_mutex_init(mutex, &attr);
86 assert(errorcode == 0);
87
88 // Destroy the attributes
89 errorcode = pthread_mutexattr_destroy(&attr);
90 assert(errorcode == 0);
91
92 // Assign the data member
93 data_ = mutex;
94 }
95}
96
97// Destruct a Mutex
98Mutex::~Mutex()
99{
100 if (pthread_enabled)
101 {
102 pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
103 assert(mutex != 0);
Reid Spencer2b86b0e2006-11-02 07:59:59 +0000104 pthread_mutex_destroy(mutex);
Reid Spencerb2164e52005-07-12 15:37:43 +0000105 assert(mutex != 0);
106 }
107}
108
Jeff Cohen00b168892005-07-27 06:12:32 +0000109bool
Reid Spencerb2164e52005-07-12 15:37:43 +0000110Mutex::acquire()
111{
Jeff Cohen00b168892005-07-27 06:12:32 +0000112 if (pthread_enabled)
Reid Spencerb2164e52005-07-12 15:37:43 +0000113 {
114 pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
115 assert(mutex != 0);
116
117 int errorcode = pthread_mutex_lock(mutex);
118 return errorcode == 0;
119 }
120 return false;
121}
122
Jeff Cohen00b168892005-07-27 06:12:32 +0000123bool
Reid Spencerb2164e52005-07-12 15:37:43 +0000124Mutex::release()
125{
126 if (pthread_enabled)
127 {
128 pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
129 assert(mutex != 0);
130
131 int errorcode = pthread_mutex_unlock(mutex);
132 return errorcode == 0;
133 }
134 return false;
135}
136
Jeff Cohen00b168892005-07-27 06:12:32 +0000137bool
Reid Spencerb2164e52005-07-12 15:37:43 +0000138Mutex::tryacquire()
139{
140 if (pthread_enabled)
141 {
142 pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
143 assert(mutex != 0);
144
145 int errorcode = pthread_mutex_trylock(mutex);
146 return errorcode == 0;
147 }
148 return false;
149}
150
151}
Jeff Cohen6d235222005-07-13 02:15:18 +0000152
Reid Spencerb2164e52005-07-12 15:37:43 +0000153#elif defined(LLVM_ON_UNIX)
154#include "Unix/Mutex.inc"
155#elif defined( LLVM_ON_WIN32)
156#include "Win32/Mutex.inc"
157#else
158#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in System/Mutex.cpp
159#endif
Reid Spencer0a262ba2005-08-24 10:07:20 +0000160#endif
Reid Spencer7107c3b2006-07-26 16:18:00 +0000161