Home
last modified time | relevance | path

Searched refs:thread_local_top (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/v8/src/
Disolate.cc213 ThreadLocalTop* current_t = thread_local_top(); in Iterate()
251 thread_local_top()->set_try_catch_handler(that); in RegisterTryCatchHandler()
256 DCHECK(thread_local_top()->try_catch_handler() == that); in UnregisterTryCatchHandler()
257 thread_local_top()->set_try_catch_handler(that->next_); in UnregisterTryCatchHandler()
258 thread_local_top()->catcher_ = NULL; in UnregisterTryCatchHandler()
606 if (c_entry_fp(thread_local_top()) == 0) return; in PrintStack()
623 thread_local_top()->failed_access_check_callback_ = callback; in SetFailedAccessCheckCallback()
642 if (!thread_local_top()->failed_access_check_callback_) { in ReportFailedAccessCheck()
665 thread_local_top()->failed_access_check_callback_( in ReportFailedAccessCheck()
807 thread_local_top()->external_caught_exception_ = false; in CancelTerminateExecution()
[all …]
Disolate-inl.h24 c_entry_fp_ = isolate->c_entry_fp(isolate->thread_local_top()); in SaveContext()
Dsampler.cc230 simulator_ = isolate->thread_local_top()->simulator_; in Init()
596 Address handler = Isolate::handler(isolate->thread_local_top()); in Init()
Dframes.cc68 Reset(isolate->thread_local_top()); in StackFrameIterator()
204 ThreadLocalTop* top = isolate->thread_local_top(); in SafeStackFrameIterator()
Ddebug.cc1956 isolate_->thread_local_top(), in PrepareForBreakPoints()
2062 isolate_->thread_local_top()); in PrepareForBreakPoints()
2516 isolate_->thread_local_top()->scheduled_exception_ = *scheduled_exception; in OnThrow()
Disolate.h877 ThreadLocalTop* thread_local_top() { return &thread_local_top_; } in thread_local_top() function
Dbuiltins.cc145 Address fp = Isolate::c_entry_fp(isolate->thread_local_top()); in CalledAsConstructor()
Ddeoptimizer.cc339 for (StackFrameIterator it(isolate, isolate->thread_local_top()); in DeoptimizeMarkedCodeForContext()
Dapi.cc1934 isolate_->thread_local_top()->rethrowing_message_ = true; in ~TryCatch()
1940 DCHECK(!isolate_->thread_local_top()->rethrowing_message_); in ~TryCatch()
/external/chromium_org/v8/test/cctest/
Dtrace-extension.cc121 CHECK_NE(NULL, CcTest::i_isolate()->thread_local_top()); in GetJsEntrySp()
/external/chromium_org/v8/src/heap/
Dmark-compact.cc1754 heap()->isolate()->thread_local_top()); in PrepareForCodeFlushing()
2219 for (StackFrameIterator it(isolate(), isolate()->thread_local_top()); in ProcessTopOptimizedFrame()
/external/chromium_org/v8/src/ic/
Dic.cc146 const Address entry = Isolate::c_entry_fp(isolate->thread_local_top()); in IC()