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