Chromium Code Reviews| Index: test/cctest/test-decls.cc |
| diff --git a/test/cctest/test-decls.cc b/test/cctest/test-decls.cc |
| index 0c13a6844fbcf8c9eff18a95312136577a3d4ab9..430045faf5e63bbfc4a1491a391d0dbcfa2b946c 100644 |
| --- a/test/cctest/test-decls.cc |
| +++ b/test/cctest/test-decls.cc |
| @@ -844,7 +844,7 @@ TEST(CrossScriptStaticLookupUndeclared) { |
| context.Check( |
| "function f(o) { return x; }" |
| - "function g(o) { x = 15; }" |
| + "function g(v) { x = v; }" |
| "function h(o) { return typeof x; }", |
| EXPECT_RESULT, Undefined(CcTest::isolate())); |
| context.Check("h({})", EXPECT_RESULT, undefined_string); |
| @@ -855,10 +855,43 @@ TEST(CrossScriptStaticLookupUndeclared) { |
| EXPECT_RESULT, Number::New(CcTest::isolate(), 1)); |
| context.Check( |
| "'use strict';" |
| - "g({});x", |
| + "g(15);x", |
| EXPECT_RESULT, Number::New(CcTest::isolate(), 15)); |
| context.Check("h({})", EXPECT_RESULT, number_string); |
| context.Check("f({})", EXPECT_RESULT, Number::New(CcTest::isolate(), 15)); |
| context.Check("h({})", EXPECT_RESULT, number_string); |
| } |
| } |
| + |
| + |
| +TEST(CrossScriptICs) { |
| + i::FLAG_harmony_scoping = true; |
| + i::FLAG_allow_natives_syntax = true; |
| + |
| + HandleScope handle_scope(CcTest::isolate()); |
| + |
| + { |
| + SimpleContext context; |
| + context.Check( |
| + "x = 15;" |
| + "function f() { return x; }" |
| + "function g() { return x; }" |
| + "f()", |
| + EXPECT_RESULT, Number::New(CcTest::isolate(), 15)); |
| + context.Check( |
| + "'use strict';" |
| + "let x = 5;" |
| + "f()", |
| + EXPECT_RESULT, Number::New(CcTest::isolate(), 5)); |
| + for (int k = 0; k < 3; k++) { |
| + context.Check("g()", EXPECT_RESULT, Number::New(CcTest::isolate(), 5)); |
| + } |
| + for (int k = 0; k < 3; k++) { |
| + context.Check("f()", EXPECT_RESULT, Number::New(CcTest::isolate(), 5)); |
| + } |
| + context.Check("%OptimizeFunctionOnNextCall(g); g()", EXPECT_RESULT, |
|
Igor Sheludko
2014/11/11 09:49:51
What about also trying to optimize f() and g() bef
Dmitry Lomov (no reviews)
2014/11/11 11:16:20
Done.
|
| + Number::New(CcTest::isolate(), 5)); |
| + context.Check("%OptimizeFunctionOnNextCall(f); f()", EXPECT_RESULT, |
| + Number::New(CcTest::isolate(), 5)); |
| + } |
| +} |