Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(806)

Side by Side Diff: src/objects-printer.cc

Issue 110573004: Merge bleeding_edge 17696:18016. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
1118 1118
1119 1119
1120 void AllocationSite::AllocationSitePrint(FILE* out) { 1120 void AllocationSite::AllocationSitePrint(FILE* out) {
1121 HeapObject::PrintHeader(out, "AllocationSite"); 1121 HeapObject::PrintHeader(out, "AllocationSite");
1122 PrintF(out, " - weak_next: "); 1122 PrintF(out, " - weak_next: ");
1123 weak_next()->ShortPrint(out); 1123 weak_next()->ShortPrint(out);
1124 PrintF(out, "\n - dependent code: "); 1124 PrintF(out, "\n - dependent code: ");
1125 dependent_code()->ShortPrint(out); 1125 dependent_code()->ShortPrint(out);
1126 PrintF(out, "\n - nested site: "); 1126 PrintF(out, "\n - nested site: ");
1127 nested_site()->ShortPrint(out); 1127 nested_site()->ShortPrint(out);
1128 PrintF(out, "\n - memento found count: ");
1129 memento_found_count()->ShortPrint(out);
1130 PrintF(out, "\n - memento create count: ");
1131 memento_create_count()->ShortPrint(out);
1132 PrintF(out, "\n - pretenure decision: ");
1133 pretenure_decision()->ShortPrint(out);
1128 PrintF(out, "\n - transition_info: "); 1134 PrintF(out, "\n - transition_info: ");
1129 if (transition_info()->IsCell()) { 1135 if (transition_info()->IsSmi()) {
1130 Cell* cell = Cell::cast(transition_info()); 1136 ElementsKind kind = GetElementsKind();
1131 Object* cell_contents = cell->value(); 1137 PrintF(out, "Array allocation with ElementsKind ");
1132 if (cell_contents->IsSmi()) { 1138 PrintElementsKind(out, kind);
1133 ElementsKind kind = static_cast<ElementsKind>( 1139 PrintF(out, "\n");
1134 Smi::cast(cell_contents)->value()); 1140 return;
1135 PrintF(out, "Array allocation with ElementsKind ");
1136 PrintElementsKind(out, kind);
1137 PrintF(out, "\n");
1138 return;
1139 }
1140 } else if (transition_info()->IsJSArray()) { 1141 } else if (transition_info()->IsJSArray()) {
1141 PrintF(out, "Array literal "); 1142 PrintF(out, "Array literal ");
1142 transition_info()->ShortPrint(out); 1143 transition_info()->ShortPrint(out);
1143 PrintF(out, "\n"); 1144 PrintF(out, "\n");
1144 return; 1145 return;
1145 } 1146 }
1146 1147
1147 PrintF(out, "unknown transition_info"); 1148 PrintF(out, "unknown transition_info");
1148 transition_info()->ShortPrint(out); 1149 transition_info()->ShortPrint(out);
1149 PrintF(out, "\n"); 1150 PrintF(out, "\n");
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 } 1258 }
1258 } 1259 }
1259 PrintF(out, "\n"); 1260 PrintF(out, "\n");
1260 } 1261 }
1261 1262
1262 1263
1263 #endif // OBJECT_PRINT 1264 #endif // OBJECT_PRINT
1264 1265
1265 1266
1266 } } // namespace v8::internal 1267 } } // namespace v8::internal
OLDNEW
« include/v8-platform.h ('K') | « src/objects-inl.h ('k') | src/objects-visiting.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698