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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 | 1118 |
1119 void AllocationSite::AllocationSitePrint(FILE* out) { | 1119 void AllocationSite::AllocationSitePrint(FILE* out) { |
1120 HeapObject::PrintHeader(out, "AllocationSite"); | 1120 HeapObject::PrintHeader(out, "AllocationSite"); |
1121 PrintF(out, " - weak_next: "); | 1121 PrintF(out, " - weak_next: "); |
1122 weak_next()->ShortPrint(out); | 1122 weak_next()->ShortPrint(out); |
1123 PrintF(out, "\n - dependent code: "); | 1123 PrintF(out, "\n - dependent code: "); |
1124 dependent_code()->ShortPrint(out); | 1124 dependent_code()->ShortPrint(out); |
1125 PrintF(out, "\n - nested site: "); | 1125 PrintF(out, "\n - nested site: "); |
1126 nested_site()->ShortPrint(out); | 1126 nested_site()->ShortPrint(out); |
1127 PrintF(out, "\n - transition_info: "); | 1127 PrintF(out, "\n - transition_info: "); |
1128 if (transition_info()->IsCell()) { | 1128 if (transition_info()->IsSmi()) { |
1129 Cell* cell = Cell::cast(transition_info()); | 1129 ElementsKind kind = GetElementsKind(); |
1130 Object* cell_contents = cell->value(); | 1130 PrintF(out, "Array allocation with ElementsKind "); |
1131 if (cell_contents->IsSmi()) { | 1131 PrintElementsKind(out, kind); |
1132 ElementsKind kind = static_cast<ElementsKind>( | 1132 PrintF(out, "\n"); |
1133 Smi::cast(cell_contents)->value()); | 1133 return; |
1134 PrintF(out, "Array allocation with ElementsKind "); | |
1135 PrintElementsKind(out, kind); | |
1136 PrintF(out, "\n"); | |
1137 return; | |
1138 } | |
1139 } else if (transition_info()->IsJSArray()) { | 1134 } else if (transition_info()->IsJSArray()) { |
1140 PrintF(out, "Array literal "); | 1135 PrintF(out, "Array literal "); |
1141 transition_info()->ShortPrint(out); | 1136 transition_info()->ShortPrint(out); |
1142 PrintF(out, "\n"); | 1137 PrintF(out, "\n"); |
1143 return; | 1138 return; |
1144 } | 1139 } |
1145 | 1140 |
1146 PrintF(out, "unknown transition_info"); | 1141 PrintF(out, "unknown transition_info"); |
1147 transition_info()->ShortPrint(out); | 1142 transition_info()->ShortPrint(out); |
1148 PrintF(out, "\n"); | 1143 PrintF(out, "\n"); |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1256 } | 1251 } |
1257 } | 1252 } |
1258 PrintF(out, "\n"); | 1253 PrintF(out, "\n"); |
1259 } | 1254 } |
1260 | 1255 |
1261 | 1256 |
1262 #endif // OBJECT_PRINT | 1257 #endif // OBJECT_PRINT |
1263 | 1258 |
1264 | 1259 |
1265 } } // namespace v8::internal | 1260 } } // namespace v8::internal |
OLD | NEW |