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 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1091 HeapObject::PrintHeader(out, "TypeSwitchInfo"); | 1091 HeapObject::PrintHeader(out, "TypeSwitchInfo"); |
1092 PrintF(out, "\n - types: "); | 1092 PrintF(out, "\n - types: "); |
1093 types()->ShortPrint(out); | 1093 types()->ShortPrint(out); |
1094 } | 1094 } |
1095 | 1095 |
1096 | 1096 |
1097 void AllocationSite::AllocationSitePrint(FILE* out) { | 1097 void AllocationSite::AllocationSitePrint(FILE* out) { |
1098 HeapObject::PrintHeader(out, "AllocationSite"); | 1098 HeapObject::PrintHeader(out, "AllocationSite"); |
1099 PrintF(out, " - weak_next: "); | 1099 PrintF(out, " - weak_next: "); |
1100 weak_next()->ShortPrint(out); | 1100 weak_next()->ShortPrint(out); |
1101 PrintF(out, "\n"); | 1101 PrintF(out, "\n - dependent code: "); |
| 1102 dependent_code()->ShortPrint(out); |
1102 | 1103 |
1103 PrintF(out, " - transition_info: "); | 1104 PrintF(out, "\n - transition_info: "); |
1104 if (transition_info()->IsCell()) { | 1105 if (transition_info()->IsCell()) { |
1105 Cell* cell = Cell::cast(transition_info()); | 1106 Cell* cell = Cell::cast(transition_info()); |
1106 Object* cell_contents = cell->value(); | 1107 Object* cell_contents = cell->value(); |
1107 if (cell_contents->IsSmi()) { | 1108 if (cell_contents->IsSmi()) { |
1108 ElementsKind kind = static_cast<ElementsKind>( | 1109 ElementsKind kind = static_cast<ElementsKind>( |
1109 Smi::cast(cell_contents)->value()); | 1110 Smi::cast(cell_contents)->value()); |
1110 PrintF(out, "Array allocation with ElementsKind "); | 1111 PrintF(out, "Array allocation with ElementsKind "); |
1111 PrintElementsKind(out, kind); | 1112 PrintElementsKind(out, kind); |
1112 PrintF(out, "\n"); | 1113 PrintF(out, "\n"); |
1113 return; | 1114 return; |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1232 } | 1233 } |
1233 } | 1234 } |
1234 PrintF(out, "\n"); | 1235 PrintF(out, "\n"); |
1235 } | 1236 } |
1236 | 1237 |
1237 | 1238 |
1238 #endif // OBJECT_PRINT | 1239 #endif // OBJECT_PRINT |
1239 | 1240 |
1240 | 1241 |
1241 } } // namespace v8::internal | 1242 } } // namespace v8::internal |
OLD | NEW |