| 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/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 Loading... |
| 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 |
| OLD | NEW |