| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 67adad6919d384f791ab7ac22fc68508f552eaf6..d6e892083826e2232abbb83529457377d524570a 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -554,6 +554,15 @@ void PolymorphicCodeCache::PolymorphicCodeCachePrint(FILE* out) {
|
| }
|
|
|
|
|
| +void TypeFeedbackInfo::TypeFeedbackInfoPrint(FILE* out) {
|
| + HeapObject::PrintHeader(out, "TypeFeedbackInfo");
|
| + PrintF(out, "\n - ic_total_count: %d, ic_with_typeinfo_count: %d",
|
| + ic_total_count(), ic_with_typeinfo_count());
|
| + PrintF(out, "\n - type_feedback_cells: ");
|
| + type_feedback_cells()->FixedArrayPrint(out);
|
| +}
|
| +
|
| +
|
| void FixedArray::FixedArrayPrint(FILE* out) {
|
| HeapObject::PrintHeader(out, "FixedArray");
|
| PrintF(out, " - length: %d", length());
|
|
|