src/share/vm/memory/cardTableModRefBS.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 80060074 Cdiff src/share/vm/memory/cardTableModRefBS.cpp

src/share/vm/memory/cardTableModRefBS.cpp

Print this page

        

*** 170,192 **** if (_committed) { delete[] _committed; _committed = NULL; } if (_lowest_non_clean) { ! FREE_C_HEAP_ARRAY(CardArr, _lowest_non_clean, mtGC); _lowest_non_clean = NULL; } if (_lowest_non_clean_chunk_size) { ! FREE_C_HEAP_ARRAY(size_t, _lowest_non_clean_chunk_size, mtGC); _lowest_non_clean_chunk_size = NULL; } if (_lowest_non_clean_base_chunk_index) { ! FREE_C_HEAP_ARRAY(uintptr_t, _lowest_non_clean_base_chunk_index, mtGC); _lowest_non_clean_base_chunk_index = NULL; } if (_last_LNC_resizing_collection) { ! FREE_C_HEAP_ARRAY(int, _last_LNC_resizing_collection, mtGC); _last_LNC_resizing_collection = NULL; } } int CardTableModRefBS::find_covering_region_by_base(HeapWord* base) { --- 170,192 ---- if (_committed) { delete[] _committed; _committed = NULL; } if (_lowest_non_clean) { ! FREE_C_HEAP_ARRAY(CardArr, _lowest_non_clean); _lowest_non_clean = NULL; } if (_lowest_non_clean_chunk_size) { ! FREE_C_HEAP_ARRAY(size_t, _lowest_non_clean_chunk_size); _lowest_non_clean_chunk_size = NULL; } if (_lowest_non_clean_base_chunk_index) { ! FREE_C_HEAP_ARRAY(uintptr_t, _lowest_non_clean_base_chunk_index); _lowest_non_clean_base_chunk_index = NULL; } if (_last_LNC_resizing_collection) { ! FREE_C_HEAP_ARRAY(int, _last_LNC_resizing_collection); _last_LNC_resizing_collection = NULL; } } int CardTableModRefBS::find_covering_region_by_base(HeapWord* base) {
src/share/vm/memory/cardTableModRefBS.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File