Move promises recorded for debugging to thread local data.
R=rossberg@chromium.org Review URL: https://codereview.chromium.org/296693005 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21413 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
b06ad59622
commit
c1eff30f1f
42
src/debug.cc
42
src/debug.cc
@ -37,8 +37,6 @@ Debug::Debug(Isolate* isolate)
|
|||||||
disable_break_(false),
|
disable_break_(false),
|
||||||
break_on_exception_(false),
|
break_on_exception_(false),
|
||||||
break_on_uncaught_exception_(false),
|
break_on_uncaught_exception_(false),
|
||||||
promise_catch_handlers_(0),
|
|
||||||
promise_getters_(0),
|
|
||||||
isolate_(isolate) {
|
isolate_(isolate) {
|
||||||
ThreadInit();
|
ThreadInit();
|
||||||
}
|
}
|
||||||
@ -511,6 +509,7 @@ void Debug::ThreadInit() {
|
|||||||
thread_local_.debugger_entry_ = NULL;
|
thread_local_.debugger_entry_ = NULL;
|
||||||
thread_local_.has_pending_interrupt_ = false;
|
thread_local_.has_pending_interrupt_ = false;
|
||||||
thread_local_.restarter_frame_function_pointer_ = NULL;
|
thread_local_.restarter_frame_function_pointer_ = NULL;
|
||||||
|
thread_local_.promise_on_stack_ = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1249,29 +1248,42 @@ bool Debug::IsBreakOnException(ExceptionBreakType type) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Debug::PromiseOnStack::PromiseOnStack(Isolate* isolate,
|
||||||
|
PromiseOnStack* prev,
|
||||||
|
Handle<JSFunction> getter)
|
||||||
|
: isolate_(isolate), prev_(prev) {
|
||||||
|
handler_ = StackHandler::FromAddress(
|
||||||
|
Isolate::handler(isolate->thread_local_top()));
|
||||||
|
getter_ = Handle<JSFunction>::cast(
|
||||||
|
isolate->global_handles()->Create(*getter));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Debug::PromiseOnStack::~PromiseOnStack() {
|
||||||
|
isolate_->global_handles()->Destroy(Handle<Object>::cast(getter_).location());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Debug::PromiseHandlePrologue(Handle<JSFunction> promise_getter) {
|
void Debug::PromiseHandlePrologue(Handle<JSFunction> promise_getter) {
|
||||||
Handle<JSFunction> promise_getter_global = Handle<JSFunction>::cast(
|
PromiseOnStack* prev = thread_local_.promise_on_stack_;
|
||||||
isolate_->global_handles()->Create(*promise_getter));
|
thread_local_.promise_on_stack_ =
|
||||||
StackHandler* handler =
|
new PromiseOnStack(isolate_, prev, promise_getter);
|
||||||
StackHandler::FromAddress(Isolate::handler(isolate_->thread_local_top()));
|
|
||||||
promise_getters_.Add(promise_getter_global);
|
|
||||||
promise_catch_handlers_.Add(handler);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Debug::PromiseHandleEpilogue() {
|
void Debug::PromiseHandleEpilogue() {
|
||||||
if (promise_catch_handlers_.length() == 0) return;
|
if (thread_local_.promise_on_stack_ == NULL) return;
|
||||||
promise_catch_handlers_.RemoveLast();
|
PromiseOnStack* prev = thread_local_.promise_on_stack_->prev();
|
||||||
Handle<Object> promise_getter = promise_getters_.RemoveLast();
|
delete thread_local_.promise_on_stack_;
|
||||||
isolate_->global_handles()->Destroy(promise_getter.location());
|
thread_local_.promise_on_stack_ = prev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Handle<Object> Debug::GetPromiseForUncaughtException() {
|
Handle<Object> Debug::GetPromiseForUncaughtException() {
|
||||||
Handle<Object> undefined = isolate_->factory()->undefined_value();
|
Handle<Object> undefined = isolate_->factory()->undefined_value();
|
||||||
if (promise_getters_.length() == 0) return undefined;
|
if (thread_local_.promise_on_stack_ == NULL) return undefined;
|
||||||
Handle<JSFunction> promise_getter = promise_getters_.last();
|
Handle<JSFunction> promise_getter = thread_local_.promise_on_stack_->getter();
|
||||||
StackHandler* promise_catch = promise_catch_handlers_.last();
|
StackHandler* promise_catch = thread_local_.promise_on_stack_->handler();
|
||||||
// Find the top-most try-catch handler.
|
// Find the top-most try-catch handler.
|
||||||
StackHandler* handler = StackHandler::FromAddress(
|
StackHandler* handler = StackHandler::FromAddress(
|
||||||
Isolate::handler(isolate_->thread_local_top()));
|
Isolate::handler(isolate_->thread_local_top()));
|
||||||
|
29
src/debug.h
29
src/debug.h
@ -519,13 +519,21 @@ class Debug {
|
|||||||
bool break_on_exception_;
|
bool break_on_exception_;
|
||||||
bool break_on_uncaught_exception_;
|
bool break_on_uncaught_exception_;
|
||||||
|
|
||||||
// When a promise is being resolved, we may want to trigger a debug event for
|
class PromiseOnStack {
|
||||||
// the case we catch a throw. For this purpose we remember the try-catch
|
public:
|
||||||
// handler address that would catch the exception. We also hold onto a
|
PromiseOnStack(Isolate* isolate,
|
||||||
// closure that returns a promise if the exception is considered uncaught.
|
PromiseOnStack* prev,
|
||||||
// Due to the possibility of reentry we use a list to form a stack.
|
Handle<JSFunction> getter);
|
||||||
List<StackHandler*> promise_catch_handlers_;
|
~PromiseOnStack();
|
||||||
List<Handle<JSFunction> > promise_getters_;
|
StackHandler* handler() { return handler_; }
|
||||||
|
Handle<JSFunction> getter() { return getter_; }
|
||||||
|
PromiseOnStack* prev() { return prev_; }
|
||||||
|
private:
|
||||||
|
Isolate* isolate_;
|
||||||
|
StackHandler* handler_;
|
||||||
|
Handle<JSFunction> getter_;
|
||||||
|
PromiseOnStack* prev_;
|
||||||
|
};
|
||||||
|
|
||||||
// Per-thread data.
|
// Per-thread data.
|
||||||
class ThreadLocal {
|
class ThreadLocal {
|
||||||
@ -578,6 +586,13 @@ class Debug {
|
|||||||
// of the pointer to function being restarted. Otherwise (most of the time)
|
// of the pointer to function being restarted. Otherwise (most of the time)
|
||||||
// stores NULL. This pointer is used with 'step in' implementation.
|
// stores NULL. This pointer is used with 'step in' implementation.
|
||||||
Object** restarter_frame_function_pointer_;
|
Object** restarter_frame_function_pointer_;
|
||||||
|
|
||||||
|
// When a promise is being resolved, we may want to trigger a debug event
|
||||||
|
// if we catch a throw. For this purpose we remember the try-catch
|
||||||
|
// handler address that would catch the exception. We also hold onto a
|
||||||
|
// closure that returns a promise if the exception is considered uncaught.
|
||||||
|
// Due to the possibility of reentry we use a linked list.
|
||||||
|
PromiseOnStack* promise_on_stack_;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Storage location for registers when handling debug break calls
|
// Storage location for registers when handling debug break calls
|
||||||
|
Loading…
Reference in New Issue
Block a user