< prev index next >

src/share/vm/memory/genCollectedHeap.hpp

Print this page
rev 8156 : 8068582: UseSerialGC not always set up properly
Reviewed-by: jmasa, brutisso, sjohanss

*** 271,285 **** // young gen and, a fortiori, for initializing stores to // objects therein. This applies to DefNew+Tenured and ParNew+CMS // only and may need to be re-examined in case other // kinds of collectors are implemented in the future. virtual bool can_elide_initializing_store_barrier(oop new_obj) { - // We wanted to assert that:- - // assert(UseSerialGC || UseConcMarkSweepGC, - // "Check can_elide_initializing_store_barrier() for this collector"); - // but unfortunately the flag UseSerialGC need not necessarily always - // be set when DefNew+Tenured are being used. return is_in_young(new_obj); } // The "requestor" generation is performing some garbage collection // action for which it would be useful to have scratch space. The --- 271,280 ----
< prev index next >