src/share/vm/runtime/fprofiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8015774 Cdiff src/share/vm/runtime/fprofiler.cpp

src/share/vm/runtime/fprofiler.cpp

Print this page

        

*** 159,169 **** int s = size(); counters = NEW_C_HEAP_ARRAY(int, s, mtInternal); for (int index = 0; index < s; index++) { counters[index] = 0; } ! base = CodeCache::first_address(); } void PCRecorder::record(address pc) { if (counters == NULL) return; assert(CodeCache::contains(pc), "must be in CodeCache"); --- 159,169 ---- int s = size(); counters = NEW_C_HEAP_ARRAY(int, s, mtInternal); for (int index = 0; index < s; index++) { counters[index] = 0; } ! base = CodeCache::low_bound(); } void PCRecorder::record(address pc) { if (counters == NULL) return; assert(CodeCache::contains(pc), "must be in CodeCache");
src/share/vm/runtime/fprofiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File