You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ast->print_cr(" CodeHeap allocation segment size is " SIZE_FORMAT " bytes. This is the smallest possible granularity.", seg_size);
627
-
ast->print_cr(" CodeHeap (committed part) is mapped to " SIZE_FORMAT "granules of size " SIZE_FORMAT " bytes.", granules, granularity);
628
-
ast->print_cr(" Each granule takes " SIZE_FORMAT "bytes of C heap, that is " SIZE_FORMAT "K in total for statistics data.", sizeof(StatElement), (sizeof(StatElement)*granules)/(size_t)K);
626
+
ast->print_cr(" CodeHeap allocation segment size is %zu bytes. This is the smallest possible granularity.", seg_size);
627
+
ast->print_cr(" CodeHeap (committed part) is mapped to %zu granules of size %zu bytes.", granules, granularity);
628
+
ast->print_cr(" Each granule takes %zu bytes of C heap, that is %zuK in total for statistics data.", sizeof(StatElement), (sizeof(StatElement)*granules)/(size_t)K);
629
629
ast->print_cr(" The number of granules is limited to %dk, requiring a granules size of at least %d bytes for a 1GB heap.", (unsignedint)(max_granules/K), (unsignedint)(G/max_granules));
ast->print_cr(" The aggregate step collects information about all free blocks in CodeHeap.\n"
1135
1135
" Subsequent print functions create their output based on this snapshot.\n");
1136
1136
ast->print_cr(" Free space in %s is distributed over %d free blocks.", heapName, nBlocks_free);
1137
-
ast->print_cr(" Each free block takes " SIZE_FORMAT "bytes of C heap for statistics data, that is " SIZE_FORMAT "K in total.", sizeof(FreeBlk), (sizeof(FreeBlk)*nBlocks_free)/K);
1137
+
ast->print_cr(" Each free block takes %zu bytes of C heap for statistics data, that is %zuK in total.", sizeof(FreeBlk), (sizeof(FreeBlk)*nBlocks_free)/K);
0 commit comments