8166910: Convert TestNewSize_test to GTest
authorkzhaldyb
Thu, 20 Oct 2016 10:51:54 +0300
changeset 42028 6218944dbd18
parent 42027 b09ba48a3a5d
child 42029 73e8eed6e85d
8166910: Convert TestNewSize_test to GTest 8166911: Convert TestOldSize_test to GTest Reviewed-by: jwilhelm
hotspot/src/share/vm/gc/shared/collectorPolicy.cpp
hotspot/src/share/vm/utilities/internalVMTests.cpp
hotspot/test/native/gc/shared/test_collectorPolicy.cpp
--- a/hotspot/src/share/vm/gc/shared/collectorPolicy.cpp	Wed Oct 19 18:57:06 2016 +0000
+++ b/hotspot/src/share/vm/gc/shared/collectorPolicy.cpp	Thu Oct 20 10:51:54 2016 +0300
@@ -909,184 +909,3 @@
   _gc_policy_counters = new GCPolicyCounters("Copy:MSC", 2, 3);
 }
 
-/////////////// Unit tests ///////////////
-
-#ifndef PRODUCT
-// Testing that the NewSize flag is handled correct is hard because it
-// depends on so many other configurable variables. This test only tries to
-// verify that there are some basic rules for NewSize honored by the policies.
-class TestGenCollectorPolicy {
-public:
-  static void test_new_size() {
-    size_t flag_value;
-
-    save_flags();
-
-    // If NewSize has been ergonomically set, the collector policy
-    // should use it for min but calculate the initial young size
-    // using NewRatio.
-    flag_value = 20 * M;
-    set_basic_flag_values();
-    FLAG_SET_ERGO(size_t, NewSize, flag_value);
-    verify_young_min(flag_value);
-
-    set_basic_flag_values();
-    FLAG_SET_ERGO(size_t, NewSize, flag_value);
-    verify_scaled_young_initial(InitialHeapSize);
-
-    // If NewSize is set on the command line, it should be used
-    // for both min and initial young size if less than min heap.
-    // Note that once a flag has been set with FLAG_SET_CMDLINE it
-    // will be treated as it have been set on the command line for
-    // the rest of the VM lifetime. This is an irreversible change.
-    flag_value = 20 * M;
-    set_basic_flag_values();
-    FLAG_SET_CMDLINE(size_t, NewSize, flag_value);
-    verify_young_min(flag_value);
-
-    set_basic_flag_values();
-    FLAG_SET_CMDLINE(size_t, NewSize, flag_value);
-    verify_young_initial(flag_value);
-
-    // If NewSize is set on command line, but is larger than the min
-    // heap size, it should only be used for initial young size.
-    flag_value = 80 * M;
-    set_basic_flag_values();
-    FLAG_SET_CMDLINE(size_t, NewSize, flag_value);
-    verify_young_initial(flag_value);
-
-    restore_flags();
-  }
-
-  static void test_old_size() {
-    size_t flag_value;
-    size_t heap_alignment = CollectorPolicy::compute_heap_alignment();
-
-    save_flags();
-
-    // If OldSize is set on the command line, it should be used
-    // for both min and initial old size if less than min heap.
-    flag_value = 20 * M;
-    set_basic_flag_values();
-    FLAG_SET_CMDLINE(size_t, OldSize, flag_value);
-    verify_old_min(flag_value);
-
-    set_basic_flag_values();
-    FLAG_SET_CMDLINE(size_t, OldSize, flag_value);
-    // Calculate what we expect the flag to be.
-    size_t expected_old_initial = align_size_up(InitialHeapSize, heap_alignment) - MaxNewSize;
-    verify_old_initial(expected_old_initial);
-
-    // If MaxNewSize is large, the maximum OldSize will be less than
-    // what's requested on the command line and it should be reset
-    // ergonomically.
-    // We intentionally set MaxNewSize + OldSize > MaxHeapSize (see over_size).
-    flag_value = 30 * M;
-    set_basic_flag_values();
-    FLAG_SET_CMDLINE(size_t, OldSize, flag_value);
-    size_t over_size = 20*M;
-    size_t new_size_value = align_size_up(MaxHeapSize, heap_alignment) - flag_value + over_size;
-    FLAG_SET_CMDLINE(size_t, MaxNewSize, new_size_value);
-    // Calculate what we expect the flag to be.
-    expected_old_initial = align_size_up(MaxHeapSize, heap_alignment) - MaxNewSize;
-    verify_old_initial(expected_old_initial);
-    restore_flags();
-  }
-
-  static void verify_young_min(size_t expected) {
-    MarkSweepPolicy msp;
-    msp.initialize_all();
-
-    assert(msp.min_young_size() <= expected, "%zu  > %zu", msp.min_young_size(), expected);
-  }
-
-  static void verify_young_initial(size_t expected) {
-    MarkSweepPolicy msp;
-    msp.initialize_all();
-
-    assert(msp.initial_young_size() == expected, "%zu != %zu", msp.initial_young_size(), expected);
-  }
-
-  static void verify_scaled_young_initial(size_t initial_heap_size) {
-    MarkSweepPolicy msp;
-    msp.initialize_all();
-
-    if (InitialHeapSize > initial_heap_size) {
-      // InitialHeapSize was adapted by msp.initialize_all, e.g. due to alignment
-      // caused by 64K page size.
-      initial_heap_size = InitialHeapSize;
-    }
-
-    size_t expected = msp.scale_by_NewRatio_aligned(initial_heap_size);
-    assert(msp.initial_young_size() == expected, "%zu != %zu", msp.initial_young_size(), expected);
-    assert(FLAG_IS_ERGO(NewSize) && NewSize == expected,
-        "NewSize should have been set ergonomically to %zu, but was %zu", expected, NewSize);
-  }
-
-  static void verify_old_min(size_t expected) {
-    MarkSweepPolicy msp;
-    msp.initialize_all();
-
-    assert(msp.min_old_size() <= expected, "%zu  > %zu", msp.min_old_size(), expected);
-  }
-
-  static void verify_old_initial(size_t expected) {
-    MarkSweepPolicy msp;
-    msp.initialize_all();
-
-    assert(msp.initial_old_size() == expected, "%zu != %zu", msp.initial_old_size(), expected);
-  }
-
-
-private:
-  static size_t original_InitialHeapSize;
-  static size_t original_MaxHeapSize;
-  static size_t original_MaxNewSize;
-  static size_t original_MinHeapDeltaBytes;
-  static size_t original_NewSize;
-  static size_t original_OldSize;
-
-  static void set_basic_flag_values() {
-    FLAG_SET_ERGO(size_t, MaxHeapSize, 180 * M);
-    FLAG_SET_ERGO(size_t, InitialHeapSize, 100 * M);
-    FLAG_SET_ERGO(size_t, OldSize, 4 * M);
-    FLAG_SET_ERGO(size_t, NewSize, 1 * M);
-    FLAG_SET_ERGO(size_t, MaxNewSize, 80 * M);
-    Arguments::set_min_heap_size(40 * M);
-  }
-
-  static void save_flags() {
-    original_InitialHeapSize   = InitialHeapSize;
-    original_MaxHeapSize       = MaxHeapSize;
-    original_MaxNewSize        = MaxNewSize;
-    original_MinHeapDeltaBytes = MinHeapDeltaBytes;
-    original_NewSize           = NewSize;
-    original_OldSize           = OldSize;
-  }
-
-  static void restore_flags() {
-    InitialHeapSize   = original_InitialHeapSize;
-    MaxHeapSize       = original_MaxHeapSize;
-    MaxNewSize        = original_MaxNewSize;
-    MinHeapDeltaBytes = original_MinHeapDeltaBytes;
-    NewSize           = original_NewSize;
-    OldSize           = original_OldSize;
-  }
-};
-
-size_t TestGenCollectorPolicy::original_InitialHeapSize   = 0;
-size_t TestGenCollectorPolicy::original_MaxHeapSize       = 0;
-size_t TestGenCollectorPolicy::original_MaxNewSize        = 0;
-size_t TestGenCollectorPolicy::original_MinHeapDeltaBytes = 0;
-size_t TestGenCollectorPolicy::original_NewSize           = 0;
-size_t TestGenCollectorPolicy::original_OldSize           = 0;
-
-void TestNewSize_test() {
-  TestGenCollectorPolicy::test_new_size();
-}
-
-void TestOldSize_test() {
-  TestGenCollectorPolicy::test_old_size();
-}
-
-#endif
--- a/hotspot/src/share/vm/utilities/internalVMTests.cpp	Wed Oct 19 18:57:06 2016 +0000
+++ b/hotspot/src/share/vm/utilities/internalVMTests.cpp	Thu Oct 20 10:51:54 2016 +0300
@@ -53,8 +53,6 @@
   run_unit_test(GCTimer_test);
   run_unit_test(CollectedHeap_test);
   run_unit_test(QuickSort_test);
-  run_unit_test(TestNewSize_test);
-  run_unit_test(TestOldSize_test);
   run_unit_test(TestBitMap_test);
   run_unit_test(ObjectMonitor_test);
   run_unit_test(DirectivesParser_test);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hotspot/test/native/gc/shared/test_collectorPolicy.cpp	Thu Oct 20 10:51:54 2016 +0300
@@ -0,0 +1,282 @@
+/*
+ * Copyright (c) 2016, 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.
+ */
+
+#include "precompiled.hpp"
+#include "gc/shared/collectorPolicy.hpp"
+#include "unittest.hpp"
+#include "utilities/macros.hpp"
+
+class TestGenCollectorPolicy {
+ public:
+
+  class Executor {
+   public:
+    virtual void execute() = 0;
+  };
+
+  class UnaryExecutor : public Executor {
+   protected:
+    const size_t param;
+   public:
+    UnaryExecutor(size_t val) : param(val) { }
+  };
+
+  class BinaryExecutor : public Executor {
+   protected:
+    const size_t param1;
+    const size_t param2;
+   public:
+    BinaryExecutor(size_t val1, size_t val2) : param1(val1), param2(val2) { }
+  };
+
+  class MinHeapSizeGuard {
+   private:
+    const size_t _stored_min_heap_size;
+   public:
+    MinHeapSizeGuard() : _stored_min_heap_size(Arguments::min_heap_size()) { }
+    ~MinHeapSizeGuard() {
+      Arguments::set_min_heap_size(_stored_min_heap_size);
+    }
+  };
+
+  class TestWrapper {
+   public:
+    static void test(Executor* setter1, Executor* setter2, Executor* checker) {
+      FLAG_GUARD(InitialHeapSize);
+      FLAG_GUARD(MaxHeapSize);
+      FLAG_GUARD(MaxNewSize);
+      FLAG_GUARD(MinHeapDeltaBytes);
+      FLAG_GUARD(NewSize);
+      FLAG_GUARD(OldSize);
+      MinHeapSizeGuard min_heap_size_guard;
+
+      FLAG_SET_ERGO(size_t, InitialHeapSize, 100 * M);
+      FLAG_SET_ERGO(size_t, OldSize, 4 * M);
+      FLAG_SET_ERGO(size_t, NewSize, 1 * M);
+      FLAG_SET_ERGO(size_t, MaxNewSize, 80 * M);
+      Arguments::set_min_heap_size(40 * M);
+
+      ASSERT_NO_FATAL_FAILURE(setter1->execute());
+
+      if (setter2 != NULL) {
+        ASSERT_NO_FATAL_FAILURE(setter2->execute());
+      }
+
+      ASSERT_NO_FATAL_FAILURE(checker->execute());
+    }
+    static void test(Executor* setter, Executor* checker) {
+      test(setter, NULL, checker);
+    }
+  };
+
+  class SetNewSizeErgo : public UnaryExecutor {
+   public:
+    SetNewSizeErgo(size_t param) : UnaryExecutor(param) { }
+    void execute() {
+      FLAG_SET_ERGO(size_t, NewSize, param);
+    }
+  };
+
+  class CheckYoungMin : public UnaryExecutor {
+   public:
+    CheckYoungMin(size_t param) : UnaryExecutor(param) { }
+    void execute() {
+      MarkSweepPolicy msp;
+      msp.initialize_all();
+      ASSERT_LE(msp.min_young_size(), param);
+    }
+  };
+
+  class CheckScaledYoungInitial : public Executor {
+   public:
+    void execute() {
+      size_t initial_heap_size = InitialHeapSize;
+      MarkSweepPolicy msp;
+      msp.initialize_all();
+
+      if (InitialHeapSize > initial_heap_size) {
+        // InitialHeapSize was adapted by msp.initialize_all, e.g. due to alignment
+        // caused by 64K page size.
+        initial_heap_size = InitialHeapSize;
+      }
+
+      size_t expected = msp.scale_by_NewRatio_aligned(initial_heap_size);
+      ASSERT_EQ(expected, msp.initial_young_size());
+      ASSERT_EQ(expected, NewSize);
+    }
+  };
+
+  class SetNewSizeCmd : public UnaryExecutor {
+   public:
+    SetNewSizeCmd(size_t param) : UnaryExecutor(param) { }
+    void execute() {
+      FLAG_SET_CMDLINE(size_t, NewSize, param);
+    }
+  };
+
+  class CheckYoungInitial : public UnaryExecutor {
+   public:
+    CheckYoungInitial(size_t param) : UnaryExecutor(param) { }
+    void execute() {
+      MarkSweepPolicy msp;
+      msp.initialize_all();
+
+      ASSERT_EQ(param, msp.initial_young_size());
+    }
+  };
+
+  class SetOldSizeCmd : public UnaryExecutor {
+   public:
+    SetOldSizeCmd(size_t param) : UnaryExecutor(param) { }
+    void execute() {
+      FLAG_SET_CMDLINE(size_t, OldSize, param);
+    }
+  };
+
+  class SetMaxNewSizeCmd : public BinaryExecutor {
+   public:
+    SetMaxNewSizeCmd(size_t param1, size_t param2) : BinaryExecutor(param1, param2) { }
+    void execute() {
+      size_t heap_alignment = CollectorPolicy::compute_heap_alignment();
+      size_t new_size_value = align_size_up(MaxHeapSize, heap_alignment)
+              - param1 + param2;
+      FLAG_SET_CMDLINE(size_t, MaxNewSize, new_size_value);
+    }
+  };
+
+  class CheckOldMin : public UnaryExecutor {
+   public:
+    CheckOldMin(size_t param) : UnaryExecutor(param) { }
+    void execute() {
+      MarkSweepPolicy msp;
+      msp.initialize_all();
+      ASSERT_LE(msp.min_old_size(), param);
+    }
+  };
+
+  class CheckOldInitial : public Executor {
+   public:
+    void execute() {
+      size_t heap_alignment = CollectorPolicy::compute_heap_alignment();
+
+      MarkSweepPolicy msp;
+      msp.initialize_all();
+
+      size_t expected_old_initial = align_size_up(InitialHeapSize, heap_alignment)
+              - MaxNewSize;
+
+      ASSERT_EQ(expected_old_initial, msp.initial_old_size());
+    }
+  };
+
+  class CheckOldInitialMaxNewSize : public BinaryExecutor {
+   public:
+    CheckOldInitialMaxNewSize(size_t param1, size_t param2) : BinaryExecutor(param1, param2) { }
+    void execute() {
+      size_t heap_alignment = CollectorPolicy::compute_heap_alignment();
+      size_t new_size_value = align_size_up(MaxHeapSize, heap_alignment)
+              - param1 + param2;
+
+      MarkSweepPolicy msp;
+      msp.initialize_all();
+
+      size_t expected_old_initial = align_size_up(MaxHeapSize, heap_alignment)
+              - new_size_value;
+
+      ASSERT_EQ(expected_old_initial, msp.initial_old_size());
+    }
+  };
+};
+
+
+// Testing that the NewSize flag is handled correct is hard because it
+// depends on so many other configurable variables. These tests only try to
+// verify that there are some basic rules for NewSize honored by the policies.
+
+// If NewSize has been ergonomically set, the collector policy
+// should use it for min
+TEST_VM(CollectorPolicy, young_min_ergo) {
+  TestGenCollectorPolicy::SetNewSizeErgo setter(20 * M);
+  TestGenCollectorPolicy::CheckYoungMin checker(20 * M);
+
+  TestGenCollectorPolicy::TestWrapper::test(&setter, &checker);
+}
+
+// If NewSize has been ergonomically set, the collector policy
+// should use it for min but calculate the initial young size
+// using NewRatio.
+TEST_VM(CollectorPolicy, young_scaled_initial_ergo) {
+  TestGenCollectorPolicy::SetNewSizeErgo setter(20 * M);
+  TestGenCollectorPolicy::CheckScaledYoungInitial checker;
+
+  TestGenCollectorPolicy::TestWrapper::test(&setter, &checker);
+}
+
+
+// Since a flag has been set with FLAG_SET_CMDLINE it
+// will be treated as it have been set on the command line for
+// the rest of the VM lifetime. This is an irreversible change and
+// could impact other tests so we use TEST_OTHER_VM
+TEST_OTHER_VM(CollectorPolicy, young_cmd) {
+  // If NewSize is set on the command line, it should be used
+  // for both min and initial young size if less than min heap.
+  TestGenCollectorPolicy::SetNewSizeCmd setter(20 * M);
+
+  TestGenCollectorPolicy::CheckYoungMin checker_min(20 * M);
+  TestGenCollectorPolicy::TestWrapper::test(&setter, &checker_min);
+
+  TestGenCollectorPolicy::CheckYoungInitial checker_initial(20 * M);
+  TestGenCollectorPolicy::TestWrapper::test(&setter, &checker_initial);
+
+  // If NewSize is set on command line, but is larger than the min
+  // heap size, it should only be used for initial young size.
+  TestGenCollectorPolicy::SetNewSizeCmd setter_large(80 * M);
+  TestGenCollectorPolicy::CheckYoungInitial checker_large(80 * M);
+  TestGenCollectorPolicy::TestWrapper::test(&setter_large, &checker_large);
+}
+
+// Since a flag has been set with FLAG_SET_CMDLINE it
+// will be treated as it have been set on the command line for
+// the rest of the VM lifetime. This is an irreversible change and
+// could impact other tests so we use TEST_OTHER_VM
+TEST_OTHER_VM(CollectorPolicy, old_cmd) {
+  // If OldSize is set on the command line, it should be used
+  // for both min and initial old size if less than min heap.
+  TestGenCollectorPolicy::SetOldSizeCmd setter(20 * M);
+
+  TestGenCollectorPolicy::CheckOldMin checker_min(20 * M);
+  TestGenCollectorPolicy::TestWrapper::test(&setter, &checker_min);
+
+  TestGenCollectorPolicy::CheckOldInitial checker_initial;
+  TestGenCollectorPolicy::TestWrapper::test(&setter, &checker_initial);
+
+  // If MaxNewSize is large, the maximum OldSize will be less than
+  // what's requested on the command line and it should be reset
+  // ergonomically.
+  // We intentionally set MaxNewSize + OldSize > MaxHeapSize
+  TestGenCollectorPolicy::SetOldSizeCmd setter_old_size(30 * M);
+  TestGenCollectorPolicy::SetMaxNewSizeCmd setter_max_new_size(30 * M, 20 * M);
+  TestGenCollectorPolicy::CheckOldInitialMaxNewSize checker_large(30 * M, 20 * M);
+
+  TestGenCollectorPolicy::TestWrapper::test(&setter_old_size, &setter_max_new_size, &checker_large);
+}