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/serializer.h" | 5 #include "src/snapshot/serializer.h" |
6 | 6 |
7 #include "src/macro-assembler.h" | 7 #include "src/macro-assembler.h" |
8 #include "src/snapshot/natives.h" | 8 #include "src/snapshot/natives.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 return true; | 311 return true; |
312 } | 312 } |
313 | 313 |
314 void Serializer::ObjectSerializer::SerializePrologue(AllocationSpace space, | 314 void Serializer::ObjectSerializer::SerializePrologue(AllocationSpace space, |
315 int size, Map* map) { | 315 int size, Map* map) { |
316 if (serializer_->code_address_map_) { | 316 if (serializer_->code_address_map_) { |
317 const char* code_name = | 317 const char* code_name = |
318 serializer_->code_address_map_->Lookup(object_->address()); | 318 serializer_->code_address_map_->Lookup(object_->address()); |
319 LOG(serializer_->isolate_, | 319 LOG(serializer_->isolate_, |
320 CodeNameEvent(object_->address(), sink_->Position(), code_name)); | 320 CodeNameEvent(object_->address(), sink_->Position(), code_name)); |
321 LOG(serializer_->isolate_, | |
322 SnapshotPositionEvent(object_, sink_->Position())); | |
323 } | 321 } |
324 | 322 |
325 BackReference back_reference; | 323 BackReference back_reference; |
326 if (space == LO_SPACE) { | 324 if (space == LO_SPACE) { |
327 sink_->Put(kNewObject + reference_representation_ + space, | 325 sink_->Put(kNewObject + reference_representation_ + space, |
328 "NewLargeObject"); | 326 "NewLargeObject"); |
329 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords"); | 327 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords"); |
330 if (object_->IsCode()) { | 328 if (object_->IsCode()) { |
331 sink_->Put(EXECUTABLE, "executable large object"); | 329 sink_->Put(EXECUTABLE, "executable large object"); |
332 } else { | 330 } else { |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 if (to_skip != 0 && return_skip == kIgnoringReturn) { | 761 if (to_skip != 0 && return_skip == kIgnoringReturn) { |
764 sink_->Put(kSkip, "Skip"); | 762 sink_->Put(kSkip, "Skip"); |
765 sink_->PutInt(to_skip, "SkipDistance"); | 763 sink_->PutInt(to_skip, "SkipDistance"); |
766 to_skip = 0; | 764 to_skip = 0; |
767 } | 765 } |
768 return to_skip; | 766 return to_skip; |
769 } | 767 } |
770 | 768 |
771 } // namespace internal | 769 } // namespace internal |
772 } // namespace v8 | 770 } // namespace v8 |
OLD | NEW |