1 /*
   2  * Copyright (c) 2013, 2018, 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 package org.graalvm.compiler.hotspot.test;
  26 
  27 import static org.graalvm.compiler.core.GraalCompilerOptions.CompilationBailoutAction;
  28 import static org.graalvm.compiler.core.GraalCompilerOptions.CompilationFailureAction;
  29 
  30 import jdk.internal.vm.compiler.collections.EconomicMap;
  31 import org.graalvm.compiler.core.CompilationWrapper.ExceptionAction;
  32 import org.graalvm.compiler.core.test.GraalCompilerTest;
  33 import org.graalvm.compiler.hotspot.HotSpotGraalCompiler;
  34 import org.graalvm.compiler.options.OptionKey;
  35 import org.graalvm.compiler.options.OptionValues;
  36 import org.junit.Test;
  37 
  38 import jdk.vm.ci.hotspot.HotSpotJVMCIRuntime;
  39 
  40 /**
  41  * Tests {@link CompileTheWorld} functionality.
  42  */
  43 public class CompileTheWorldTest extends GraalCompilerTest {
  44 
  45     @Test
  46     public void testJDK() throws Throwable {
  47         ExceptionAction originalBailoutAction = CompilationBailoutAction.getValue(getInitialOptions());
  48         ExceptionAction originalFailureAction = CompilationFailureAction.getValue(getInitialOptions());
  49         // Compile a couple classes in rt.jar
  50         HotSpotJVMCIRuntime runtime = HotSpotJVMCIRuntime.runtime();
  51         System.setProperty("CompileTheWorld.LimitModules", "java.base");
  52         OptionValues initialOptions = getInitialOptions();
  53         EconomicMap<OptionKey<?>, Object> compilationOptions = CompileTheWorld.parseOptions("Inline=false");
  54         new CompileTheWorld(runtime, (HotSpotGraalCompiler) runtime.getCompiler(), CompileTheWorld.SUN_BOOT_CLASS_PATH, 1, 5, null, null, false, initialOptions, compilationOptions).compile();
  55         assert CompilationBailoutAction.getValue(initialOptions) == originalBailoutAction;
  56         assert CompilationFailureAction.getValue(initialOptions) == originalFailureAction;
  57     }
  58 }