From 96a30b93d5b3d4d7751e303604187253c5436477 Mon Sep 17 00:00:00 2001 From: kevinw Date: Tue, 2 Aug 2011 14:37:35 +0100 Subject: [PATCH] 7072527: CMS: JMM GC counters overcount in some cases Summary: Avoid overcounting when CMS has concurrent mode failure. Reviewed-by: ysr Contributed-by: rednaxelafx@gmail.com --- .../concurrentMarkSweepGeneration.cpp | 15 --- .../concurrentMarkSweepGeneration.hpp | 1 - test/gc/7072527/TestFullGCCount.java | 95 +++++++++++++++++++ 3 files changed, 95 insertions(+), 16 deletions(-) create mode 100644 test/gc/7072527/TestFullGCCount.java diff --git a/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp b/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp index 9a2fb0270..c5bd4ca29 100644 --- a/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp @@ -2025,9 +2025,6 @@ void CMSCollector::do_compaction_work(bool clear_all_soft_refs) { _intra_sweep_estimate.padded_average()); } - { - TraceCMSMemoryManagerStats tmms(gch->gc_cause()); - } GenMarkSweep::invoke_at_safepoint(_cmsGen->level(), ref_processor(), clear_all_soft_refs); #ifdef ASSERT @@ -9345,15 +9342,3 @@ TraceCMSMemoryManagerStats::TraceCMSMemoryManagerStats(CMSCollector::CollectorSt } } -// when bailing out of cms in concurrent mode failure -TraceCMSMemoryManagerStats::TraceCMSMemoryManagerStats(GCCause::Cause cause): TraceMemoryManagerStats() { - initialize(true /* fullGC */ , - cause /* cause of the GC */, - true /* recordGCBeginTime */, - true /* recordPreGCUsage */, - true /* recordPeakUsage */, - true /* recordPostGCusage */, - true /* recordAccumulatedGCTime */, - true /* recordGCEndTime */, - true /* countCollection */ ); -} diff --git a/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp b/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp index 89b44e8e8..440677403 100644 --- a/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp @@ -1900,7 +1900,6 @@ class TraceCMSMemoryManagerStats : public TraceMemoryManagerStats { public: TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase, GCCause::Cause cause); - TraceCMSMemoryManagerStats(GCCause::Cause cause); }; diff --git a/test/gc/7072527/TestFullGCCount.java b/test/gc/7072527/TestFullGCCount.java new file mode 100644 index 000000000..14a049a89 --- /dev/null +++ b/test/gc/7072527/TestFullGCCount.java @@ -0,0 +1,95 @@ +/* + * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test TestFullGCount.java + * @bug 7072527 + * @summary CMS: JMM GC counters overcount in some cases + * @run main/othervm -XX:+UseConcMarkSweepGC TestFullGCCount + * + */ +import java.util.*; +import java.lang.management.*; + +public class TestFullGCCount { + + public String collectorName = "ConcurrentMarkSweep"; + + public static void main(String [] args) { + + TestFullGCCount t = null; + if (args.length==2) { + t = new TestFullGCCount(args[0], args[1]); + } else { + t = new TestFullGCCount(); + } + System.out.println("Monitoring collector: " + t.collectorName); + t.run(); + } + + public TestFullGCCount(String pool, String collector) { + collectorName = collector; + } + + public TestFullGCCount() { + } + + public void run() { + int count = 0; + int iterations = 20; + long counts[] = new long[iterations]; + boolean diffAlways2 = true; // assume we will fail + + for (int i=0; i0) { + if (counts[i] - counts[i-1] != 2) { + diffAlways2 = false; + } + } + } + if (diffAlways2) { + throw new RuntimeException("FAILED: System.gc must be incrementing count twice."); + } + System.out.println("Passed."); + } + + private long getCollectionCount() { + long count = 0; + List pools = ManagementFactory.getMemoryPoolMXBeans(); + List collectors = ManagementFactory.getGarbageCollectorMXBeans(); + for (int i=0; i