OLD | NEW |
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 // TODO(rmcilroy): Remove this define after this flag is turned on globally | |
6 #define V8_IMMINENT_DEPRECATION_WARNINGS | |
7 | |
8 #include "src/v8.h" | 5 #include "src/v8.h" |
9 | 6 |
10 #include "src/compiler.h" | 7 #include "src/compiler.h" |
11 #include "src/interpreter/bytecode-array-iterator.h" | 8 #include "src/interpreter/bytecode-array-iterator.h" |
12 #include "src/interpreter/bytecode-generator.h" | 9 #include "src/interpreter/bytecode-generator.h" |
13 #include "src/interpreter/interpreter.h" | 10 #include "src/interpreter/interpreter.h" |
14 #include "test/cctest/cctest.h" | 11 #include "test/cctest/cctest.h" |
15 #include "test/cctest/test-feedback-vector.h" | 12 #include "test/cctest/test-feedback-vector.h" |
16 | 13 |
17 namespace v8 { | 14 namespace v8 { |
(...skipping 5442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5460 for (size_t i = 0; i < arraysize(snippets); i++) { | 5457 for (size_t i = 0; i < arraysize(snippets); i++) { |
5461 Handle<BytecodeArray> bytecode_array = | 5458 Handle<BytecodeArray> bytecode_array = |
5462 helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet); | 5459 helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet); |
5463 CheckBytecodeArrayEqual(snippets[i], bytecode_array); | 5460 CheckBytecodeArrayEqual(snippets[i], bytecode_array); |
5464 } | 5461 } |
5465 } | 5462 } |
5466 | 5463 |
5467 } // namespace interpreter | 5464 } // namespace interpreter |
5468 } // namespace internal | 5465 } // namespace internal |
5469 } // namespace v8 | 5466 } // namespace v8 |
OLD | NEW |