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

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

Issue 9866030: Move profiler_ticks to Code object, don't walk the stack when patching ICs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 8 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 | Annotate | Revision Log
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime.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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 552
553 void PolymorphicCodeCache::PolymorphicCodeCachePrint(FILE* out) { 553 void PolymorphicCodeCache::PolymorphicCodeCachePrint(FILE* out) {
554 HeapObject::PrintHeader(out, "PolymorphicCodeCache"); 554 HeapObject::PrintHeader(out, "PolymorphicCodeCache");
555 PrintF(out, "\n - cache: "); 555 PrintF(out, "\n - cache: ");
556 cache()->ShortPrint(out); 556 cache()->ShortPrint(out);
557 } 557 }
558 558
559 559
560 void TypeFeedbackInfo::TypeFeedbackInfoPrint(FILE* out) { 560 void TypeFeedbackInfo::TypeFeedbackInfoPrint(FILE* out) {
561 HeapObject::PrintHeader(out, "TypeFeedbackInfo"); 561 HeapObject::PrintHeader(out, "TypeFeedbackInfo");
562 PrintF(out, "\n - ic_total_count: %d, ic_with_typeinfo_count: %d", 562 PrintF(out, "\n - ic_total_count: %d, ic_with_type_info_count: %d",
563 ic_total_count(), ic_with_typeinfo_count()); 563 ic_total_count(), ic_with_type_info_count());
564 PrintF(out, "\n - type_feedback_cells: "); 564 PrintF(out, "\n - type_feedback_cells: ");
565 type_feedback_cells()->FixedArrayPrint(out); 565 type_feedback_cells()->FixedArrayPrint(out);
566 } 566 }
567 567
568 568
569 void AliasedArgumentsEntry::AliasedArgumentsEntryPrint(FILE* out) { 569 void AliasedArgumentsEntry::AliasedArgumentsEntryPrint(FILE* out) {
570 HeapObject::PrintHeader(out, "AliasedArgumentsEntry"); 570 HeapObject::PrintHeader(out, "AliasedArgumentsEntry");
571 PrintF(out, "\n - aliased_context_slot: %d", aliased_context_slot()); 571 PrintF(out, "\n - aliased_context_slot: %d", aliased_context_slot());
572 } 572 }
573 573
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 desc.Print(out); 1011 desc.Print(out);
1012 } 1012 }
1013 PrintF(out, "\n"); 1013 PrintF(out, "\n");
1014 } 1014 }
1015 1015
1016 1016
1017 #endif // OBJECT_PRINT 1017 #endif // OBJECT_PRINT
1018 1018
1019 1019
1020 } } // namespace v8::internal 1020 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698