|
| 1 | +/* |
| 2 | + * Copyright Amazon.com Inc. 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 compiler.c2.aarch64; |
| 26 | + |
| 27 | +import java.util.ArrayList; |
| 28 | +import java.util.Iterator; |
| 29 | +import jdk.test.lib.process.OutputAnalyzer; |
| 30 | +import jdk.test.lib.process.ProcessTools; |
| 31 | + |
| 32 | +/** |
| 33 | + * @test TestTrampoline |
| 34 | + * @summary Checks that trampolines to runtime code are not generated if they are not needed. |
| 35 | + * @bug 8285487 |
| 36 | + * @library /test/lib |
| 37 | + * |
| 38 | + * @requires vm.flagless & os.arch=="aarch64" & |
| 39 | + * vm.debug == false & vm.compiler2.enabled |
| 40 | + * |
| 41 | + * @run driver compiler.c2.aarch64.TestTrampoline |
| 42 | + */ |
| 43 | + |
| 44 | +public class TestTrampoline { |
| 45 | + private final static int ITERATIONS_TO_HEAT_LOOP = 20_000; |
| 46 | + |
| 47 | + public static void main(String[] args) throws Exception { |
| 48 | + String testClassName = TestTrampoline.Test.class.getName(); |
| 49 | + ArrayList<String> command = new ArrayList<String>(); |
| 50 | + command.add("-XX:+UnlockDiagnosticVMOptions"); |
| 51 | + command.add("-Xbatch"); |
| 52 | + command.add("-XX:CompileCommand=print," + testClassName + "::" + "test"); |
| 53 | + // ReservedCodeCacheSize=130M causes generation of trampolines. |
| 54 | + // As the non-nmethod segment is put between other two segments, |
| 55 | + // runtime calls will be within 128M range. |
| 56 | + // So there is no need for trampolines for runtime calls. |
| 57 | + command.add("-XX:ReservedCodeCacheSize=130M"); |
| 58 | + command.add("-XX:+SegmentedCodeCache"); |
| 59 | + command.add(testClassName); |
| 60 | + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(command); |
| 61 | + OutputAnalyzer analyzer = new OutputAnalyzer(pb.start()); |
| 62 | + analyzer.shouldHaveExitValue(0); |
| 63 | + System.out.println(analyzer.getOutput()); |
| 64 | + checkOutput(analyzer); |
| 65 | + } |
| 66 | + |
| 67 | + private static String skipTo(Iterator<String> iter, String substring) { |
| 68 | + while (iter.hasNext()) { |
| 69 | + String nextLine = iter.next(); |
| 70 | + if (nextLine.contains(substring)) { |
| 71 | + return nextLine; |
| 72 | + } |
| 73 | + } |
| 74 | + return null; |
| 75 | + } |
| 76 | + |
| 77 | + private static void checkOutput(OutputAnalyzer output) { |
| 78 | + Iterator<String> iter = output.asLines().listIterator(); |
| 79 | + |
| 80 | + String match = skipTo(iter, "Compiled method (c2)"); |
| 81 | + if (match == null || !match.contains("Test::test")) { |
| 82 | + throw new RuntimeException("Missing compiler output for the method 'test'"); |
| 83 | + } |
| 84 | + |
| 85 | + match = skipTo(iter, "[Stub Code]"); |
| 86 | + if (match != null && skipTo(iter, "{trampoline_stub}") != null) { |
| 87 | + throw new RuntimeException("Found unexpected {trampoline_stub}"); |
| 88 | + } |
| 89 | + } |
| 90 | + |
| 91 | + static class Test { |
| 92 | + private static void test(String s, int i) { |
| 93 | + if (s.charAt(i) > 128) |
| 94 | + throw new RuntimeException(); |
| 95 | + } |
| 96 | + |
| 97 | + public static void main(String[] args) { |
| 98 | + String s = "Returns the char value at the specified index."; |
| 99 | + for (int i = 0; i < ITERATIONS_TO_HEAT_LOOP; ++i) { |
| 100 | + test(s, i % s.length()); |
| 101 | + } |
| 102 | + } |
| 103 | + } |
| 104 | +} |
0 commit comments