2010-11-29 20:44:50 +01:00
|
|
|
//= llvm/Support/Win32/ThreadLocal.inc - Win32 Thread Local Data -*- C++ -*-===//
|
2010-11-29 19:16:10 +01:00
|
|
|
//
|
2009-06-25 23:58:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-11-29 19:16:10 +01:00
|
|
|
//
|
2009-06-25 23:58:01 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Win32 specific (non-pthread) ThreadLocal class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only generic Win32 code that
|
|
|
|
//=== is guaranteed to work on *all* Win32 variants.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "Windows.h"
|
|
|
|
#include "llvm/Support/ThreadLocal.h"
|
2009-06-25 23:58:01 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
|
|
|
ThreadLocalImpl::ThreadLocalImpl() {
|
|
|
|
DWORD* tls = new DWORD;
|
|
|
|
*tls = TlsAlloc();
|
|
|
|
assert(*tls != TLS_OUT_OF_INDEXES);
|
|
|
|
data = tls;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadLocalImpl::~ThreadLocalImpl() {
|
|
|
|
DWORD* tls = static_cast<DWORD*>(data);
|
|
|
|
TlsFree(*tls);
|
|
|
|
delete tls;
|
|
|
|
}
|
|
|
|
|
2009-06-26 01:31:18 +02:00
|
|
|
const void* ThreadLocalImpl::getInstance() {
|
2009-06-25 23:58:01 +02:00
|
|
|
DWORD* tls = static_cast<DWORD*>(data);
|
|
|
|
return TlsGetValue(*tls);
|
|
|
|
}
|
|
|
|
|
2009-06-26 01:31:18 +02:00
|
|
|
void ThreadLocalImpl::setInstance(const void* d){
|
2009-06-25 23:58:01 +02:00
|
|
|
DWORD* tls = static_cast<DWORD*>(data);
|
2010-10-25 15:10:03 +02:00
|
|
|
int errorcode = TlsSetValue(*tls, const_cast<void*>(d));
|
2009-06-30 16:12:28 +02:00
|
|
|
assert(errorcode != 0);
|
2010-10-25 15:10:03 +02:00
|
|
|
(void)errorcode;
|
2009-06-25 23:58:01 +02:00
|
|
|
}
|
|
|
|
|
2010-07-29 00:49:43 +02:00
|
|
|
void ThreadLocalImpl::removeInstance() {
|
|
|
|
setInstance(0);
|
|
|
|
}
|
|
|
|
|
2009-06-25 23:58:01 +02:00
|
|
|
}
|