OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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.h" | 8 #include "src/compiler.h" |
9 #include "src/compiler/pipeline.h" | 9 #include "src/compiler/pipeline.h" |
10 #include "src/handles.h" | 10 #include "src/handles.h" |
11 #include "src/parser.h" | 11 #include "src/parser.h" |
12 | 12 |
13 using namespace v8::internal; | 13 using namespace v8::internal; |
14 using namespace v8::internal::compiler; | 14 using namespace v8::internal::compiler; |
15 | 15 |
16 static void RunPipeline(Zone* zone, const char* source) { | 16 static void RunPipeline(Zone* zone, const char* source) { |
17 Handle<JSFunction> function = v8::Utils::OpenHandle( | 17 Handle<JSFunction> function = v8::Utils::OpenHandle( |
18 *v8::Handle<v8::Function>::Cast(CompileRun(source))); | 18 *v8::Handle<v8::Function>::Cast(CompileRun(source))); |
19 ParseInfo parse_info(zone, function); | 19 ParseInfo parse_info(zone, function); |
20 CHECK(Compiler::ParseAndAnalyze(&parse_info)); | 20 CHECK(Compiler::ParseAndAnalyze(&parse_info)); |
21 CompilationInfo info(&parse_info); | 21 CompilationInfo info(&parse_info); |
22 | 22 |
23 Pipeline pipeline(&info); | 23 Pipeline pipeline(&info); |
24 #if V8_TURBOFAN_TARGET | |
25 Handle<Code> code = pipeline.GenerateCode(); | 24 Handle<Code> code = pipeline.GenerateCode(); |
26 CHECK(Pipeline::SupportedTarget()); | |
27 CHECK(!code.is_null()); | 25 CHECK(!code.is_null()); |
28 #else | |
29 USE(pipeline); | |
30 #endif | |
31 } | 26 } |
32 | 27 |
33 | 28 |
34 TEST(PipelineTyped) { | 29 TEST(PipelineTyped) { |
35 HandleAndZoneScope handles; | 30 HandleAndZoneScope handles; |
36 FLAG_turbo_types = true; | 31 FLAG_turbo_types = true; |
37 RunPipeline(handles.main_zone(), "(function(a,b) { return a + b; })"); | 32 RunPipeline(handles.main_zone(), "(function(a,b) { return a + b; })"); |
38 } | 33 } |
39 | 34 |
40 | 35 |
41 TEST(PipelineGeneric) { | 36 TEST(PipelineGeneric) { |
42 HandleAndZoneScope handles; | 37 HandleAndZoneScope handles; |
43 FLAG_turbo_types = false; | 38 FLAG_turbo_types = false; |
44 RunPipeline(handles.main_zone(), "(function(a,b) { return a + b; })"); | 39 RunPipeline(handles.main_zone(), "(function(a,b) { return a + b; })"); |
45 } | 40 } |
OLD | NEW |