< prev index next >

src/share/vm/gc/g1/g1CollectedHeap.hpp

Print this page

        

*** 152,162 **** // The number of regions we could create by expansion. uint _expansion_regions; // The block offset table for the G1 heap. ! G1BlockOffsetSharedArray* _bot_shared; // Tears down the region sets / lists so that they are empty and the // regions on the heap do not belong to a region set / list. The // only exception is the humongous set which we leave unaltered. If // free_list_only is true, it will only tear down the master free --- 152,162 ---- // The number of regions we could create by expansion. uint _expansion_regions; // The block offset table for the G1 heap. ! G1BlockOffsetTable* _bot; // Tears down the region sets / lists so that they are empty and the // regions on the heap do not belong to a region set / list. The // only exception is the humongous set which we leave unaltered. If // free_list_only is true, it will only tear down the master free
*** 1006,1016 **** // Apply the given closure on all cards in the Dirty Card Queue Set, emptying it. void iterate_dirty_card_closure(CardTableEntryClosure* cl, uint worker_i); // The shared block offset table array. ! G1BlockOffsetSharedArray* bot_shared() const { return _bot_shared; } // Reference Processing accessors // The STW reference processor.... ReferenceProcessor* ref_processor_stw() const { return _ref_processor_stw; } --- 1006,1016 ---- // Apply the given closure on all cards in the Dirty Card Queue Set, emptying it. void iterate_dirty_card_closure(CardTableEntryClosure* cl, uint worker_i); // The shared block offset table array. ! G1BlockOffsetTable* bot() const { return _bot; } // Reference Processing accessors // The STW reference processor.... ReferenceProcessor* ref_processor_stw() const { return _ref_processor_stw; }
< prev index next >