Home
last modified time | relevance | path

Searched refs:threadLocalStorageHandle (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c88 static DWORD threadLocalStorageHandle = 0; variable
90 static pthread_key_t threadLocalStorageHandle = (pthread_key_t)0; variable
168 (pThreadStack)TlsGetValue (threadLocalStorageHandle); in iJIT_NotifyEvent()
171 (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in iJIT_NotifyEvent()
185 TlsSetValue(threadLocalStorageHandle,(void*)threadStack); in iJIT_NotifyEvent()
187 pthread_setspecific(threadLocalStorageHandle,(void*)threadStack); in iJIT_NotifyEvent()
206 (pThreadStack)TlsGetValue (threadLocalStorageHandle); in iJIT_NotifyEvent()
209 (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in iJIT_NotifyEvent()
406 if (!threadLocalStorageHandle) in loadiJIT_Funcs()
408 threadLocalStorageHandle = TlsAlloc(); in loadiJIT_Funcs()
[all …]
/external/v8/src/third_party/vtune/
Djitprofiling.cc125 static DWORD threadLocalStorageHandle = 0; variable
127 static pthread_key_t threadLocalStorageHandle = (pthread_key_t)0; variable
203 pThreadStack threadStack = (pThreadStack)TlsGetValue (threadLocalStorageHandle); in iJIT_NotifyEvent()
205 pThreadStack threadStack = (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in iJIT_NotifyEvent()
219 TlsSetValue(threadLocalStorageHandle,(void*)threadStack); in iJIT_NotifyEvent()
221 pthread_setspecific(threadLocalStorageHandle,(void*)threadStack); in iJIT_NotifyEvent()
238 pThreadStack threadStack = (pThreadStack)TlsGetValue (threadLocalStorageHandle); in iJIT_NotifyEvent()
240 pThreadStack threadStack = (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in iJIT_NotifyEvent()
424 if (!threadLocalStorageHandle) in loadiJIT_Funcs()
426 threadLocalStorageHandle = TlsAlloc(); in loadiJIT_Funcs()
[all …]