OLD | NEW |
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/base/smart-pointers.h" | |
16 #include "src/compiler.h" | 15 #include "src/compiler.h" |
17 #include "src/runtime/runtime.h" | 16 #include "src/runtime/runtime.h" |
18 | 17 |
19 #include "src/interpreter/bytecode-array-iterator.h" | 18 #include "src/interpreter/bytecode-array-iterator.h" |
20 #include "src/interpreter/bytecode-generator.h" | 19 #include "src/interpreter/bytecode-generator.h" |
21 #include "src/interpreter/bytecodes.h" | 20 #include "src/interpreter/bytecodes.h" |
22 #include "src/interpreter/interpreter-intrinsics.h" | 21 #include "src/interpreter/interpreter-intrinsics.h" |
23 #include "src/interpreter/interpreter.h" | 22 #include "src/interpreter/interpreter.h" |
24 #include "src/source-position-table.h" | 23 #include "src/source-position-table.h" |
25 | 24 |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 | 345 |
347 stream << "---\n"; | 346 stream << "---\n"; |
348 PrintCodeSnippet(stream, snippet); | 347 PrintCodeSnippet(stream, snippet); |
349 PrintBytecodeArray(stream, bytecode_array); | 348 PrintBytecodeArray(stream, bytecode_array); |
350 stream << '\n'; | 349 stream << '\n'; |
351 } | 350 } |
352 | 351 |
353 } // namespace interpreter | 352 } // namespace interpreter |
354 } // namespace internal | 353 } // namespace internal |
355 } // namespace v8 | 354 } // namespace v8 |
OLD | NEW |