| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/v8.h" | |
| 6 | |
| 7 #include "src/codegen.h" | 5 #include "src/codegen.h" |
| 8 #include "src/deoptimizer.h" | 6 #include "src/deoptimizer.h" |
| 9 #include "src/full-codegen/full-codegen.h" | 7 #include "src/full-codegen/full-codegen.h" |
| 10 #include "src/safepoint-table.h" | 8 #include "src/safepoint-table.h" |
| 11 | 9 |
| 12 namespace v8 { | 10 namespace v8 { |
| 13 namespace internal { | 11 namespace internal { |
| 14 | 12 |
| 15 const int Deoptimizer::table_entry_size_ = 8; | 13 const int Deoptimizer::table_entry_size_ = 8; |
| 16 | 14 |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 355 |
| 358 void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) { | 356 void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) { |
| 359 DCHECK(FLAG_enable_embedded_constant_pool); | 357 DCHECK(FLAG_enable_embedded_constant_pool); |
| 360 SetFrameSlot(offset, value); | 358 SetFrameSlot(offset, value); |
| 361 } | 359 } |
| 362 | 360 |
| 363 | 361 |
| 364 #undef __ | 362 #undef __ |
| 365 } // namespace internal | 363 } // namespace internal |
| 366 } // namespace v8 | 364 } // namespace v8 |
| OLD | NEW |