Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Side by Side Diff: test/cctest/compiler/test-run-deopt.cc

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback, rebase and "git cl format" Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "v8.h"
6
7 #include "function-tester.h"
8
9 using namespace v8::internal;
10 using namespace v8::internal::compiler;
11
12
13 TEST(TurboSimpleDeopt) {
14 FLAG_allow_natives_syntax = true;
15 FLAG_turbo_deoptimization = true;
16
17 FunctionTester T(
18 "(function f(a) {"
19 "var b = 1;"
20 "if (!%IsOptimized()) return 0;"
21 "%DeoptimizeFunction(f);"
22 "if (%IsOptimized()) return 0;"
23 "return a + b; })");
24
25 T.CheckCall(T.Val(2), T.Val(1));
26 }
27
28
29 TEST(TurboTrivialDeopt) {
30 FLAG_allow_natives_syntax = true;
31 FLAG_turbo_deoptimization = true;
32
33 FunctionTester T(
34 "(function foo() {"
35 "%DeoptimizeFunction(foo);"
36 "return 1; })");
37
38 T.CheckCall(T.Val(1));
39 }
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-representation-change.cc ('k') | test/cctest/compiler/test-run-intrinsics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698