comparison src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp @ 626:87fa6e083d82

6760309: G1: update remembered sets during Full GCs Reviewed-by: iveresov, tonyp
author apetrusenko
date Tue, 10 Mar 2009 00:47:05 -0700
parents 4f360ec815ba
children 96b229c54d1e
comparison
equal deleted inserted replaced
620:bcedf688d882 626:87fa6e083d82
92 _g1->schedule_popular_region_evac(to); 92 _g1->schedule_popular_region_evac(to);
93 } 93 }
94 } 94 }
95 } 95 }
96 } 96 }
97
98 inline void UpdateRSOopClosure::do_oop(narrowOop* p) {
99 guarantee(false, "NYI");
100 }
101
102 inline void UpdateRSOopClosure::do_oop(oop* p) {
103 assert(_from != NULL, "from region must be non-NULL");
104 _rs->par_write_ref(_from, p, _worker_i);
105 }