OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 #include "test/cctest/cctest.h" | 6 #include "test/cctest/cctest.h" |
7 | 7 |
8 #include "src/compiler/code-generator.h" | 8 #include "src/compiler/code-generator.h" |
9 #include "src/compiler/common-operator.h" | 9 #include "src/compiler/common-operator.h" |
10 #include "src/compiler/graph.h" | 10 #include "src/compiler/graph.h" |
11 #include "src/compiler/instruction-selector.h" | 11 #include "src/compiler/instruction-selector.h" |
12 #include "src/compiler/machine-operator.h" | 12 #include "src/compiler/machine-operator.h" |
13 #include "src/compiler/node.h" | 13 #include "src/compiler/node.h" |
14 #include "src/compiler/operator.h" | 14 #include "src/compiler/operator.h" |
15 #include "src/compiler/raw-machine-assembler.h" | 15 #include "src/compiler/raw-machine-assembler.h" |
16 #include "src/compiler/register-allocator.h" | 16 #include "src/compiler/register-allocator.h" |
17 #include "src/compiler/schedule.h" | 17 #include "src/compiler/schedule.h" |
18 | 18 |
19 #include "src/ast-numbering.h" | |
20 #include "src/full-codegen.h" | 19 #include "src/full-codegen.h" |
21 #include "src/parser.h" | 20 #include "src/parser.h" |
22 #include "src/rewriter.h" | 21 #include "src/rewriter.h" |
23 | 22 |
24 #include "test/cctest/compiler/c-signature.h" | 23 #include "test/cctest/compiler/c-signature.h" |
25 #include "test/cctest/compiler/function-tester.h" | 24 #include "test/cctest/compiler/function-tester.h" |
26 | 25 |
27 using namespace v8::internal; | 26 using namespace v8::internal; |
28 using namespace v8::internal::compiler; | 27 using namespace v8::internal::compiler; |
29 | 28 |
(...skipping 12 matching lines...) Expand all Loading... |
42 public: | 41 public: |
43 explicit DeoptCodegenTester(HandleAndZoneScope* scope, const char* src) | 42 explicit DeoptCodegenTester(HandleAndZoneScope* scope, const char* src) |
44 : scope_(scope), | 43 : scope_(scope), |
45 function(NewFunction(src)), | 44 function(NewFunction(src)), |
46 info(function, scope->main_zone()), | 45 info(function, scope->main_zone()), |
47 bailout_id(-1) { | 46 bailout_id(-1) { |
48 CHECK(Parser::Parse(&info)); | 47 CHECK(Parser::Parse(&info)); |
49 info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code())); | 48 info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code())); |
50 CHECK(Rewriter::Rewrite(&info)); | 49 CHECK(Rewriter::Rewrite(&info)); |
51 CHECK(Scope::Analyze(&info)); | 50 CHECK(Scope::Analyze(&info)); |
52 CHECK(AstNumbering::Renumber(info.function(), info.zone())); | |
53 CHECK(Compiler::EnsureDeoptimizationSupport(&info)); | 51 CHECK(Compiler::EnsureDeoptimizationSupport(&info)); |
54 | 52 |
55 DCHECK(info.shared_info()->has_deoptimization_support()); | 53 DCHECK(info.shared_info()->has_deoptimization_support()); |
56 | 54 |
57 graph = new (scope_->main_zone()) Graph(scope_->main_zone()); | 55 graph = new (scope_->main_zone()) Graph(scope_->main_zone()); |
58 } | 56 } |
59 | 57 |
60 virtual ~DeoptCodegenTester() { delete code; } | 58 virtual ~DeoptCodegenTester() { delete code; } |
61 | 59 |
62 void GenerateCodeFromSchedule(Schedule* schedule) { | 60 void GenerateCodeFromSchedule(Schedule* schedule) { |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 Handle<Object> result; | 307 Handle<Object> result; |
310 bool has_pending_exception = | 308 bool has_pending_exception = |
311 !Execution::Call(isolate, t.function, | 309 !Execution::Call(isolate, t.function, |
312 isolate->factory()->undefined_value(), 0, NULL, | 310 isolate->factory()->undefined_value(), 0, NULL, |
313 false).ToHandle(&result); | 311 false).ToHandle(&result); |
314 CHECK(!has_pending_exception); | 312 CHECK(!has_pending_exception); |
315 CHECK(result->SameValue(Smi::FromInt(42))); | 313 CHECK(result->SameValue(Smi::FromInt(42))); |
316 } | 314 } |
317 | 315 |
318 #endif | 316 #endif |
OLD | NEW |