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

Side by Side Diff: src/snapshot-external.cc

Issue 684263002: Fix lo_space initialization for external snapshot (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 // Used for building with external snapshots. 5 // Used for building with external snapshots.
6 6
7 #include "src/snapshot.h" 7 #include "src/snapshot.h"
8 8
9 #include "src/serialize.h" 9 #include "src/serialize.h"
10 #include "src/snapshot-source-sink.h" 10 #include "src/snapshot-source-sink.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 success &= source.GetBlob(&snapshot_impl_->context_data, 130 success &= source.GetBlob(&snapshot_impl_->context_data,
131 &snapshot_impl_->context_size); 131 &snapshot_impl_->context_size);
132 snapshot_impl_->context_new_space_used = source.GetInt(); 132 snapshot_impl_->context_new_space_used = source.GetInt();
133 snapshot_impl_->context_pointer_space_used = source.GetInt(); 133 snapshot_impl_->context_pointer_space_used = source.GetInt();
134 snapshot_impl_->context_data_space_used = source.GetInt(); 134 snapshot_impl_->context_data_space_used = source.GetInt();
135 snapshot_impl_->context_code_space_used = source.GetInt(); 135 snapshot_impl_->context_code_space_used = source.GetInt();
136 snapshot_impl_->context_map_space_used = source.GetInt(); 136 snapshot_impl_->context_map_space_used = source.GetInt();
137 snapshot_impl_->context_cell_space_used = source.GetInt(); 137 snapshot_impl_->context_cell_space_used = source.GetInt();
138 snapshot_impl_->context_property_cell_space_used = source.GetInt(); 138 snapshot_impl_->context_property_cell_space_used = source.GetInt();
139 snapshot_impl_->context_lo_space_used = source.GetInt();
139 140
140 DCHECK(success); 141 DCHECK(success);
141 } 142 }
142 143
143 } } // namespace v8::internal 144 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698