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

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

Issue 1796863002: Remove snapshot log parsing and option from tools. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove snapshotLogProcessor leftovers. Created 4 years, 8 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
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/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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698