comparison src/share/vm/memory/generation.hpp @ 6154:5142b5110214

Merge
author asaha
date Tue, 08 May 2012 07:29:27 -0700
parents b632e80fc9dc
children d2a62e0f25eb
comparison
equal deleted inserted replaced
6153:aa07e41a9f80 6154:5142b5110214
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