src/share/vm/code/codeCache.cpp

changeset 2262
1e9a9d2e6509
parent 2103
3e8fbc61cee8
child 2314
f95d63e2154a
equal deleted inserted replaced
2261:f8aaf8522a6b 2262:1e9a9d2e6509
912 } 912 }
913 913
914 } 914 }
915 915
916 #endif // PRODUCT 916 #endif // PRODUCT
917
918 void CodeCache::print_bounds(outputStream* st) {
919 st->print_cr("Code Cache [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
920 _heap->low_boundary(),
921 _heap->high(),
922 _heap->high_boundary());
923 st->print_cr(" total_blobs=" UINT32_FORMAT " nmethods=" UINT32_FORMAT
924 " adapters=" UINT32_FORMAT " free_code_cache=" SIZE_FORMAT,
925 CodeCache::nof_blobs(), CodeCache::nof_nmethods(),
926 CodeCache::nof_adapters(), CodeCache::unallocated_capacity());
927 }

mercurial