| OLD | NEW |
| 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 // The common functionality when building with or without snapshots. | 5 // The common functionality when building with or without snapshots. |
| 6 | 6 |
| 7 #include "src/v8.h" | 7 #include "src/v8.h" |
| 8 | 8 |
| 9 #include "src/api.h" | 9 #include "src/api.h" |
| 10 #include "src/base/platform/platform.h" | 10 #include "src/base/platform/platform.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 int startup_total = 0; | 103 int startup_total = 0; |
| 104 int context_total = 0; | 104 int context_total = 0; |
| 105 for (auto& reservation : startup_reservations) { | 105 for (auto& reservation : startup_reservations) { |
| 106 startup_total += reservation.chunk_size(); | 106 startup_total += reservation.chunk_size(); |
| 107 } | 107 } |
| 108 for (auto& reservation : context_reservations) { | 108 for (auto& reservation : context_reservations) { |
| 109 context_total += reservation.chunk_size(); | 109 context_total += reservation.chunk_size(); |
| 110 } | 110 } |
| 111 PrintF( | 111 PrintF( |
| 112 "Deserialization will reserve:\n" | 112 "Deserialization will reserve:\n" |
| 113 "%10d bytes for startup\n" | 113 "%10d bytes per isolate\n" |
| 114 "%10d bytes per context\n", | 114 "%10d bytes per context\n", |
| 115 startup_total, context_total); | 115 startup_total, context_total); |
| 116 } | 116 } |
| 117 | 117 |
| 118 for (int space = 0; space < i::Serializer::kNumberOfSpaces; space++) { | 118 for (int space = 0; space < i::Serializer::kNumberOfSpaces; space++) { |
| 119 bool single_chunk = true; | 119 bool single_chunk = true; |
| 120 while (!startup_reservations[startup_index].is_last()) { | 120 while (!startup_reservations[startup_index].is_last()) { |
| 121 single_chunk = false; | 121 single_chunk = false; |
| 122 startup_index++; | 122 startup_index++; |
| 123 } | 123 } |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 int startup_length; | 220 int startup_length; |
| 221 memcpy(&startup_length, data->data + kStartupLengthOffset, kIntSize); | 221 memcpy(&startup_length, data->data + kStartupLengthOffset, kIntSize); |
| 222 int context_offset = ContextOffset(startup_length); | 222 int context_offset = ContextOffset(startup_length); |
| 223 const byte* context_data = | 223 const byte* context_data = |
| 224 reinterpret_cast<const byte*>(data->data + context_offset); | 224 reinterpret_cast<const byte*>(data->data + context_offset); |
| 225 DCHECK_LT(context_offset, data->raw_size); | 225 DCHECK_LT(context_offset, data->raw_size); |
| 226 int context_length = data->raw_size - context_offset; | 226 int context_length = data->raw_size - context_offset; |
| 227 return Vector<const byte>(context_data, context_length); | 227 return Vector<const byte>(context_data, context_length); |
| 228 } | 228 } |
| 229 } } // namespace v8::internal | 229 } } // namespace v8::internal |
| OLD | NEW |