OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |