2009-06-16 20:19:28 +00:00
|
|
|
//===- RWMutex.cpp - Reader/Writer Mutual Exclusion Lock --------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the llvm::sys::RWMutex class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Config/config.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/RWMutex.h"
|
2009-06-20 00:32:27 +00:00
|
|
|
#include <cstring>
|
2009-06-16 20:19:28 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
|
|
|
//=== independent code.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-11-28 00:48:58 +00:00
|
|
|
#if !defined(LLVM_ENABLE_THREADS) || LLVM_ENABLE_THREADS == 0
|
2009-06-16 20:19:28 +00:00
|
|
|
// Define all methods as no-ops if threading is explicitly disabled
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::RWMutexImpl() { }
|
|
|
|
RWMutexImpl::~RWMutexImpl() { }
|
|
|
|
bool RWMutexImpl::reader_acquire() { return true; }
|
|
|
|
bool RWMutexImpl::reader_release() { return true; }
|
|
|
|
bool RWMutexImpl::writer_acquire() { return true; }
|
|
|
|
bool RWMutexImpl::writer_release() { return true; }
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
#if defined(HAVE_PTHREAD_H) && defined(HAVE_PTHREAD_RWLOCK_INIT)
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
|
|
|
// Construct a RWMutex using pthread calls
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::RWMutexImpl()
|
2014-04-07 04:17:22 +00:00
|
|
|
: data_(nullptr)
|
2009-06-16 20:19:28 +00:00
|
|
|
{
|
2012-01-15 01:09:13 +00:00
|
|
|
// Declare the pthread_rwlock data structures
|
|
|
|
pthread_rwlock_t* rwlock =
|
|
|
|
static_cast<pthread_rwlock_t*>(malloc(sizeof(pthread_rwlock_t)));
|
2009-06-20 00:32:27 +00:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
2012-01-15 01:09:13 +00:00
|
|
|
// Workaround a bug/mis-feature in Darwin's pthread_rwlock_init.
|
|
|
|
bzero(rwlock, sizeof(pthread_rwlock_t));
|
2009-06-20 00:32:27 +00:00
|
|
|
#endif
|
|
|
|
|
2012-01-15 01:09:13 +00:00
|
|
|
// Initialize the rwlock
|
2014-04-07 04:17:22 +00:00
|
|
|
int errorcode = pthread_rwlock_init(rwlock, nullptr);
|
2012-01-15 01:09:13 +00:00
|
|
|
(void)errorcode;
|
|
|
|
assert(errorcode == 0);
|
2009-06-16 20:19:28 +00:00
|
|
|
|
2012-01-15 01:09:13 +00:00
|
|
|
// Assign the data member
|
|
|
|
data_ = rwlock;
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Destruct a RWMutex
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::~RWMutexImpl()
|
2009-06-16 20:19:28 +00:00
|
|
|
{
|
2012-01-15 01:09:13 +00:00
|
|
|
pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_);
|
|
|
|
assert(rwlock != 0);
|
|
|
|
pthread_rwlock_destroy(rwlock);
|
|
|
|
free(rwlock);
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::reader_acquire()
|
2009-06-16 20:19:28 +00:00
|
|
|
{
|
2012-01-15 01:09:13 +00:00
|
|
|
pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_);
|
|
|
|
assert(rwlock != 0);
|
|
|
|
|
|
|
|
int errorcode = pthread_rwlock_rdlock(rwlock);
|
|
|
|
return errorcode == 0;
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::reader_release()
|
2009-06-16 20:19:28 +00:00
|
|
|
{
|
2012-01-15 01:09:13 +00:00
|
|
|
pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_);
|
|
|
|
assert(rwlock != 0);
|
|
|
|
|
|
|
|
int errorcode = pthread_rwlock_unlock(rwlock);
|
|
|
|
return errorcode == 0;
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::writer_acquire()
|
2009-06-16 20:19:28 +00:00
|
|
|
{
|
2012-01-15 01:09:13 +00:00
|
|
|
pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_);
|
|
|
|
assert(rwlock != 0);
|
|
|
|
|
|
|
|
int errorcode = pthread_rwlock_wrlock(rwlock);
|
|
|
|
return errorcode == 0;
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-06-18 18:26:15 +00:00
|
|
|
RWMutexImpl::writer_release()
|
2009-06-16 20:19:28 +00:00
|
|
|
{
|
2012-01-15 01:09:13 +00:00
|
|
|
pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_);
|
|
|
|
assert(rwlock != 0);
|
|
|
|
|
|
|
|
int errorcode = pthread_rwlock_unlock(rwlock);
|
|
|
|
return errorcode == 0;
|
2009-06-16 20:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(LLVM_ON_UNIX)
|
|
|
|
#include "Unix/RWMutex.inc"
|
|
|
|
#elif defined( LLVM_ON_WIN32)
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "Windows/RWMutex.inc"
|
2009-06-16 20:19:28 +00:00
|
|
|
#else
|
2011-10-11 20:02:52 +00:00
|
|
|
#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in Support/Mutex.cpp
|
2009-06-16 20:19:28 +00:00
|
|
|
#endif
|
|
|
|
#endif
|