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

Side by Side Diff: test/cctest/compiler/test-run-bytecode-graph-builder.cc

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)
Patch Set: fix Created 4 years, 3 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 <utility> 5 #include <utility>
6 6
7 #include "src/compiler.h" 7 #include "src/compilation-info.h"
8 #include "src/compiler/pipeline.h" 8 #include "src/compiler/pipeline.h"
9 #include "src/execution.h" 9 #include "src/execution.h"
10 #include "src/handles.h" 10 #include "src/handles.h"
11 #include "src/interpreter/bytecode-array-builder.h" 11 #include "src/interpreter/bytecode-array-builder.h"
12 #include "src/interpreter/interpreter.h" 12 #include "src/interpreter/interpreter.h"
13 #include "src/parsing/parse-info.h" 13 #include "src/parsing/parse-info.h"
14 #include "test/cctest/cctest.h" 14 #include "test/cctest/cctest.h"
15 15
16 namespace v8 { 16 namespace v8 {
17 namespace internal { 17 namespace internal {
(...skipping 2939 matching lines...) Expand 10 before | Expand all | Expand 10 after
2957 2957
2958 BytecodeGraphTester tester(isolate, zone, script.start()); 2958 BytecodeGraphTester tester(isolate, zone, script.start());
2959 auto callable = tester.GetCallable<>(); 2959 auto callable = tester.GetCallable<>();
2960 Handle<Object> return_value = callable().ToHandleChecked(); 2960 Handle<Object> return_value = callable().ToHandleChecked();
2961 CHECK(return_value->SameValue(*snippet.return_value())); 2961 CHECK(return_value->SameValue(*snippet.return_value()));
2962 } 2962 }
2963 2963
2964 } // namespace compiler 2964 } // namespace compiler
2965 } // namespace internal 2965 } // namespace internal
2966 } // namespace v8 2966 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-loop-assignment-analysis.cc ('k') | test/cctest/compiler/test-run-inlining.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698