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

Side by Side Diff: test/cctest/interpreter/bytecode-expectations-printer.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 "test/cctest/interpreter/bytecode-expectations-printer.h" 5 #include "test/cctest/interpreter/bytecode-expectations-printer.h"
6 6
7 #include <iomanip> 7 #include <iomanip>
8 #include <iostream> 8 #include <iostream>
9 #include <vector> 9 #include <vector>
10 10
11 #include "include/libplatform/libplatform.h" 11 #include "include/libplatform/libplatform.h"
12 #include "include/v8.h" 12 #include "include/v8.h"
13 13
14 #include "src/base/logging.h" 14 #include "src/base/logging.h"
15 #include "src/compiler.h"
16 #include "src/runtime/runtime.h" 15 #include "src/runtime/runtime.h"
17 16
18 #include "src/interpreter/bytecode-array-iterator.h" 17 #include "src/interpreter/bytecode-array-iterator.h"
19 #include "src/interpreter/bytecode-generator.h" 18 #include "src/interpreter/bytecode-generator.h"
20 #include "src/interpreter/bytecodes.h" 19 #include "src/interpreter/bytecodes.h"
21 #include "src/interpreter/interpreter-intrinsics.h" 20 #include "src/interpreter/interpreter-intrinsics.h"
22 #include "src/interpreter/interpreter.h" 21 #include "src/interpreter/interpreter.h"
23 #include "src/source-position-table.h" 22 #include "src/source-position-table.h"
24 23
25 namespace v8 { 24 namespace v8 {
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 344
346 stream << "---\n"; 345 stream << "---\n";
347 PrintCodeSnippet(stream, snippet); 346 PrintCodeSnippet(stream, snippet);
348 PrintBytecodeArray(stream, bytecode_array); 347 PrintBytecodeArray(stream, bytecode_array);
349 stream << '\n'; 348 stream << '\n';
350 } 349 }
351 350
352 } // namespace interpreter 351 } // namespace interpreter
353 } // namespace internal 352 } // namespace internal
354 } // namespace v8 353 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-run-stubs.cc ('k') | test/cctest/interpreter/generate-bytecode-expectations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698