comparison src/share/vm/code/codeCache.cpp @ 1907:1e9a9d2e6509

6970683: improvements to hs_err output Reviewed-by: kvn, jrose, dholmes, coleenp
author never
date Thu, 21 Oct 2010 11:55:10 -0700
parents 3e8fbc61cee8
children f95d63e2154a
comparison
equal deleted inserted replaced
1906:f8aaf8522a6b 1907: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 }