From 86b3c3eea741995d5a26184edbd53ca54d2518a0 Mon Sep 17 00:00:00 2001 From: "yangguo@chromium.org" Date: Thu, 25 Sep 2014 09:33:40 +0000 Subject: [PATCH] Insert materialized context at the right place in DebugEvaluate. R=aandrey@chromium.org, ulan@chromium.org BUG=chromium:323936 LOG=N Review URL: https://codereview.chromium.org/599113002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24218 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/runtime/runtime.cc | 53 +++++++++++++++++++++++----- test/mjsunit/regress/regress-crbug-323936.js | 46 ++++++++++++++++++++++++ 2 files changed, 90 insertions(+), 9 deletions(-) create mode 100644 test/mjsunit/regress/regress-crbug-323936.js diff --git a/src/runtime/runtime.cc b/src/runtime/runtime.cc index 373d4b1..379a38f 100644 --- a/src/runtime/runtime.cc +++ b/src/runtime/runtime.cc @@ -12596,10 +12596,6 @@ RUNTIME_FUNCTION(Runtime_DebugEvaluate) { SaveContext savex(isolate); isolate->set_context(*(save->context())); - // Evaluate on the context of the frame. - Handle context(Context::cast(frame_inspector.GetContext())); - DCHECK(!context.is_null()); - // Materialize stack locals and the arguments object. Handle materialized = NewJSObjectWithNullProto(isolate); @@ -12612,14 +12608,53 @@ RUNTIME_FUNCTION(Runtime_DebugEvaluate) { isolate, materialized, MaterializeArgumentsObject(isolate, materialized, function)); - // Add the materialized object in a with-scope to shadow the stack locals. - context = isolate->factory()->NewWithContext(function, context, materialized); + // At this point, the lookup chain may look like this: + // [inner context] -> [function stack]+[function context] -> [outer context] + // The function stack is not an actual context, it complements the function + // context. In order to have the same lookup chain when debug-evaluating, + // we materialize the stack and insert it into the context chain as a + // with-context before the function context. + // [inner context] -> [with context] -> [function context] -> [outer context] + // Ordering the with-context before the function context forces a dynamic + // lookup instead of a static lookup that could fail as the scope info is + // outdated and may expect variables to still be stack-allocated. + // Afterwards, we write changes to the with-context back to the stack + // and remove it from the context chain. + // This could cause lookup failures if debug-evaluate creates a closure that + // uses this temporary context chain. + + Handle eval_context(Context::cast(frame_inspector.GetContext())); + DCHECK(!eval_context.is_null()); + Handle function_context = eval_context; + Handle outer_context(function->context(), isolate); + Handle inner_context; + // We iterate to find the function's context. If the function has no + // context-allocated variables, we iterate until we hit the outer context. + while (!function_context->IsFunctionContext() && + !function_context.is_identical_to(outer_context)) { + inner_context = function_context; + function_context = Handle(function_context->previous(), isolate); + } + + Handle materialized_context = isolate->factory()->NewWithContext( + function, function_context, materialized); + + if (inner_context.is_null()) { + // No inner context. The with-context is now inner-most. + eval_context = materialized_context; + } else { + inner_context->set_previous(*materialized_context); + } Handle receiver(frame->receiver(), isolate); + MaybeHandle maybe_result = + DebugEvaluate(isolate, eval_context, context_extension, receiver, source); + + // Remove with-context if it was inserted in between. + if (!inner_context.is_null()) inner_context->set_previous(*function_context); + Handle result; - ASSIGN_RETURN_FAILURE_ON_EXCEPTION( - isolate, result, - DebugEvaluate(isolate, context, context_extension, receiver, source)); + ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, maybe_result); // Write back potential changes to materialized stack locals to the stack. UpdateStackLocalsFromMaterializedObject(isolate, materialized, function, diff --git a/test/mjsunit/regress/regress-crbug-323936.js b/test/mjsunit/regress/regress-crbug-323936.js new file mode 100644 index 0000000..d896ead --- /dev/null +++ b/test/mjsunit/regress/regress-crbug-323936.js @@ -0,0 +1,46 @@ +// Copyright 2014 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Flags: --expose-debug-as debug + +Debug = debug.Debug; + +var step = 0; +var exception = null; + +function listener(event, exec_state, event_data, data) { + if (event != Debug.DebugEvent.Break) return; + try { + if (step == 0) { + assertEquals("error", exec_state.frame(0).evaluate("e").value()); + exec_state.frame(0).evaluate("e = 'foo'"); + exec_state.frame(0).evaluate("x = 'modified'"); + } else { + assertEquals("argument", exec_state.frame(0).evaluate("e").value()); + exec_state.frame(0).evaluate("e = 'bar'"); + } + step++; + } catch (e) { + print(e + e.stack); + exception = e; + } +} + +Debug.setListener(listener); + +function f(e, x) { + try { + throw "error"; + } catch(e) { + debugger; + assertEquals("foo", e); + } + debugger; + assertEquals("bar", e); + assertEquals("modified", x); +} + +f("argument") +assertNull(exception); +assertEquals(2, step); -- 2.7.4