/* * Copyright (c) 2014, 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. */ import com.oracle.testlibrary.jsr292.Helper; import com.sun.management.HotSpotDiagnosticMXBean; import java.lang.management.GarbageCollectorMXBean; import java.lang.management.ManagementFactory; import java.lang.reflect.Method; import java.util.Collection; import java.util.List; import java.util.function.Function; import jdk.testlibrary.Utils; import jdk.testlibrary.TimeLimitedRunner; /** * Lambda forms caching test case class. Contains all necessary test routines to * test lambda forms caching in method handles returned by methods of * MethodHandles class. * * @author kshefov */ public abstract class LambdaFormTestCase { private final static String METHOD_HANDLE_CLASS_NAME = "java.lang.invoke.MethodHandle"; private final static String INTERNAL_FORM_METHOD_NAME = "internalForm"; private static final double ITERATIONS_TO_CODE_CACHE_SIZE_RATIO = 45 / (128.0 * 1024 * 1024); private static final long TIMEOUT = Helper.IS_THOROUGH ? 0L : (long) (Utils.adjustTimeout(Utils.DEFAULT_TEST_TIMEOUT) * 0.9); /** * Reflection link to {@code j.l.i.MethodHandle.internalForm} method. It is * used to get a lambda form from a method handle. */ protected final static Method INTERNAL_FORM; private static final List gcInfo; private static long gcCount() { return gcInfo.stream().mapToLong(GarbageCollectorMXBean::getCollectionCount).sum(); } static { try { Class mhClass = Class.forName(METHOD_HANDLE_CLASS_NAME); INTERNAL_FORM = mhClass.getDeclaredMethod(INTERNAL_FORM_METHOD_NAME); INTERNAL_FORM.setAccessible(true); } catch (Exception ex) { throw new Error("Unexpected exception: ", ex); } gcInfo = ManagementFactory.getGarbageCollectorMXBeans(); if (gcInfo.size() == 0) { throw new Error("No GarbageCollectorMXBeans found."); } } private final TestMethods testMethod; private long gcCountAtStart; private static class TestRunInfo { final long totalIterations; long doneIterations; long testCounter; long failCounter; boolean passed; TestRunInfo(long testCaseNum, long testLimit) { long iterations = Math.max(1, testLimit / testCaseNum); System.out.printf("Number of iterations according to -DtestLimit is %d (%d cases)%n", iterations, iterations * testCaseNum); HotSpotDiagnosticMXBean hsDiagBean = ManagementFactory.getPlatformMXBean(HotSpotDiagnosticMXBean.class); long codeCacheSize = Long.parseLong( hsDiagBean.getVMOption("ReservedCodeCacheSize").getValue()); System.out.printf("Code cache size is %d bytes%n", codeCacheSize); long iterationsByCodeCacheSize = (long) (codeCacheSize * ITERATIONS_TO_CODE_CACHE_SIZE_RATIO); long nonProfiledCodeCacheSize = Long.parseLong( hsDiagBean.getVMOption("NonProfiledCodeHeapSize").getValue()); System.out.printf("Non-profiled code cache size is %d bytes%n", nonProfiledCodeCacheSize); long iterationsByNonProfiledCodeCacheSize = (long) (nonProfiledCodeCacheSize * ITERATIONS_TO_CODE_CACHE_SIZE_RATIO); System.out.printf("Number of iterations limited by code cache size is %d (%d cases)%n", iterationsByCodeCacheSize, iterationsByCodeCacheSize * testCaseNum); System.out.printf("Number of iterations limited by non-profiled code cache size is %d (%d cases)%n", iterationsByNonProfiledCodeCacheSize, iterationsByNonProfiledCodeCacheSize * testCaseNum); iterations = Math.min(iterationsByCodeCacheSize, Math.min(iterations, iterationsByNonProfiledCodeCacheSize)); if (iterations == 0) { System.out.println("Warning: code cache size is too small to provide at" + " least one iteration! Test will try to do one iteration."); iterations = 1; } System.out.printf("Number of iterations is set to %d (%d cases)%n", iterations, iterations * testCaseNum); System.out.flush(); totalIterations = iterations; doneIterations = 0L; testCounter = 0L; failCounter = 0L; passed = true; } } /** * Test case constructor. Generates test cases with random method types for * given methods form {@code j.l.i.MethodHandles} class. * * @param testMethod A method from {@code j.l.i.MethodHandles} class which * returns a {@code j.l.i.MethodHandle}. */ protected LambdaFormTestCase(TestMethods testMethod) { this.testMethod = testMethod; this.gcCountAtStart = gcCount(); } public TestMethods getTestMethod() { return testMethod; } protected boolean noGCHappened() { return gcCount() == gcCountAtStart; } /** * Routine that executes a test case. */ public abstract void doTest(); /** * Runs a number of test cases defined by the size of testCases list. * * @param ctor constructor of LambdaFormCachingTest or its child classes * object. * @param testMethods list of test methods */ public static void runTests(Function ctor, Collection testMethods) { LambdaFormTestCase.TestRunInfo runInfo = new LambdaFormTestCase.TestRunInfo(testMethods.size(), Helper.TEST_LIMIT); TimeLimitedRunner runner = new TimeLimitedRunner(TIMEOUT, 4.0d, () -> { if (runInfo.doneIterations >= runInfo.totalIterations) { return false; } System.err.println(String.format("Iteration %d:", runInfo.doneIterations)); for (TestMethods testMethod : testMethods) { LambdaFormTestCase testCase = ctor.apply(testMethod); try { System.err.printf("Tested LF caching feature with MethodHandles.%s method.%n", testCase.getTestMethod().name); testCase.doTest(); System.err.println("PASSED"); } catch (Throwable t) { t.printStackTrace(); System.err.println("FAILED"); runInfo.passed = false; runInfo.failCounter++; } runInfo.testCounter++; } runInfo.doneIterations++; return true; }); try { runner.call(); } catch (Exception ex) { System.err.println("FAILED"); throw new Error("Unexpected error!", ex); } if (!runInfo.passed) { throw new Error(String.format("%d of %d test cases FAILED! %n" + "Rerun the test with the same \"-Dseed=\" option as in the log file!", runInfo.failCounter, runInfo.testCounter)); } else { System.err.println(String.format("All %d test cases PASSED!", runInfo.testCounter)); } } }