2010-11-30 03:44:50 +08:00
|
|
|
//= llvm/Support/Win32/ThreadLocal.inc - Win32 Thread Local Data -*- C++ -*-===//
|
2010-11-30 02:16:10 +08:00
|
|
|
//
|
2009-06-26 05:58:01 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-11-30 02:16:10 +08:00
|
|
|
//
|
2009-06-26 05:58:01 +08: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.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-02-13 05:26:20 +08:00
|
|
|
#include "WindowsSupport.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/ThreadLocal.h"
|
2009-06-26 05:58:01 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
2012-06-12 09:06:16 +08:00
|
|
|
ThreadLocalImpl::ThreadLocalImpl() : data() {
|
2014-07-15 06:46:45 +08:00
|
|
|
static_assert(sizeof(DWORD) <= sizeof(data), "size too big");
|
2012-06-12 08:21:31 +08:00
|
|
|
DWORD* tls = reinterpret_cast<DWORD*>(&data);
|
2009-06-26 05:58:01 +08:00
|
|
|
*tls = TlsAlloc();
|
|
|
|
assert(*tls != TLS_OUT_OF_INDEXES);
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadLocalImpl::~ThreadLocalImpl() {
|
2012-06-12 08:21:31 +08:00
|
|
|
DWORD* tls = reinterpret_cast<DWORD*>(&data);
|
2009-06-26 05:58:01 +08:00
|
|
|
TlsFree(*tls);
|
|
|
|
}
|
|
|
|
|
2009-06-26 07:31:18 +08:00
|
|
|
const void* ThreadLocalImpl::getInstance() {
|
2012-06-12 08:21:31 +08:00
|
|
|
DWORD* tls = reinterpret_cast<DWORD*>(&data);
|
2009-06-26 05:58:01 +08:00
|
|
|
return TlsGetValue(*tls);
|
|
|
|
}
|
|
|
|
|
2009-06-26 07:31:18 +08:00
|
|
|
void ThreadLocalImpl::setInstance(const void* d){
|
2012-06-12 08:21:31 +08:00
|
|
|
DWORD* tls = reinterpret_cast<DWORD*>(&data);
|
2010-10-25 21:10:03 +08:00
|
|
|
int errorcode = TlsSetValue(*tls, const_cast<void*>(d));
|
2009-06-30 22:12:28 +08:00
|
|
|
assert(errorcode != 0);
|
2010-10-25 21:10:03 +08:00
|
|
|
(void)errorcode;
|
2009-06-26 05:58:01 +08:00
|
|
|
}
|
|
|
|
|
2010-07-29 06:49:43 +08:00
|
|
|
void ThreadLocalImpl::removeInstance() {
|
|
|
|
setInstance(0);
|
|
|
|
}
|
|
|
|
|
2009-06-26 05:58:01 +08:00
|
|
|
}
|