hotspot/src/share/vm/code/codeCache.cpp
changeset 7108 4f87b92f3060
parent 6418 6671edbd230e
child 7397 5b173b4ca846
equal deleted inserted replaced
7107:db4e07fb94ed 7108:4f87b92f3060
   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 }