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 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 void TypeSwitchInfo::TypeSwitchInfoPrint(FILE* out) { | 1016 void TypeSwitchInfo::TypeSwitchInfoPrint(FILE* out) { |
1017 HeapObject::PrintHeader(out, "TypeSwitchInfo"); | 1017 HeapObject::PrintHeader(out, "TypeSwitchInfo"); |
1018 PrintF(out, "\n - types: "); | 1018 PrintF(out, "\n - types: "); |
1019 types()->ShortPrint(out); | 1019 types()->ShortPrint(out); |
1020 } | 1020 } |
1021 | 1021 |
1022 | 1022 |
1023 void AllocationSiteInfo::AllocationSiteInfoPrint(FILE* out) { | 1023 void AllocationSiteInfo::AllocationSiteInfoPrint(FILE* out) { |
1024 HeapObject::PrintHeader(out, "AllocationSiteInfo"); | 1024 HeapObject::PrintHeader(out, "AllocationSiteInfo"); |
1025 PrintF(out, " - payload: "); | 1025 PrintF(out, " - payload: "); |
1026 if (payload()->IsJSArray()) { | 1026 if (payload()->IsJSGlobalPropertyCell()) { |
| 1027 JSGlobalPropertyCell* cell = JSGlobalPropertyCell::cast(payload()); |
| 1028 Object* cell_contents = cell->value(); |
| 1029 if (cell_contents->IsSmi()) { |
| 1030 ElementsKind kind = static_cast<ElementsKind>( |
| 1031 Smi::cast(cell_contents)->value()); |
| 1032 PrintF(out, "Array allocation with ElementsKind "); |
| 1033 PrintElementsKind(out, kind); |
| 1034 PrintF(out, "\n"); |
| 1035 return; |
| 1036 } |
| 1037 } else if (payload()->IsJSArray()) { |
1027 PrintF(out, "Array literal "); | 1038 PrintF(out, "Array literal "); |
1028 payload()->ShortPrint(out); | 1039 payload()->ShortPrint(out); |
1029 PrintF(out, "\n"); | 1040 PrintF(out, "\n"); |
1030 return; | 1041 return; |
1031 } | 1042 } |
1032 | 1043 |
1033 PrintF(out, "unknown payload "); | 1044 PrintF(out, "unknown payload "); |
1034 payload()->ShortPrint(out); | 1045 payload()->ShortPrint(out); |
1035 PrintF(out, "\n"); | 1046 PrintF(out, "\n"); |
1036 } | 1047 } |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1133 } | 1144 } |
1134 } | 1145 } |
1135 PrintF(out, "\n"); | 1146 PrintF(out, "\n"); |
1136 } | 1147 } |
1137 | 1148 |
1138 | 1149 |
1139 #endif // OBJECT_PRINT | 1150 #endif // OBJECT_PRINT |
1140 | 1151 |
1141 | 1152 |
1142 } } // namespace v8::internal | 1153 } } // namespace v8::internal |
OLD | NEW |