05207b098a
Removes the --ignition flag which is now on by default. Adds a --stress-fullcodegen flag which enables running all functions supported by fullcodegen to be compiled by fullcodegen. This will enable moving parser internalization later when we are not stressing fullcodegen or compiling asm.js functions. BUG=v8:5203, v8:6409, v8:6589 Change-Id: I7fa68016d4e734755434ec0b4e749ef65ffa7f4e Reviewed-on: https://chromium-review.googlesource.com/565569 Commit-Queue: Ross McIlroy <rmcilroy@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Reviewed-by: Michael Starzinger <mstarzinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#46635}
124 lines
3.0 KiB
C++
124 lines
3.0 KiB
C++
// 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.
|
|
|
|
#include "src/frames-inl.h"
|
|
#include "test/cctest/cctest.h"
|
|
#include "test/cctest/compiler/function-tester.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace compiler {
|
|
|
|
static void IsOptimized(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
JavaScriptFrameIterator it(CcTest::i_isolate());
|
|
JavaScriptFrame* frame = it.frame();
|
|
return args.GetReturnValue().Set(frame->is_optimized());
|
|
}
|
|
|
|
|
|
static void InstallIsOptimizedHelper(v8::Isolate* isolate) {
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
v8::Local<v8::FunctionTemplate> t =
|
|
v8::FunctionTemplate::New(isolate, IsOptimized);
|
|
CHECK(context->Global()
|
|
->Set(context, v8_str("IsOptimized"),
|
|
t->GetFunction(context).ToLocalChecked())
|
|
.FromJust());
|
|
}
|
|
|
|
|
|
TEST(DeoptSimple) {
|
|
FLAG_stress_fullcodegen = false;
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FunctionTester T(
|
|
"(function f(a) {"
|
|
" var b = 1;"
|
|
" if (!IsOptimized()) return 0;"
|
|
" %DeoptimizeFunction(f);"
|
|
" if (IsOptimized()) return 0;"
|
|
" return a + b;"
|
|
"})");
|
|
|
|
InstallIsOptimizedHelper(CcTest::isolate());
|
|
T.CheckCall(T.Val(2), T.Val(1));
|
|
}
|
|
|
|
|
|
TEST(DeoptSimpleInExpr) {
|
|
FLAG_stress_fullcodegen = false;
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FunctionTester T(
|
|
"(function f(a) {"
|
|
" var b = 1;"
|
|
" var c = 2;"
|
|
" if (!IsOptimized()) return 0;"
|
|
" var d = b + (%DeoptimizeFunction(f), c);"
|
|
" if (IsOptimized()) return 0;"
|
|
" return d + a;"
|
|
"})");
|
|
|
|
InstallIsOptimizedHelper(CcTest::isolate());
|
|
T.CheckCall(T.Val(6), T.Val(3));
|
|
}
|
|
|
|
|
|
TEST(DeoptExceptionHandlerCatch) {
|
|
FLAG_stress_fullcodegen = false;
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FunctionTester T(
|
|
"(function f() {"
|
|
" var is_opt = IsOptimized;"
|
|
" try {"
|
|
" DeoptAndThrow(f);"
|
|
" } catch (e) {"
|
|
" return is_opt();"
|
|
" }"
|
|
"})");
|
|
|
|
CompileRun("function DeoptAndThrow(f) { %DeoptimizeFunction(f); throw 0; }");
|
|
InstallIsOptimizedHelper(CcTest::isolate());
|
|
T.CheckCall(T.false_value());
|
|
}
|
|
|
|
|
|
TEST(DeoptExceptionHandlerFinally) {
|
|
FLAG_stress_fullcodegen = false;
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FunctionTester T(
|
|
"(function f() {"
|
|
" var is_opt = IsOptimized;"
|
|
" try {"
|
|
" DeoptAndThrow(f);"
|
|
" } finally {"
|
|
" return is_opt();"
|
|
" }"
|
|
"})");
|
|
|
|
CompileRun("function DeoptAndThrow(f) { %DeoptimizeFunction(f); throw 0; }");
|
|
InstallIsOptimizedHelper(CcTest::isolate());
|
|
T.CheckCall(T.false_value());
|
|
}
|
|
|
|
|
|
TEST(DeoptTrivial) {
|
|
FLAG_stress_fullcodegen = false;
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FunctionTester T(
|
|
"(function foo() {"
|
|
" %DeoptimizeFunction(foo);"
|
|
" return 1;"
|
|
"})");
|
|
|
|
T.CheckCall(T.Val(1));
|
|
}
|
|
|
|
} // namespace compiler
|
|
} // namespace internal
|
|
} // namespace v8
|