| 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 "src/snapshot/deserializer.h" | 5 #include "src/snapshot/deserializer.h" |
| 6 | 6 |
| 7 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
| 8 #include "src/external-reference-table.h" |
| 8 #include "src/heap/heap.h" | 9 #include "src/heap/heap.h" |
| 9 #include "src/isolate.h" | 10 #include "src/isolate.h" |
| 10 #include "src/macro-assembler.h" | 11 #include "src/macro-assembler.h" |
| 11 #include "src/snapshot/natives.h" | 12 #include "src/snapshot/natives.h" |
| 12 #include "src/v8.h" | 13 #include "src/v8.h" |
| 13 | 14 |
| 14 namespace v8 { | 15 namespace v8 { |
| 15 namespace internal { | 16 namespace internal { |
| 16 | 17 |
| 17 void Deserializer::DecodeReservation( | 18 void Deserializer::DecodeReservation( |
| (...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 | 811 |
| 811 default: | 812 default: |
| 812 CHECK(false); | 813 CHECK(false); |
| 813 } | 814 } |
| 814 } | 815 } |
| 815 CHECK_EQ(limit, current); | 816 CHECK_EQ(limit, current); |
| 816 return true; | 817 return true; |
| 817 } | 818 } |
| 818 } // namespace internal | 819 } // namespace internal |
| 819 } // namespace v8 | 820 } // namespace v8 |
| OLD | NEW |