Home
last modified time | relevance | path

Searched refs:per_thread (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dv8threads.cc162 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local
164 ASSERT(per_thread != NULL); in RestoreThread()
165 ASSERT(per_thread->thread_state() == lazily_archived_thread_state_); in RestoreThread()
169 per_thread->set_thread_state(NULL); in RestoreThread()
182 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local
184 if (per_thread == NULL || per_thread->thread_state() == NULL) { in RestoreThread()
189 ThreadState* state = per_thread->thread_state(); in RestoreThread()
200 per_thread->set_thread_state(NULL); in RestoreThread()
320 Isolate::PerIsolateThreadData* per_thread = in ArchiveThread() local
322 per_thread->set_thread_state(state); in ArchiveThread()
Disolate.cc326 PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id); in AllocatePerIsolateThreadData() local
330 thread_data_table_->Insert(per_thread); in AllocatePerIsolateThreadData()
331 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread); in AllocatePerIsolateThreadData()
333 return per_thread; in AllocatePerIsolateThreadData()
340 PerIsolateThreadData* per_thread = NULL; in FindOrAllocatePerThreadDataForThisThread() local
343 per_thread = thread_data_table_->Lookup(this, thread_id); in FindOrAllocatePerThreadDataForThisThread()
344 if (per_thread == NULL) { in FindOrAllocatePerThreadDataForThisThread()
345 per_thread = AllocatePerIsolateThreadData(thread_id); in FindOrAllocatePerThreadDataForThisThread()
348 return per_thread; in FindOrAllocatePerThreadDataForThisThread()
354 PerIsolateThreadData* per_thread = NULL; in FindPerThreadDataForThisThread() local
[all …]
Dexecution.cc523 Isolate::PerIsolateThreadData* per_thread = in FreeThreadResources() local
525 per_thread->set_stack_limit(thread_local_.real_climit_); in FreeThreadResources()
569 Isolate::PerIsolateThreadData* per_thread = in InitThread() local
571 uintptr_t stored_limit = per_thread->stack_limit(); in InitThread()