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 |
| 3 // found in the LICENSE file. |
2 | 4 |
3 #include "src/snapshot/deserializer.h" | 5 #include "src/snapshot/deserializer.h" |
4 | 6 |
5 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
6 #include "src/heap/heap.h" | 8 #include "src/heap/heap.h" |
7 #include "src/isolate.h" | 9 #include "src/isolate.h" |
8 #include "src/macro-assembler.h" | 10 #include "src/macro-assembler.h" |
9 #include "src/snapshot/natives.h" | 11 #include "src/snapshot/natives.h" |
10 #include "src/v8.h" | 12 #include "src/v8.h" |
11 | 13 |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 | 803 |
802 default: | 804 default: |
803 CHECK(false); | 805 CHECK(false); |
804 } | 806 } |
805 } | 807 } |
806 CHECK_EQ(limit, current); | 808 CHECK_EQ(limit, current); |
807 return true; | 809 return true; |
808 } | 810 } |
809 } // namespace internal | 811 } // namespace internal |
810 } // namespace v8 | 812 } // namespace v8 |
OLD | NEW |