src/share/vm/code/codeCache.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/code/codeCache.cpp	Thu Nov  6 13:59:21 2014
--- new/src/share/vm/code/codeCache.cpp	Thu Nov  6 13:59:21 2014

*** 1286,1296 **** --- 1286,1296 ---- "disabled (not enough contiguous free space left)"); } } void CodeCache::print_codelist(outputStream* st) { ! assert_locked_or_safepoint(CodeCache_lock); ! assert(CodeCache_lock->owned_by_self(), "Checking"); NMethodIterator iter; while(iter.next_alive()) { nmethod* nm = iter.method(); ResourceMark rm;
*** 1300,1310 **** --- 1300,1310 ---- (intptr_t)nm->code_begin(), (intptr_t)nm->code_end()); } } void CodeCache::print_layout(outputStream* st) { ! assert_locked_or_safepoint(CodeCache_lock); ! assert(CodeCache_lock->owned_by_self(), "Checking"); ResourceMark rm; print_summary(st, true); }

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