test/compiler/rtm/cli/TestUseRTMForStackLocksOptionOnSupportedConfig.java

Print this page




  41 import com.oracle.java.testlibrary.cli.predicate.AndPredicate;
  42 import rtm.predicate.SupportedCPU;
  43 import rtm.predicate.SupportedVM;
  44 
  45 public class TestUseRTMForStackLocksOptionOnSupportedConfig
  46         extends CommandLineOptionTest {
  47     private static final String DEFAULT_VALUE = "false";
  48 
  49     private TestUseRTMForStackLocksOptionOnSupportedConfig() {
  50         super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
  51     }
  52 
  53     @Override
  54     public void runTestCases() throws Throwable {
  55         String errorMessage
  56                 = CommandLineOptionTest.getExperimentalOptionErrorMessage(
  57                 "UseRTMForStackLocks");
  58         String warningMessage
  59                 = RTMGenericCommandLineOptionTest.RTM_FOR_STACK_LOCKS_WARNING;
  60 




  61         CommandLineOptionTest.verifySameJVMStartup(
  62                 new String[] { errorMessage }, null, ExitCode.FAIL,

  63                 "-XX:+UseRTMForStackLocks");



  64         // verify that we get a warning when trying to use rtm for stack
  65         // lock, but not using rtm locking.
  66         CommandLineOptionTest.verifySameJVMStartup(
  67                 new String[] { warningMessage }, null, ExitCode.OK,


  68                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
  69                 "-XX:+UseRTMForStackLocks",
  70                 "-XX:-UseRTMLocking");
  71         // verify that we don't get a warning when no using rtm for stack
  72         // lock and not using rtm locking.
  73         CommandLineOptionTest.verifySameJVMStartup(null,
  74                 new String[] { warningMessage }, ExitCode.OK,




  75                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
  76                 "-XX:-UseRTMForStackLocks",
  77                 "-XX:-UseRTMLocking");
  78         // verify that we don't get a warning when using rtm for stack
  79         // lock and using rtm locking.
  80         CommandLineOptionTest.verifySameJVMStartup(null,
  81                 new String[] { warningMessage }, ExitCode.OK,




  82                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
  83                 "-XX:+UseRTMForStackLocks",
  84                 "-XX:+UseRTMLocking");
  85         // verify that default value if false
  86         CommandLineOptionTest.verifyOptionValueForSameVM("UseRTMForStackLocks",
  87                 TestUseRTMForStackLocksOptionOnSupportedConfig.DEFAULT_VALUE,

  88                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS);
  89         // verify that default value is false even with +UseRTMLocking
  90         CommandLineOptionTest.verifyOptionValueForSameVM("UseRTMForStackLocks",
  91                 TestUseRTMForStackLocksOptionOnSupportedConfig.DEFAULT_VALUE,

  92                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
  93                 "-XX:+UseRTMLocking");
  94         // verify that we can turn the option on
  95         CommandLineOptionTest.verifyOptionValueForSameVM("UseRTMForStackLocks",
  96                 "true", CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,




  97                 "-XX:+UseRTMLocking", "-XX:+UseRTMForStackLocks");
  98     }
  99 
 100     public static void main(String args[]) throws Throwable {
 101         new TestUseRTMForStackLocksOptionOnSupportedConfig().test();
 102     }
 103 }


  41 import com.oracle.java.testlibrary.cli.predicate.AndPredicate;
  42 import rtm.predicate.SupportedCPU;
  43 import rtm.predicate.SupportedVM;
  44 
  45 public class TestUseRTMForStackLocksOptionOnSupportedConfig
  46         extends CommandLineOptionTest {
  47     private static final String DEFAULT_VALUE = "false";
  48 
  49     private TestUseRTMForStackLocksOptionOnSupportedConfig() {
  50         super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
  51     }
  52 
  53     @Override
  54     public void runTestCases() throws Throwable {
  55         String errorMessage
  56                 = CommandLineOptionTest.getExperimentalOptionErrorMessage(
  57                 "UseRTMForStackLocks");
  58         String warningMessage
  59                 = RTMGenericCommandLineOptionTest.RTM_FOR_STACK_LOCKS_WARNING;
  60 
  61         String shouldFailMessage = " VM option 'UseRTMForStackLocks' is "
  62                 + "experimental%nJVM startup should fail without "
  63                 + "-XX:+UnlockExperimentalVMOptions flag";
  64         
  65         CommandLineOptionTest.verifySameJVMStartup(
  66                 new String[] { errorMessage }, null, shouldFailMessage,
  67                 shouldFailMessage + "%nError message expected", ExitCode.FAIL,
  68                 "-XX:+UseRTMForStackLocks");
  69         String shouldPassMessage = " VM option 'UseRTMForStackLocks'"
  70                 + " is experimental%nJVM startup should pass with "
  71                 + "-XX:+UnlockExperimentalVMOptions flag";
  72         // verify that we get a warning when trying to use rtm for stack
  73         // lock, but not using rtm locking.
  74         CommandLineOptionTest.verifySameJVMStartup(
  75                 new String[] { warningMessage }, null, shouldPassMessage,
  76                 "There should be warning when trying to use rtm for stack "
  77                         + "lock, but not using rtm locking", ExitCode.OK,
  78                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
  79                 "-XX:+UseRTMForStackLocks",
  80                 "-XX:-UseRTMLocking");
  81         // verify that we don't get a warning when no using rtm for stack
  82         // lock and not using rtm locking.
  83         CommandLineOptionTest.verifySameJVMStartup(null,
  84                 new String[] { warningMessage }, shouldPassMessage,
  85                 "There should not be any warning when use both "
  86                         + "-XX:-UseRTMForStackLocks and -XX:-UseRTMLocking "
  87                         + "flags",
  88                 ExitCode.OK,
  89                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
  90                 "-XX:-UseRTMForStackLocks",
  91                 "-XX:-UseRTMLocking");
  92         // verify that we don't get a warning when using rtm for stack
  93         // lock and using rtm locking.
  94         CommandLineOptionTest.verifySameJVMStartup(null,
  95                 new String[] { warningMessage }, shouldPassMessage,
  96                 "There should not be any warning when use both "
  97                         + "-XX:+UseRTMForStackLocks and -XX:+UseRTMLocking"
  98                         + " flags",
  99                 ExitCode.OK,
 100                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
 101                 "-XX:+UseRTMForStackLocks",
 102                 "-XX:+UseRTMLocking");
 103         // verify that default value if false
 104         CommandLineOptionTest.verifyOptionValueForSameVM("UseRTMForStackLocks",
 105                 TestUseRTMForStackLocksOptionOnSupportedConfig.DEFAULT_VALUE,
 106                 "Default value of option 'UseRTMForStackLocks' should be false",
 107                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS);
 108         // verify that default value is false even with +UseRTMLocking
 109         CommandLineOptionTest.verifyOptionValueForSameVM("UseRTMForStackLocks",
 110                 TestUseRTMForStackLocksOptionOnSupportedConfig.DEFAULT_VALUE,
 111                 "Default value of option 'UseRTMForStackLocks' should be false",
 112                 CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
 113                 "-XX:+UseRTMLocking");
 114         // verify that we can turn the option on
 115         CommandLineOptionTest.verifyOptionValueForSameVM("UseRTMForStackLocks",
 116                         "true", "Value of option 'UseRTMForStackLocks' should "
 117                                 + "be able to be set as 'true' when both " 
 118                                 + "-XX:+UseRTMForStackLocks and "
 119                                 + "-XX:+UseRTMLocking flags used",
 120                         CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS,
 121                         "-XX:+UseRTMLocking", "-XX:+UseRTMForStackLocks");
 122     }
 123 
 124     public static void main(String args[]) throws Throwable {
 125         new TestUseRTMForStackLocksOptionOnSupportedConfig().test();
 126     }
 127 }