1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
|
/*
* Copyright (c) 2021, 2025, 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.
*/
package compiler.lib.ir_framework;
import compiler.lib.ir_framework.driver.FlagVMProcess;
import compiler.lib.ir_framework.driver.TestVMException;
import compiler.lib.ir_framework.driver.TestVMProcess;
import compiler.lib.ir_framework.driver.irmatching.IRMatcher;
import compiler.lib.ir_framework.driver.irmatching.IRViolationException;
import compiler.lib.ir_framework.driver.irmatching.Matchable;
import compiler.lib.ir_framework.driver.irmatching.parser.TestClassParser;
import compiler.lib.ir_framework.shared.*;
import compiler.lib.ir_framework.test.TestVM;
import jdk.test.lib.Platform;
import jdk.test.lib.Utils;
import jdk.test.lib.helpers.ClassFileInstaller;
import jdk.test.whitebox.WhiteBox;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.nio.file.Path;
import java.util.*;
import java.util.stream.Collectors;
/**
* This class represents the main entry point to the test framework whose main purpose is to perform regex-based checks on
* the C2 IR shape emitted by the VM flags {@code -XX:+PrintIdeal} and {@code -XX:+PrintOptoAssembly}. The framework can
* also be used for other non-IR matching (and non-compiler) tests by providing easy to use annotations for commonly used
* testing patterns and compiler control flags.
* <p>
* The framework offers various annotations to control how your test code should be invoked and being checked. There are
* three kinds of tests depending on how much control is needed over the test invocation:
* <b>Base tests</b> (see {@link Test}), <b>checked tests</b> (see {@link Check}), and <b>custom run tests</b>
* (see {@link Run}). Each type of test needs to define a unique <i>test method</i> that specifies a {@link Test @Test}
* annotation which represents the test code that is eventually executed by the test framework. More information about
* the usage and how to write different tests can be found in {@link Test}, {@link Check}, and {@link Run}.
* <p>
* Each test method can specify an arbitrary number of IR rules. This is done by using {@link IR @IR} annotations which
* can define regex strings that are matched on the output of {@code -XX:+PrintIdeal} and {@code -XX:+PrintOptoAssembly}.
* The matching is done after the test method was (optionally) warmed up and compiled. More information about the usage
* and how to write different IR rules can be found at {@link IR}.
* <p>
* This framework should be used with the following JTreg setup in your Test.java file in package <i>some.package</i>:
* <pre>
* {@literal @}library /test/lib
* {@literal @}run driver some.package.Test
* </pre>
* Note that even though the framework uses the Whitebox API internally, it is not required to build and enabel it in the
* JTreg test if the test itself is not utilizing any Whitebox features directly.
* <p>
* To specify additional flags, use {@link #runWithFlags(String...)}, {@link #addFlags(String...)}, or
* {@link #addScenarios(Scenario...)} where the scenarios can also be used to run different flag combinations
* (instead of specifying multiple JTreg {@code @run} entries).
* <p>
* After annotating your test code with the framework specific annotations, the framework needs to be invoked from the
* {@code main()} method of your JTreg test. There are two ways to do so. The first way is by calling the various
* {@code runXX()} methods of {@link TestFramework}. The second way, which gives more control, is to create a new
* {@code TestFramework} builder object on which {@link #start()} needs to be eventually called to start the testing.
* <p>
* The framework is called from the <i>driver VM</i> in which the JTreg test is initially run by specifying {@code
* @run driver} in the JTreg header. This strips all additionally specified JTreg VM and Javaoptions.
* The framework creates a new <i>flag VM</i> with all these flags added again in order to figure out which flags are
* required to run the tests specified in the test class (e.g. {@code -XX:+PrintIdeal} and {@code -XX:+PrintOptoAssembly}
* for IR matching).
* <p>
* After the flag VM terminates, it starts a new <i>test VM</i> which performs the execution of the specified
* tests in the test class as described in {@link Test}, {@link Check}, and {@link Run}.
* <p>
* In a last step, once the test VM has terminated without exceptions, IR matching is performed if there are any IR
* rules and if no VM flags disable it (e.g. not running with {@code -Xint}, see {@link IR} for more details).
* The IR regex matching is done on the output of {@code -XX:+PrintIdeal} and {@code -XX:+PrintOptoAssembly} by parsing
* the hotspot_pid file of the test VM. Failing IR rules are reported by throwing a {@link IRViolationException}.
*
* @see Test
* @see Check
* @see Run
* @see IR
*/
public class TestFramework {
/**
* JTreg can define additional VM (-Dtest.vm.opts) and Javaoptions (-Dtest.java.opts) flags. IR verification is only
* performed when all these additional JTreg flags (does not include additionally added framework and scenario flags
* by user code) are whitelisted.
*
* <p>
* A flag is whitelisted if it is a property flag (starting with -D), -ea, -esa, or if the flag name contains any of
* the entries of this list as a substring (partial match).
*/
public static final Set<String> JTREG_WHITELIST_FLAGS = new HashSet<>(
Arrays.asList(
// The following substrings are part of more than one VM flag
"RAM",
"Heap",
"Trace",
"Print",
"Verify",
"UseNewCode",
"Xmn",
"Xms",
"Xmx",
"Xss",
// The following substrings are only part of one VM flag (=exact match)
"CreateCoredumpOnCrash",
"IgnoreUnrecognizedVMOptions",
"UnlockDiagnosticVMOptions",
"UnlockExperimentalVMOptions",
"BackgroundCompilation",
"Xbatch",
"TieredCompilation",
"CompileThreshold",
"Xmixed",
"server",
"AlignVector",
"UseAVX",
"UseSSE",
"UseSVE",
"Xlog",
"LogCompilation",
"UseCompactObjectHeaders",
"UseFMA",
// Riscv
"UseRVV",
"UseZbb",
"UseZfh",
"UseZicond",
"UseZvbb"
)
);
public static final boolean VERBOSE = Boolean.getBoolean("Verbose");
public static final boolean PRINT_RULE_MATCHING_TIME = Boolean.getBoolean("PrintRuleMatchingTime");
public static final boolean TESTLIST = !System.getProperty("Test", "").isEmpty();
public static final boolean EXCLUDELIST = !System.getProperty("Exclude", "").isEmpty();
private static final boolean REPORT_STDOUT = Boolean.getBoolean("ReportStdout");
// Only used for internal testing and should not be used for normal user testing.
private static final String RERUN_HINT = """
#############################################################
- To only run the failed tests use -DTest, -DExclude,
and/or -DScenarios.
- To also get the standard output of the test VM run with
-DReportStdout=true or for even more fine-grained logging
use -DVerbose=true.
#############################################################
""" + System.lineSeparator();
private boolean irVerificationPossible = Boolean.parseBoolean(System.getProperty("VerifyIR", "true"));
private boolean shouldVerifyIR; // Should we perform IR matching?
private static boolean toggleBool;
private final Class<?> testClass;
private Set<Class<?>> helperClasses;
private List<Scenario> scenarios;
private Set<Integer> scenarioIndices;
private List<String> flags;
private int defaultWarmup = -1;
private boolean testClassesOnBootClassPath;
private boolean isAllowNotCompilable = false;
/*
* Public interface methods
*/
/**
* Creates an instance acting as a builder to test the class from which this constructor was invoked from.
* Use this constructor if you want to use multiple run options (flags, helper classes, scenarios).
* Use the associated add methods ({@link #addFlags(String...)}, {@link #addScenarios(Scenario...)},
* {@link #addHelperClasses(Class...)}) to set up everything and then start the testing by invoking {@link #start()}.
*/
public TestFramework() {
this(StackWalker.getInstance(StackWalker.Option.RETAIN_CLASS_REFERENCE).getCallerClass());
}
/**
* Creates an instance acting as a builder to test {@code testClass}.
* Use this constructor if you want to use multiple run options (flags, helper classes, scenarios).
* Use the associated add methods ({@link #addFlags(String...)}, {@link #addScenarios(Scenario...)},
* {@link #addHelperClasses(Class...)}) to set up everything and then start the testing by invoking {@link #start()}.
*
* @param testClass the class to be tested by the framework.
* @see #TestFramework()
*/
public TestFramework(Class<?> testClass) {
TestRun.check(testClass != null, "Test class cannot be null");
this.testClass = testClass;
if (VERBOSE) {
System.out.println("Test class: " + testClass);
}
}
/**
* Tests the class from which this method was invoked from.
*/
public static void run() {
StackWalker walker = StackWalker.getInstance(StackWalker.Option.RETAIN_CLASS_REFERENCE);
run(walker.getCallerClass());
}
/**
* Tests {@code testClass}.
*
* @param testClass the class to be tested by the framework.
* @see #run()
*/
public static void run(Class<?> testClass) {
TestFramework framework = new TestFramework(testClass);
framework.start();
}
/**
* Tests the class from which this method was invoked from. The test VM is called with the specified {@code flags}.
* <ul>
* <li><p>The {@code flags} override any set VM or Javaoptions flags by JTreg by default.<p>
* Use {@code -DPreferCommandLineFlags=true} if you want to prefer the JTreg VM and Javaoptions flags over
* the specified {@code flags} of this method.</li>
* <li><p>If you want to run your entire JTreg test with additional flags, use this method.</li>
* <li><p>If you want to run your entire JTreg test with additional flags but for another test class then the one
* from which this method was called from, use {@link #addFlags(String...)}, use this method.</li>
* <li><p>If you want to run your JTreg test with multiple flag combinations, use
* {@link #addScenarios(Scenario...)}</li>
* </ul>
*
* @param flags VM flags to be used for the test VM.
*/
public static void runWithFlags(String... flags) {
StackWalker walker = StackWalker.getInstance(StackWalker.Option.RETAIN_CLASS_REFERENCE);
TestFramework framework = new TestFramework(walker.getCallerClass());
framework.addFlags(flags);
framework.start();
}
/**
* Add VM flags to be used for the test VM. These flags override any VM or Javaoptions set by JTreg by default.<p>
* Use {@code -DPreferCommandLineFlags=true} if you want to prefer the VM or Javaoptions over the scenario flags.
*
* <p>
* The testing can be started by invoking {@link #start()}
*
* @param flags VM options to be applied to the test VM.
* @return the same framework instance.
*/
public TestFramework addFlags(String... flags) {
TestRun.check(flags != null && Arrays.stream(flags).noneMatch(Objects::isNull), "A flag cannot be null");
if (this.flags == null) {
this.flags = new ArrayList<>();
}
this.flags.addAll(Arrays.asList(flags));
return this;
}
/**
* Add helper classes that can specify additional compile command annotations ({@link ForceCompile @ForceCompile},
* {@link DontCompile @DontCompile}, {@link ForceInline @ForceInline}, {@link DontInline @DontInline}) to be applied
* while testing {@code testClass} (also see description of {@link TestFramework}).
*
* <p>
* Duplicates in {@code helperClasses} are ignored. If a class is used by the test class that does not specify any
* compile command annotations, you do not need to include it with this method. If no helper class specifies any
* compile commands, you do not need to call this method at all.
*
* <p>
* The testing can be started by invoking {@link #start()}.
*
* @param helperClasses helper classes containing compile command annotations ({@link ForceCompile},
* {@link DontCompile}, {@link ForceInline}, {@link DontInline}) to be applied
* while testing {@code testClass} (also see description of {@link TestFramework}).
* @return the same framework instance.
*/
public TestFramework addHelperClasses(Class<?>... helperClasses) {
TestRun.check(helperClasses != null && Arrays.stream(helperClasses).noneMatch(Objects::isNull),
"A Helper class cannot be null");
if (this.helperClasses == null) {
this.helperClasses = new HashSet<>();
}
this.helperClasses.addAll(Arrays.asList(helperClasses));
return this;
}
/**
* Add scenarios to be used for the test VM. A test VM is called for each scenario in {@code scenarios} by using the
* specified VM flags in the scenario. The scenario flags override any flags set by {@link #addFlags(String...)}
* and thus also override any VM or Javaoptions set by JTreg by default.<p>
* Use {@code -DPreferCommandLineFlags=true} if you want to prefer the VM and Javaoptions over the scenario flags.
*
* <p>
* The testing can be started by invoking {@link #start()}
*
* @param scenarios scenarios which specify specific flags for the test VM.
* @return the same framework instance.
*/
public TestFramework addScenarios(Scenario... scenarios) {
TestFormat.checkAndReport(scenarios != null && Arrays.stream(scenarios).noneMatch(Objects::isNull),
"A scenario cannot be null");
if (this.scenarios == null) {
this.scenarios = new ArrayList<>();
this.scenarioIndices = new HashSet<>();
}
for (Scenario scenario : scenarios) {
int scenarioIndex = scenario.getIndex();
TestFormat.checkNoThrow(scenarioIndices.add(scenarioIndex),
"Cannot define two scenarios with the same index " + scenarioIndex);
this.scenarios.add(scenario);
}
TestFormat.throwIfAnyFailures();
return this;
}
/**
* Add test classes to boot classpath. This adds all classes found on path {@link jdk.test.lib.Utils#TEST_CLASSES}
* to the boot classpath with "-Xbootclasspath/a". This is useful when trying to run tests in a privileged mode.
*/
public TestFramework addTestClassesToBootClassPath() {
this.testClassesOnBootClassPath = true;
return this;
}
/**
* Start the testing of the implicitly (by {@link #TestFramework()}) or explicitly (by {@link #TestFramework(Class)})
* set test class.
*/
public void start() {
if (shouldInstallWhiteBox()) {
installWhiteBox();
}
checkIRRuleCompilePhasesFormat();
disableIRVerificationIfNotFeasible();
if (scenarios == null) {
try {
start(null);
} catch (TestVMException e) {
System.err.println(System.lineSeparator() + e.getExceptionInfo() + RERUN_HINT);
throw e;
} catch (IRViolationException e) {
System.out.println(e.getCompilations());
System.err.println(System.lineSeparator() + e.getExceptionInfo() + System.lineSeparator() + RERUN_HINT);
throw e;
}
} else {
startWithScenarios();
}
}
private void checkIRRuleCompilePhasesFormat() {
for (Method method : testClass.getDeclaredMethods()) {
for (IR irAnno : method.getAnnotationsByType(IR.class)) {
TestFormat.checkNoThrow(irAnno.phase().length > 0,
"@IR rule " + irAnno + " must specify a non-empty list of compile " +
"phases \"phase\" at " + method);
}
}
TestFormat.throwIfAnyFailures();
}
/**
* Try to load the Whitebox class from the user directory with a custom class loader. If the user has already built the
* Whitebox, we can load it. Otherwise, the framework needs to install it.
*
* @return true if the framework needs to install the Whitebox
*/
private boolean shouldInstallWhiteBox() {
try {
URL url = Path.of(System.getProperty("user.dir")).toUri().toURL();
URLClassLoader userDirClassLoader =
URLClassLoader.newInstance(new URL[] {url}, TestFramework.class.getClassLoader().getParent());
Class.forName(WhiteBox.class.getName(), false, userDirClassLoader);
} catch (MalformedURLException e) {
throw new TestFrameworkException("corrupted user.dir property", e);
} catch (ClassNotFoundException e) {
// We need to manually install the WhiteBox if we cannot load the WhiteBox class from the user directory.
// This happens when the user test does not explicitly install the WhiteBox as part of the test.
return true;
}
return false;
}
/**
* Set a new default warm-up (overriding the framework default of 2000 at
* {@link TestVM#WARMUP_ITERATIONS}) to be applied for all tests that do not specify an explicit
* warm-up with {@link Warmup @Warmup}.
*
* @param defaultWarmup a new non-negative default warm-up.
* @return the same framework instance.
*/
public TestFramework setDefaultWarmup(int defaultWarmup) {
TestFormat.checkAndReport(defaultWarmup >= 0, "Cannot specify a negative default warm-up");
this.defaultWarmup = defaultWarmup;
return this;
}
/**
* In rare cases, methods may not be compilable because of a compilation bailout. By default, this leads to a
* test failure. However, if such cases are expected in multiple methods in a test class, this flag can be set to
* true, which allows any test to pass even if there is a compilation bailout. If only selected methods are prone
* to bail out, it is preferred to use {@link Test#allowNotCompilable()} instead for more fine-grained control.
* By setting this flag, any associated {@link IR} rule of a test is only executed if the test method was compiled,
* and else it is ignored silently.
*/
public TestFramework allowNotCompilable() {
this.isAllowNotCompilable = true;
return this;
}
/**
* Get the VM output of the test VM. Use {@code -DVerbose=true} to enable more debug information. If scenarios
* were run, use {@link Scenario#getTestVMOutput()}.
*
* @return the last test VM output.
*/
public static String getLastTestVMOutput() {
return TestVMProcess.getLastTestVMOutput();
}
/*
* The following methods are only intended to be called from actual @Test methods and not from the main() method of
* a JTreg test. Calling these methods from main() results in a linking exception (Whitebox not yet loaded and enabled).
*/
/**
* Compile {@code m} at compilation level {@code compLevel}. {@code m} is first enqueued and might not be compiled,
* yet, upon returning from this method.
*
* @param m the method to be compiled.
* @param compLevel the (valid) compilation level at which the method should be compiled.
* @throws TestRunException if compilation level is {@link CompLevel#SKIP} or {@link CompLevel#WAIT_FOR_COMPILATION}.
*/
public static void compile(Method m, CompLevel compLevel) {
TestVM.compile(m, compLevel);
}
/**
* Deoptimize {@code m}.
*
* @param m the method to be deoptimized.
*/
public static void deoptimize(Method m) {
TestVM.deoptimize(m);
}
/**
* Returns a boolean indicating if {@code m} is compiled at any level.
*
* @param m the method to be checked.
* @return {@code true} if {@code m} is compiled at any level;
* {@code false} otherwise.
*/
public static boolean isCompiled(Method m) {
return TestVM.isCompiled(m);
}
/**
* Returns a boolean indicating if {@code m} is compiled with C1.
*
* @param m the method to be checked.
* @return {@code true} if {@code m} is compiled with C1;
* {@code false} otherwise.
*/
public static boolean isC1Compiled(Method m) {
return TestVM.isC1Compiled(m);
}
/**
* Returns a boolean indicating if {@code m} is compiled with C2.
*
* @param m the method to be checked.
* @return {@code true} if {@code m} is compiled with C2;
* {@code false} otherwise.
*/
public static boolean isC2Compiled(Method m) {
return TestVM.isC2Compiled(m);
}
/**
* Returns a boolean indicating if {@code m} is compiled at the specified {@code compLevel}.
*
* @param m the method to be checked.
* @param compLevel the compilation level.
* @return {@code true} if {@code m} is compiled at {@code compLevel};
* {@code false} otherwise.
*/
public static boolean isCompiledAtLevel(Method m, CompLevel compLevel) {
return TestVM.isCompiledAtLevel(m, compLevel);
}
/**
* Checks if {@code m} is compiled at any level.
*
* @param m the method to be checked.
* @throws TestRunException if {@code m} is not compiled at any level.
*/
public static void assertCompiled(Method m) {
TestVM.assertCompiled(m);
}
/**
* Checks if {@code m} is not compiled at any level.
*
* @param m the method to be checked.
* @throws TestRunException if {@code m} is compiled at any level.
*/
public static void assertNotCompiled(Method m) {
TestVM.assertNotCompiled(m);
}
/**
* Verifies that {@code m} is compiled with C1.
*
* @param m the method to be verified.
* @throws TestRunException if {@code m} is not compiled with C1.
*/
public static void assertCompiledByC1(Method m) {
TestVM.assertCompiledByC1(m);
}
/**
* Verifies that {@code m} is compiled with C2.
*
* @param m the method to be checked.
* @throws TestRunException if {@code m} is not compiled with C2.
*/
public static void assertCompiledByC2(Method m) {
TestVM.assertCompiledByC2(m);
}
/**
* Verifies that {@code m} is compiled at the specified {@code compLevel}.
*
* @param m the method to be checked.
* @param compLevel the compilation level.
* @throws TestRunException if {@code m} is not compiled at {@code compLevel}.
*/
public static void assertCompiledAtLevel(Method m, CompLevel compLevel) {
TestVM.assertCompiledAtLevel(m, compLevel);
}
/**
* Verifies that {@code m} was deoptimized after being C1 compiled.
*
* @param m the method to be checked.
* @throws TestRunException if {@code m} is was not deoptimized after being C1 compiled.
*/
public static void assertDeoptimizedByC1(Method m) {
TestVM.assertDeoptimizedByC1(m);
}
/**
* Verifies that {@code m} was deoptimized after being C2 compiled.
*
* @param m the method to be checked.
* @throws TestRunException if {@code m} is was not deoptimized after being C2 compiled.
*/
public static void assertDeoptimizedByC2(Method m) {
TestVM.assertDeoptimizedByC2(m);
}
/**
* Returns a different boolean each time this method is invoked (switching between {@code false} and {@code true}).
* The very first invocation returns {@code false}. Note that this method could be used by different tests and
* thus the first invocation for a test could be {@code true} or {@code false} depending on how many times
* other tests have already invoked this method.
*
* @return an inverted boolean of the result of the last invocation of this method.
*/
public static boolean toggleBoolean() {
toggleBool = !toggleBool;
return toggleBool;
}
/*
* End of public interface methods
*/
/**
* Used to move Whitebox class to the right folder in the JTreg test
*/
private void installWhiteBox() {
try {
ClassFileInstaller.main(WhiteBox.class.getName());
} catch (Exception e) {
throw new Error("failed to install whitebox classes", e);
}
}
/**
* Disable IR verification completely in certain cases.
*/
private void disableIRVerificationIfNotFeasible() {
if (!irVerificationPossible) {
return;
}
boolean debugTest = Platform.isDebugBuild();
boolean intTest = !Platform.isInt();
boolean compTest = !Platform.isComp();
boolean irTest = hasIRAnnotations();
// No IR verification is done if additional non-whitelisted JTreg VM or Javaoptions flag is specified.
List<String> nonWhiteListedFlags = anyNonWhitelistedJTregVMAndJavaOptsFlags();
boolean nonWhiteListedTest = nonWhiteListedFlags.isEmpty();
irVerificationPossible = debugTest && intTest && compTest && irTest && nonWhiteListedTest;
if (irVerificationPossible) {
return;
}
System.out.println("IR verification disabled due to the following reason(s):");
if (!debugTest) {
System.out.println("- Not running a debug build (required for PrintIdeal and PrintOptoAssembly)");
}
if (!intTest) {
System.out.println("- Running with -Xint (no compilations)");
}
if (!compTest) {
System.out.println("- Running with -Xcomp (use warm-up of 0 instead)");
}
if (!irTest) {
System.out.println("- Test " + testClass + " not specifying any @IR annotations");
}
if (!nonWhiteListedTest) {
System.out.println("- Using non-whitelisted JTreg VM or Javaoptions flag(s):");
nonWhiteListedFlags.forEach((f) -> System.out.println(" - " + f));
}
System.out.println("");
}
/**
* For scenarios: Run the tests with the scenario settings and collect all exceptions to be able to run all
* scenarios without prematurely throwing an exception. Format violations, however, are wrong for all scenarios
* and thus is reported immediately on the first scenario execution.
*/
private void startWithScenarios() {
Map<Scenario, Exception> exceptionMap = new TreeMap<>(Comparator.comparingInt(Scenario::getIndex));
for (Scenario scenario : scenarios) {
try {
start(scenario);
} catch (TestFormatException e) {
// Test format violation is wrong for all the scenarios. Only report once.
throw e;
} catch (Exception e) {
exceptionMap.put(scenario, e);
}
}
if (!exceptionMap.isEmpty()) {
reportScenarioFailures(exceptionMap);
}
}
private void reportScenarioFailures(Map<Scenario, Exception> exceptionMap) {
String failedScenarios = "The following scenarios have failed: #"
+ exceptionMap.keySet().stream()
.map(s -> String.valueOf(s.getIndex()))
.collect(Collectors.joining(", #"));
StringBuilder builder = new StringBuilder(failedScenarios);
builder.append(System.lineSeparator()).append(System.lineSeparator());
for (Map.Entry<Scenario, Exception> entry : exceptionMap.entrySet()) {
Exception e = entry.getValue();
Scenario scenario = entry.getKey();
String errorMsg = "";
if (scenario != null) {
errorMsg = getScenarioTitleAndFlags(scenario);
}
if (e instanceof IRViolationException irException) {
// For IR violations, only show the actual violations and not the (uninteresting) stack trace.
if (scenario != null) {
System.out.println("Scenario #" + scenario.getIndex());
}
System.out.println(irException.getCompilations());
builder.append(errorMsg).append(System.lineSeparator()).append(irException.getExceptionInfo());
} else if (e instanceof TestVMException testVMException) {
builder.append(errorMsg).append(System.lineSeparator()).append(testVMException.getExceptionInfo());
} else {
// Print stack trace otherwise
StringWriter errors = new StringWriter();
e.printStackTrace(new PrintWriter(errors));
builder.append(errors);
}
builder.append(System.lineSeparator());
}
System.err.println(builder);
if (!VERBOSE && !REPORT_STDOUT && !TESTLIST && !EXCLUDELIST) {
// Provide a hint to the user how to get additional output/debugging information.
System.err.println(RERUN_HINT);
}
throw new TestRunException(failedScenarios + ". Please check stderr for more information.");
}
private static String getScenarioTitleAndFlags(Scenario scenario) {
StringBuilder builder = new StringBuilder();
String title = "Scenario #" + scenario.getIndex();
builder.append(title).append(System.lineSeparator()).append("=".repeat(title.length()))
.append(System.lineSeparator());
builder.append("Scenario flags: [").append(String.join(", ", scenario.getFlags())).append("]")
.append(System.lineSeparator());
return builder.toString();
}
/**
* Execute a separate "flag" VM with White Box access to determine all test VM flags. The flag VM sends an encoding of
* all required flags for the test VM to the driver VM over a socket. Once the flag VM exits, this driver VM parses the
* test VM flags, which also determine if IR matching should be done, and then starts the test VM to execute all tests.
*/
private void start(Scenario scenario) {
if (scenario != null && !scenario.isEnabled()) {
System.out.println("Disabled scenario #" + scenario.getIndex() + "! This scenario is not present in set flag " +
"-DScenarios and is therefore not executed.");
return;
}
shouldVerifyIR = irVerificationPossible;
try {
// Use TestFramework flags and scenario flags for new VMs.
List<String> additionalFlags = new ArrayList<>();
if (flags != null) {
additionalFlags.addAll(flags);
}
if (scenario != null) {
List<String> scenarioFlags = scenario.getFlags();
String scenarioFlagsString = scenarioFlags.isEmpty() ? "" : " - [" + String.join(", ", scenarioFlags) + "]";
System.out.println("Scenario #" + scenario.getIndex() + scenarioFlagsString + ":");
additionalFlags.addAll(scenarioFlags);
}
String frameworkAndScenarioFlags = additionalFlags.isEmpty() ?
"" : " - [" + String.join(", ", additionalFlags) + "]";
if (shouldVerifyIR) {
// Only need to use flag VM if an IR verification is possibly done.
System.out.println("Run Flag VM:");
FlagVMProcess flagVMProcess = new FlagVMProcess(testClass, additionalFlags);
shouldVerifyIR = flagVMProcess.shouldVerifyIR();
if (shouldVerifyIR) {
// Add more flags for the test VM which are required to do IR verification.
additionalFlags.addAll(flagVMProcess.getTestVMFlags());
} // else: Flag VM found a reason to not do IR verification.
} else {
System.out.println("Skip Flag VM due to not performing IR verification.");
}
System.out.println("Run Test VM" + frameworkAndScenarioFlags + ":");
runTestVM(additionalFlags);
} finally {
if (scenario != null) {
scenario.setTestVMOutput(TestVMProcess.getLastTestVMOutput());
}
System.out.println();
}
}
private boolean hasIRAnnotations() {
return Arrays.stream(testClass.getDeclaredMethods()).anyMatch(m -> m.getAnnotationsByType(IR.class).length > 0);
}
private List<String> anyNonWhitelistedJTregVMAndJavaOptsFlags() {
List<String> flags = Arrays.stream(Utils.getTestJavaOpts())
.map(s -> s.replaceFirst("-XX:[+|-]?|-(?=[^D|^e])", ""))
.collect(Collectors.toList());
List<String> nonWhiteListedFlags = new ArrayList();
for (String flag : flags) {
// Property flags (prefix -D), -ea and -esa are whitelisted.
if (!flag.startsWith("-D") && !flag.startsWith("-e") && JTREG_WHITELIST_FLAGS.stream().noneMatch(flag::contains)) {
// Found VM flag that is not whitelisted
nonWhiteListedFlags.add(flag);
}
}
return nonWhiteListedFlags;
}
private void runTestVM(List<String> additionalFlags) {
TestVMProcess testVMProcess = new TestVMProcess(additionalFlags, testClass, helperClasses, defaultWarmup,
isAllowNotCompilable, testClassesOnBootClassPath);
if (shouldVerifyIR) {
try {
TestClassParser testClassParser = new TestClassParser(testClass, isAllowNotCompilable);
Matchable testClassMatchable = testClassParser.parse(testVMProcess.getHotspotPidFileName(),
testVMProcess.getIrEncoding());
IRMatcher matcher = new IRMatcher(testClassMatchable);
matcher.match();
} catch (IRViolationException e) {
e.addCommandLine(testVMProcess.getCommandLine());
throw e;
}
} else {
System.out.println("IR verification disabled either due to no @IR annotations, through explicitly setting " +
"-DVerify=false, due to not running a debug build, using a non-whitelisted JTreg VM or " +
"Javaopts flag like -Xint, or running the test VM with other VM flags added by user code " +
"that make the IR verification impossible (e.g. -XX:-UseCompile, " +
"-XX:TieredStopAtLevel=[1,2,3], etc.).");
}
}
public static void check(boolean test, String failureMessage) {
if (!test) {
throw new TestFrameworkException(failureMessage);
}
}
}
|