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

Side by Side Diff: src/objects-printer.cc

Issue 441643008: Track number of generic ICs per function (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime-profiler.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/disasm.h" 7 #include "src/disasm.h"
8 #include "src/disassembler.h" 8 #include "src/disassembler.h"
9 #include "src/jsregexp.h" 9 #include "src/jsregexp.h"
10 #include "src/objects-visiting.h" 10 #include "src/objects-visiting.h"
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 479
480 void PolymorphicCodeCache::PolymorphicCodeCachePrint(OStream& os) { // NOLINT 480 void PolymorphicCodeCache::PolymorphicCodeCachePrint(OStream& os) { // NOLINT
481 HeapObject::PrintHeader(os, "PolymorphicCodeCache"); 481 HeapObject::PrintHeader(os, "PolymorphicCodeCache");
482 os << "\n - cache: " << Brief(cache()); 482 os << "\n - cache: " << Brief(cache());
483 } 483 }
484 484
485 485
486 void TypeFeedbackInfo::TypeFeedbackInfoPrint(OStream& os) { // NOLINT 486 void TypeFeedbackInfo::TypeFeedbackInfoPrint(OStream& os) { // NOLINT
487 HeapObject::PrintHeader(os, "TypeFeedbackInfo"); 487 HeapObject::PrintHeader(os, "TypeFeedbackInfo");
488 os << " - ic_total_count: " << ic_total_count() 488 os << " - ic_total_count: " << ic_total_count()
489 << ", ic_with_type_info_count: " << ic_with_type_info_count() << "\n"; 489 << ", ic_with_type_info_count: " << ic_with_type_info_count()
490 << ", ic_generic_count: " << ic_generic_count() << "\n";
490 } 491 }
491 492
492 493
493 void AliasedArgumentsEntry::AliasedArgumentsEntryPrint(OStream& os) { // NOLINT 494 void AliasedArgumentsEntry::AliasedArgumentsEntryPrint(OStream& os) { // NOLINT
494 HeapObject::PrintHeader(os, "AliasedArgumentsEntry"); 495 HeapObject::PrintHeader(os, "AliasedArgumentsEntry");
495 os << "\n - aliased_context_slot: " << aliased_context_slot(); 496 os << "\n - aliased_context_slot: " << aliased_context_slot();
496 } 497 }
497 498
498 499
499 void FixedArray::FixedArrayPrint(OStream& os) { // NOLINT 500 void FixedArray::FixedArrayPrint(OStream& os) { // NOLINT
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 } 1112 }
1112 } 1113 }
1113 os << "\n"; 1114 os << "\n";
1114 } 1115 }
1115 1116
1116 1117
1117 #endif // OBJECT_PRINT 1118 #endif // OBJECT_PRINT
1118 1119
1119 1120
1120 } } // namespace v8::internal 1121 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698