comparison src/share/vm/memory/generation.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 e7dead7e90af
children d2a62e0f25eb
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
597 597
598 // PrintHeapAtGC support 598 // PrintHeapAtGC support
599 virtual void print() const; 599 virtual void print() const;
600 virtual void print_on(outputStream* st) const; 600 virtual void print_on(outputStream* st) const;
601 601
602 virtual void verify(bool allow_dirty) = 0; 602 virtual void verify() = 0;
603 603
604 struct StatRecord { 604 struct StatRecord {
605 int invocations; 605 int invocations;
606 elapsedTimer accumulated_time; 606 elapsedTimer accumulated_time;
607 StatRecord() : 607 StatRecord() :
751 751
752 virtual void gc_epilogue(bool full); 752 virtual void gc_epilogue(bool full);
753 753
754 virtual void record_spaces_top(); 754 virtual void record_spaces_top();
755 755
756 virtual void verify(bool allow_dirty); 756 virtual void verify();
757 virtual void print_on(outputStream* st) const; 757 virtual void print_on(outputStream* st) const;
758 }; 758 };
759 759
760 #endif // SHARE_VM_MEMORY_GENERATION_HPP 760 #endif // SHARE_VM_MEMORY_GENERATION_HPP