comparison src/share/vm/gc_implementation/g1/g1MarkSweep.cpp @ 6008:b632e80fc9dc

4988100: oop_verify_old_oop appears to be dead Summary: removed oop_verify_old_oop and allow_dirty. Also reviewed by: alexlamsl@gmail.com Reviewed-by: jmasa, jwilhelm
author brutisso
date Mon, 16 Apr 2012 08:57:18 +0200
parents 5c86f8211d1e
children a2f7274eb6ef
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
191 // used when verifying the dictionaries and so removing them 191 // used when verifying the dictionaries and so removing them
192 // from the mark word can make verification of the dictionaries 192 // from the mark word can make verification of the dictionaries
193 // fail. At the end of the GC, the orginal mark word values 193 // fail. At the end of the GC, the orginal mark word values
194 // (including hash values) are restored to the appropriate 194 // (including hash values) are restored to the appropriate
195 // objects. 195 // objects.
196 Universe::heap()->verify(/* allow dirty */ true, 196 Universe::heap()->verify(/* silent */ false,
197 /* silent */ false,
198 /* option */ VerifyOption_G1UseMarkWord); 197 /* option */ VerifyOption_G1UseMarkWord);
199 198
200 G1CollectedHeap* g1h = G1CollectedHeap::heap(); 199 G1CollectedHeap* g1h = G1CollectedHeap::heap();
201 gclog_or_tty->print_cr("]"); 200 gclog_or_tty->print_cr("]");
202 } 201 }