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