1 /*
   2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test TestEagerReclaimHumongousRegions
  26  * @bug 8027959
  27  * @requires vm.gc=="G1" | vm.gc=="null"
  28  * @summary Test to make sure that eager reclaim of humongous objects work. We simply try to fill
  29  * up the heap with humongous objects that should be eagerly reclaimable to avoid Full GC.
  30  * @key gc
  31  * @library /testlibrary
  32  */
  33 
  34 import java.util.regex.Pattern;
  35 import java.util.regex.Matcher;
  36 import java.util.LinkedList;
  37 
  38 import com.oracle.java.testlibrary.OutputAnalyzer;
  39 import com.oracle.java.testlibrary.ProcessTools;
  40 import com.oracle.java.testlibrary.Asserts;
  41 
  42 class ReclaimRegionFast {
  43     public static final int M = 1024*1024;
  44 
  45     public static LinkedList<Object> garbageList = new LinkedList<Object>();
  46 
  47     public static void genGarbage() {
  48         for (int i = 0; i < 32*1024; i++) {
  49             garbageList.add(new int[100]);
  50         }
  51         garbageList.clear();
  52     }
  53 
  54     // A large object referenced by a static.
  55     static int[] filler = new int[10 * M];
  56 
  57     public static void main(String[] args) {
  58 
  59         int[] large = new int[M];
  60 
  61         Object ref_from_stack = large;
  62 
  63         for (int i = 0; i < 100; i++) {
  64             // A large object that will be reclaimed eagerly.
  65             large = new int[6*M];
  66             genGarbage();
  67             // Make sure that the compiler cannot completely remove
  68             // the allocation of the large object until here.
  69             System.out.println(large);
  70         }
  71 
  72         // Keep the reference to the first object alive.
  73         System.out.println(ref_from_stack);
  74     }
  75 }
  76 
  77 public class TestEagerReclaimHumongousRegions {
  78     public static void main(String[] args) throws Exception {
  79         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  80             "-XX:+UseG1GC",
  81             "-Xms128M",
  82             "-Xmx128M",
  83             "-Xmn16M",
  84             "-XX:+PrintGC",
  85             ReclaimRegionFast.class.getName());
  86 
  87         Pattern p = Pattern.compile("Full GC");
  88 
  89         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  90 
  91         int found = 0;
  92         Matcher m = p.matcher(output.getStdout());
  93         while (m.find()) { found++; }
  94         System.out.println("Issued " + found + " Full GCs");
  95         Asserts.assertLT(found, 10, "Found that " + found + " Full GCs were issued. This is larger than the bound. Eager reclaim seems to not work at all");
  96 
  97         output.shouldHaveExitValue(0);
  98     }
  99 }