src/share/vm/code/codeCache.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/code/codeCache.cpp

src/share/vm/code/codeCache.cpp

Print this page

        

*** 1369,1382 **** FOR_ALL_HEAPS(heap) { FOR_ALL_BLOBS(cb, *heap) { if (cb->is_alive()) { number_of_blobs++; code_size += cb->code_size(); ! OopMapSet* set = cb->oop_maps(); if (set != NULL) { ! number_of_oop_maps += set->size(); ! map_size += set->heap_size(); } } } } tty->print_cr("OopMaps"); --- 1369,1382 ---- FOR_ALL_HEAPS(heap) { FOR_ALL_BLOBS(cb, *heap) { if (cb->is_alive()) { number_of_blobs++; code_size += cb->code_size(); ! ImmutableOopMapSet* set = cb->oop_maps(); if (set != NULL) { ! number_of_oop_maps += set->count(); ! map_size += set->size(); } } } } tty->print_cr("OopMaps");
src/share/vm/code/codeCache.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File