src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyDebugUsage.java
changeset 48861 47f19ff9903c
parent 48190 25cfedf27edc
child 50858 2d3e99a72541
equal deleted inserted replaced
48860:5bce1b7e7800 48861:47f19ff9903c
   141      */
   141      */
   142     private static final Set<String> BasicLevelStructuredGraphDumpWhitelist = new HashSet<>(Arrays.asList(
   142     private static final Set<String> BasicLevelStructuredGraphDumpWhitelist = new HashSet<>(Arrays.asList(
   143                     "org.graalvm.compiler.phases.BasePhase.dumpAfter",
   143                     "org.graalvm.compiler.phases.BasePhase.dumpAfter",
   144                     "org.graalvm.compiler.phases.BasePhase.dumpBefore",
   144                     "org.graalvm.compiler.phases.BasePhase.dumpBefore",
   145                     "org.graalvm.compiler.core.GraalCompiler.emitFrontEnd",
   145                     "org.graalvm.compiler.core.GraalCompiler.emitFrontEnd",
   146                     "org.graalvm.compiler.truffle.PartialEvaluator.fastPartialEvaluation",
   146                     "org.graalvm.compiler.truffle.compiler.PartialEvaluator.fastPartialEvaluation",
   147                     "org.graalvm.compiler.truffle.PartialEvaluator$PerformanceInformationHandler.reportPerformanceWarnings",
   147                     "org.graalvm.compiler.truffle.compiler.PartialEvaluator$PerformanceInformationHandler.reportPerformanceWarnings",
   148                     "org.graalvm.compiler.truffle.TruffleCompiler.compileMethodHelper",
   148                     "org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl.compilePEGraph",
   149                     "org.graalvm.compiler.core.test.VerifyDebugUsageTest$ValidDumpUsagePhase.run",
   149                     "org.graalvm.compiler.core.test.VerifyDebugUsageTest$ValidDumpUsagePhase.run",
   150                     "org.graalvm.compiler.core.test.VerifyDebugUsageTest$InvalidConcatDumpUsagePhase.run",
   150                     "org.graalvm.compiler.core.test.VerifyDebugUsageTest$InvalidConcatDumpUsagePhase.run",
   151                     "org.graalvm.compiler.core.test.VerifyDebugUsageTest$InvalidDumpUsagePhase.run"));
   151                     "org.graalvm.compiler.core.test.VerifyDebugUsageTest$InvalidDumpUsagePhase.run"));
   152 
   152 
   153     /**
   153     /**