Add a bit more room for type string when reporting heap

stats to make sure PRIVATE_EXTERNAL_ASCII_STRING_TYPE fits.
Review URL: http://codereview.chromium.org/726002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
kasperl@chromium.org 2010-03-09 14:43:01 +00:00
parent 504664365d
commit c909e5b75f

View File

@ -1414,7 +1414,7 @@ static void ReportHistogram(bool print_spill) {
PrintF("\n Object Histogram:\n"); PrintF("\n Object Histogram:\n");
for (int i = 0; i <= LAST_TYPE; i++) { for (int i = 0; i <= LAST_TYPE; i++) {
if (heap_histograms[i].number() > 0) { if (heap_histograms[i].number() > 0) {
PrintF(" %-33s%10d (%10d bytes)\n", PrintF(" %-34s%10d (%10d bytes)\n",
heap_histograms[i].name(), heap_histograms[i].name(),
heap_histograms[i].number(), heap_histograms[i].number(),
heap_histograms[i].bytes()); heap_histograms[i].bytes());
@ -1431,7 +1431,7 @@ static void ReportHistogram(bool print_spill) {
STRING_TYPE_LIST(INCREMENT) STRING_TYPE_LIST(INCREMENT)
#undef INCREMENT #undef INCREMENT
if (string_number > 0) { if (string_number > 0) {
PrintF(" %-33s%10d (%10d bytes)\n\n", "STRING_TYPE", string_number, PrintF(" %-34s%10d (%10d bytes)\n\n", "STRING_TYPE", string_number,
string_bytes); string_bytes);
} }
@ -1500,7 +1500,7 @@ void NewSpace::ReportStatistics() {
PrintF("\n Object Histogram:\n"); PrintF("\n Object Histogram:\n");
for (int i = 0; i <= LAST_TYPE; i++) { for (int i = 0; i <= LAST_TYPE; i++) {
if (allocated_histogram_[i].number() > 0) { if (allocated_histogram_[i].number() > 0) {
PrintF(" %-33s%10d (%10d bytes)\n", PrintF(" %-34s%10d (%10d bytes)\n",
allocated_histogram_[i].name(), allocated_histogram_[i].name(),
allocated_histogram_[i].number(), allocated_histogram_[i].number(),
allocated_histogram_[i].bytes()); allocated_histogram_[i].bytes());