mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
Add support for const thread locals.
llvm-svn: 74226
This commit is contained in:
parent
8d5f9675c7
commit
3a892a63b7
@ -24,8 +24,8 @@ namespace llvm {
|
||||
public:
|
||||
ThreadLocalImpl();
|
||||
virtual ~ThreadLocalImpl();
|
||||
void setInstance(void* d);
|
||||
void* getInstance();
|
||||
void setInstance(const void* d);
|
||||
const void* getInstance();
|
||||
};
|
||||
|
||||
template<class T>
|
||||
|
@ -25,8 +25,8 @@ namespace llvm {
|
||||
using namespace sys;
|
||||
ThreadLocalImpl::ThreadLocalImpl() { }
|
||||
ThreadLocalImpl::~ThreadLocalImpl() { }
|
||||
void ThreadLocalImpl::setInstance(void* d) { data = d; }
|
||||
void* ThreadLocalImpl::getInstance() { return data; }
|
||||
void ThreadLocalImpl::setInstance(const void* d) { data = const_cast<void*>(d);}
|
||||
const void* ThreadLocalImpl::getInstance() { return data; }
|
||||
}
|
||||
#else
|
||||
|
||||
@ -53,13 +53,13 @@ ThreadLocalImpl::~ThreadLocalImpl() {
|
||||
delete key;
|
||||
}
|
||||
|
||||
void ThreadLocalImpl::setInstance(void* d) {
|
||||
void ThreadLocalImpl::setInstance(const void* d) {
|
||||
pthread_key_t* key = static_cast<pthread_key_t*>(data);
|
||||
int errorcode = pthread_setspecific(*key, d);
|
||||
assert(errorcode == 0);
|
||||
}
|
||||
|
||||
void* ThreadLocalImpl::getInstance() {
|
||||
const void* ThreadLocalImpl::getInstance() {
|
||||
pthread_key_t* key = static_cast<pthread_key_t*>(data);
|
||||
return pthread_getspecific(*key);
|
||||
}
|
||||
|
@ -35,12 +35,12 @@ ThreadLocalImpl::~ThreadLocalImpl() {
|
||||
delete tls;
|
||||
}
|
||||
|
||||
void* ThreadLocalImpl::getInstance() {
|
||||
const void* ThreadLocalImpl::getInstance() {
|
||||
DWORD* tls = static_cast<DWORD*>(data);
|
||||
return TlsGetValue(*tls);
|
||||
}
|
||||
|
||||
void ThreadLocalImpl::setInstance(void* d){
|
||||
void ThreadLocalImpl::setInstance(const void* d){
|
||||
DWORD* tls = static_cast<DWORD*>(data);
|
||||
int errorcode = TlsSetValue(*tls, d);
|
||||
assert(errorcode == 0);
|
||||
|
Loading…
Reference in New Issue
Block a user