comparison src/share/vm/gc_implementation/g1/heapRegion.hpp @ 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 2a0172480595
children 720b6a76dd9d
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
821 // vo == UseNextMarking, which is to verify the "next" marking 821 // vo == UseNextMarking, which is to verify the "next" marking
822 // information at the end of remark. 822 // information at the end of remark.
823 // Currently there is only one place where this is called with 823 // Currently there is only one place where this is called with
824 // vo == UseMarkWord, which is to verify the marking during a 824 // vo == UseMarkWord, which is to verify the marking during a
825 // full GC. 825 // full GC.
826 void verify(bool allow_dirty, VerifyOption vo, bool *failures) const; 826 void verify(VerifyOption vo, bool *failures) const;
827 827
828 // Override; it uses the "prev" marking information 828 // Override; it uses the "prev" marking information
829 virtual void verify(bool allow_dirty) const; 829 virtual void verify() const;
830 }; 830 };
831 831
832 // HeapRegionClosure is used for iterating over regions. 832 // HeapRegionClosure is used for iterating over regions.
833 // Terminates the iteration when the "doHeapRegion" method returns "true". 833 // Terminates the iteration when the "doHeapRegion" method returns "true".
834 class HeapRegionClosure : public StackObj { 834 class HeapRegionClosure : public StackObj {