Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/snapshot/deserializer.cc

Issue 1812853002: Moved the ExternalReferenceTable class to src/external-reference-table.cc/.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/isolate.cc ('k') | src/snapshot/serializer-common.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/snapshot/serializer-common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698