| 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 #include "src/interpreter/bytecode-array-writer.h" | 5 #include "src/interpreter/bytecode-array-writer.h" |
| 6 | 6 |
| 7 #include "src/api.h" | 7 #include "src/api.h" |
| 8 #include "src/interpreter/bytecode-label.h" | 8 #include "src/interpreter/bytecode-label.h" |
| 9 #include "src/interpreter/bytecode-register.h" | |
| 10 #include "src/interpreter/constant-array-builder.h" | 9 #include "src/interpreter/constant-array-builder.h" |
| 11 #include "src/log.h" | 10 #include "src/log.h" |
| 12 | 11 |
| 13 namespace v8 { | 12 namespace v8 { |
| 14 namespace internal { | 13 namespace internal { |
| 15 namespace interpreter { | 14 namespace interpreter { |
| 16 | 15 |
| 17 STATIC_CONST_MEMBER_DEFINITION const size_t | 16 STATIC_CONST_MEMBER_DEFINITION const size_t |
| 18 BytecodeArrayWriter::kMaxSizeOfPackedBytecode; | 17 BytecodeArrayWriter::kMaxSizeOfPackedBytecode; |
| 19 | 18 |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 node->set_bytecode(node->bytecode(), k32BitJumpPlaceholder); | 383 node->set_bytecode(node->bytecode(), k32BitJumpPlaceholder); |
| 385 break; | 384 break; |
| 386 } | 385 } |
| 387 } | 386 } |
| 388 EmitBytecode(node); | 387 EmitBytecode(node); |
| 389 } | 388 } |
| 390 | 389 |
| 391 } // namespace interpreter | 390 } // namespace interpreter |
| 392 } // namespace internal | 391 } // namespace internal |
| 393 } // namespace v8 | 392 } // namespace v8 |
| OLD | NEW |