1 /*
   2  * Copyright (c) 2014, 2015, 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
  26  * @bug 8015774
  27  * @summary Verify processing of options related to code heaps sizing.
  28  * @library /testlibrary /test/lib /
  29  * @modules java.base/jdk.internal.misc
  30  *          java.compiler
  31  *          java.management
  32  *          jdk.jvmstat/sun.jvmstat.monitor
  33  *
  34  * @build compiler.codecache.cli.codeheapsize.TestCodeHeapSizeOptions jdk.test.lib.*
  35  * @run driver/timeout=240 compiler.codecache.cli.codeheapsize.TestCodeHeapSizeOptions
  36  */
  37 
  38 package compiler.codecache.cli.codeheapsize;
  39 
  40 import compiler.codecache.cli.common.CodeCacheCLITestBase;
  41 import compiler.codecache.cli.common.CodeCacheCLITestCase;
  42 import jdk.test.lib.Platform;
  43 import sun.hotspot.code.BlobType;
  44 
  45 import java.util.EnumSet;
  46 
  47 public class TestCodeHeapSizeOptions extends CodeCacheCLITestBase {
  48     private static final CodeCacheCLITestCase JVM_STARTUP
  49             = new CodeCacheCLITestCase(new CodeCacheCLITestCase.Description(
  50                             options -> options.segmented,
  51                             EnumSet.noneOf(BlobType.class)),
  52                     new JVMStartupRunner());
  53 
  54     private static final CodeCacheCLITestCase CODE_CACHE_FREE_SPACE
  55             = new CodeCacheCLITestCase(new CodeCacheCLITestCase.Description(
  56                             options -> options.segmented
  57                                     && Platform.isDebugBuild(),
  58                             EnumSet.noneOf(BlobType.class)),
  59                     new CodeCacheFreeSpaceRunner());
  60 
  61     private static final GenericCodeHeapSizeRunner GENERIC_RUNNER
  62             = new GenericCodeHeapSizeRunner();
  63 
  64     private TestCodeHeapSizeOptions() {
  65         super(CodeCacheCLITestBase.OPTIONS_SET,
  66                 new CodeCacheCLITestCase(CodeCacheCLITestCase
  67                         .CommonDescriptions.INT_MODE.description,
  68                         GENERIC_RUNNER),
  69                 new CodeCacheCLITestCase(CodeCacheCLITestCase
  70                         .CommonDescriptions.NON_TIERED.description,
  71                         GENERIC_RUNNER),
  72                 new CodeCacheCLITestCase(CodeCacheCLITestCase
  73                         .CommonDescriptions.TIERED_LEVEL_0.description,
  74                         GENERIC_RUNNER),
  75                 new CodeCacheCLITestCase(CodeCacheCLITestCase
  76                         .CommonDescriptions.TIERED_LEVEL_1.description,
  77                         GENERIC_RUNNER),
  78                 new CodeCacheCLITestCase(CodeCacheCLITestCase
  79                         .CommonDescriptions.TIERED_LEVEL_4.description,
  80                         GENERIC_RUNNER),
  81                 JVM_STARTUP,
  82                 CODE_CACHE_FREE_SPACE);
  83     }
  84 
  85     public static void main(String args[]) throws Throwable {
  86         new TestCodeHeapSizeOptions().runTestCases();
  87     }
  88 }