• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #include "src/compiler.h"
6 #include "src/compiler/pipeline.h"
7 #include "src/handles.h"
8 #include "src/parsing/parser.h"
9 #include "test/cctest/cctest.h"
10 
11 namespace v8 {
12 namespace internal {
13 namespace compiler {
14 
RunPipeline(Zone * zone,const char * source)15 static void RunPipeline(Zone* zone, const char* source) {
16   Handle<JSFunction> function = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
17       *v8::Local<v8::Function>::Cast(CompileRun(source))));
18   ParseInfo parse_info(zone, function);
19   CHECK(Compiler::ParseAndAnalyze(&parse_info));
20   CompilationInfo info(&parse_info);
21   info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code()));
22 
23   Pipeline pipeline(&info);
24   Handle<Code> code = pipeline.GenerateCode();
25   CHECK(!code.is_null());
26 }
27 
28 
TEST(PipelineTyped)29 TEST(PipelineTyped) {
30   HandleAndZoneScope handles;
31   FLAG_turbo_types = true;
32   RunPipeline(handles.main_zone(), "(function(a,b) { return a + b; })");
33 }
34 
35 
TEST(PipelineGeneric)36 TEST(PipelineGeneric) {
37   HandleAndZoneScope handles;
38   FLAG_turbo_types = false;
39   RunPipeline(handles.main_zone(), "(function(a,b) { return a + b; })");
40 }
41 
42 }  // namespace compiler
43 }  // namespace internal
44 }  // namespace v8
45