comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp @ 20309:a08bb8e45ba1

8054341: Remove some obsolete code in G1CollectedHeap class Summary: Remove dead code. Reviewed-by: stefank, brutisso
author tschatzl
date Thu, 07 Aug 2014 22:28:53 +0200
parents 755930f931e3
children bfba6779654b
comparison
equal deleted inserted replaced
20308:9b093813caa9 20309:a08bb8e45ba1
1378 1378
1379 // Iterate over all the ref-containing fields of all objects, calling 1379 // Iterate over all the ref-containing fields of all objects, calling
1380 // "cl.do_oop" on each. 1380 // "cl.do_oop" on each.
1381 virtual void oop_iterate(ExtendedOopClosure* cl); 1381 virtual void oop_iterate(ExtendedOopClosure* cl);
1382 1382
1383 // Same as above, restricted to a memory region.
1384 void oop_iterate(MemRegion mr, ExtendedOopClosure* cl);
1385
1386 // Iterate over all objects, calling "cl.do_object" on each. 1383 // Iterate over all objects, calling "cl.do_object" on each.
1387 virtual void object_iterate(ObjectClosure* cl); 1384 virtual void object_iterate(ObjectClosure* cl);
1388 1385
1389 virtual void safe_object_iterate(ObjectClosure* cl) { 1386 virtual void safe_object_iterate(ObjectClosure* cl) {
1390 object_iterate(cl); 1387 object_iterate(cl);