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

Side by Side Diff: test/cctest/interpreter/test-bytecode-generator.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 <fstream> 5 #include <fstream>
6 6
7 #include "src/v8.h" 7 #include "src/v8.h"
8 8
9 #include "src/compiler.h"
10 #include "src/interpreter/bytecode-array-iterator.h" 9 #include "src/interpreter/bytecode-array-iterator.h"
11 #include "src/interpreter/bytecode-generator.h" 10 #include "src/interpreter/bytecode-generator.h"
12 #include "src/interpreter/interpreter.h" 11 #include "src/interpreter/interpreter.h"
13 #include "test/cctest/cctest.h" 12 #include "test/cctest/cctest.h"
14 #include "test/cctest/interpreter/bytecode-expectations-printer.h" 13 #include "test/cctest/interpreter/bytecode-expectations-printer.h"
15 #include "test/cctest/test-feedback-vector.h" 14 #include "test/cctest/test-feedback-vector.h"
16 15
17 namespace v8 { 16 namespace v8 {
18 namespace internal { 17 namespace internal {
19 namespace interpreter { 18 namespace interpreter {
(...skipping 2238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 "f();\n", 2257 "f();\n",
2259 }; 2258 };
2260 2259
2261 CHECK(CompareTexts(BuildActual(printer, snippets), 2260 CHECK(CompareTexts(BuildActual(printer, snippets),
2262 LoadGolden("Generators.golden"))); 2261 LoadGolden("Generators.golden")));
2263 } 2262 }
2264 2263
2265 } // namespace interpreter 2264 } // namespace interpreter
2266 } // namespace internal 2265 } // namespace internal
2267 } // namespace v8 2266 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/interpreter/generate-bytecode-expectations.cc ('k') | test/cctest/test-field-type-tracking.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698