Commit dafd7301 authored by yangguo's avatar yangguo Committed by Commit bot

Reland "Correctly propagate terminate exception in TryCall."

BUG=v8:3892
LOG=Y

Review URL: https://codereview.chromium.org/953463002

Cr-Commit-Position: refs/heads/master@{#26810}
parent 92ccbefe
......@@ -210,11 +210,11 @@ MaybeHandle<Object> Execution::TryCall(Handle<JSFunction> func,
DCHECK(catcher.HasCaught());
DCHECK(isolate->has_pending_exception());
DCHECK(isolate->external_caught_exception());
if (exception_out != NULL) {
if (isolate->pending_exception() ==
isolate->heap()->termination_exception()) {
is_termination = true;
} else {
if (isolate->pending_exception() ==
isolate->heap()->termination_exception()) {
is_termination = true;
} else {
if (exception_out != NULL) {
*exception_out = v8::Utils::OpenHandle(*catcher.Exception());
}
}
......@@ -222,9 +222,11 @@ MaybeHandle<Object> Execution::TryCall(Handle<JSFunction> func,
}
DCHECK(!isolate->has_pending_exception());
DCHECK(!isolate->external_caught_exception());
}
if (is_termination) isolate->TerminateExecution();
// Re-request terminate execution interrupt to trigger later.
if (is_termination) isolate->stack_guard()->RequestTerminateExecution();
return maybe_result;
}
......
......@@ -1195,7 +1195,9 @@ MaybeHandle<Object> Factory::NewError(const char* maker, const char* message,
arraysize(argv),
argv,
&exception).ToHandle(&result)) {
return exception;
Handle<Object> exception_obj;
if (exception.ToHandle(&exception_obj)) return exception_obj;
return undefined_value();
}
return result;
}
......@@ -1222,7 +1224,9 @@ MaybeHandle<Object> Factory::NewError(const char* constructor,
arraysize(argv),
argv,
&exception).ToHandle(&result)) {
return exception;
Handle<Object> exception_obj;
if (exception.ToHandle(&exception_obj)) return exception_obj;
return undefined_value();
}
return result;
}
......
......@@ -228,6 +228,7 @@ void LoopGetProperty(const v8::FunctionCallbackInfo<v8::Value>& args) {
" }"
" fail();"
" } catch(e) {"
" (function() {})();" // trigger stack check.
" fail();"
" }"
"}"
......@@ -474,3 +475,65 @@ TEST(ErrorObjectAfterTermination) {
// TODO(yangguo): crbug/403509. Check for empty handle instead.
CHECK(error->IsUndefined());
}
void InnerTryCallTerminate(const v8::FunctionCallbackInfo<v8::Value>& args) {
CHECK(!v8::V8::IsExecutionTerminating(args.GetIsolate()));
v8::Handle<v8::Object> global = CcTest::global();
v8::Handle<v8::Function> loop =
v8::Handle<v8::Function>::Cast(global->Get(v8_str("loop")));
i::MaybeHandle<i::Object> result =
i::Execution::TryCall(v8::Utils::OpenHandle((*loop)),
v8::Utils::OpenHandle((*global)), 0, NULL, NULL);
CHECK(result.is_null());
// TryCall ignores terminate execution, but rerequests the interrupt.
CHECK(!v8::V8::IsExecutionTerminating(args.GetIsolate()));
CHECK(CompileRun("1 + 1;").IsEmpty());
}
TEST(TerminationInInnerTryCall) {
v8::Isolate* isolate = CcTest::isolate();
v8::HandleScope scope(isolate);
v8::Handle<v8::ObjectTemplate> global_template = CreateGlobalTemplate(
CcTest::isolate(), TerminateCurrentThread, DoLoopNoCall);
global_template->Set(
v8_str("inner_try_call_terminate"),
v8::FunctionTemplate::New(isolate, InnerTryCallTerminate));
v8::Handle<v8::Context> context =
v8::Context::New(CcTest::isolate(), NULL, global_template);
v8::Context::Scope context_scope(context);
{
v8::TryCatch try_catch;
CompileRun("inner_try_call_terminate()");
CHECK(try_catch.HasTerminated());
}
CHECK_EQ(4, CompileRun("2 + 2")->ToInt32()->Int32Value());
CHECK(!v8::V8::IsExecutionTerminating());
}
TEST(TerminateAndTryCall) {
i::FLAG_allow_natives_syntax = true;
v8::Isolate* isolate = CcTest::isolate();
v8::HandleScope scope(isolate);
v8::Handle<v8::ObjectTemplate> global = CreateGlobalTemplate(
isolate, TerminateCurrentThread, DoLoopCancelTerminate);
v8::Handle<v8::Context> context = v8::Context::New(isolate, NULL, global);
v8::Context::Scope context_scope(context);
CHECK(!v8::V8::IsExecutionTerminating(isolate));
v8::TryCatch try_catch;
CHECK(!v8::V8::IsExecutionTerminating(isolate));
// Terminate execution has been triggered inside TryCall, but re-requested
// to trigger later.
CHECK(CompileRun("terminate(); reference_error();").IsEmpty());
CHECK(try_catch.HasCaught());
CHECK(!v8::V8::IsExecutionTerminating(isolate));
CHECK(CcTest::global()->Get(v8_str("terminate"))->IsFunction());
// The first stack check after terminate has been re-requested fails.
CHECK(CompileRun("1 + 1").IsEmpty());
CHECK(!v8::V8::IsExecutionTerminating(isolate));
// V8 then recovers.
CHECK_EQ(4, CompileRun("2 + 2")->ToInt32()->Int32Value());
CHECK(!v8::V8::IsExecutionTerminating(isolate));
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment