rtm.predicate.SupportedCPU Java Examples

The following examples show how to use rtm.predicate.SupportedCPU. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TestRTMTotalCountIncrRateOptionOnUnsupportedConfig.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private TestRTMTotalCountIncrRateOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
                    new SupportedVM())),
            "RTMTotalCountIncrRate", false, true,
            TestRTMTotalCountIncrRateOptionOnUnsupportedConfig
                    .DEFAULT_VALUE,
            "-1", "0", "42", "128");
}
 
Example #2
Source File: TestRTMAbortRatioOptionOnUnsupportedConfig.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private TestRTMAbortRatioOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedVM(),
                    new SupportedCPU())),
            "RTMAbortRatio", false, true,
            TestRTMAbortRatioOptionOnUnsupportedConfig.DEFAULT_VALUE,
            "0", "10", "100", "200");
}
 
Example #3
Source File: TestRTMAbortRatioOptionOnUnsupportedConfig.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private TestRTMAbortRatioOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedVM(),
                    new SupportedCPU())),
            "RTMAbortRatio", false, true,
            TestRTMAbortRatioOptionOnUnsupportedConfig.DEFAULT_VALUE,
            "0", "10", "100", "200");
}
 
Example #4
Source File: TestUseRTMForStackLocksOptionOnUnsupportedConfig.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private TestUseRTMForStackLocksOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
                    new SupportedVM())),
            "UseRTMForStackLocks", true, true,
            TestUseRTMForStackLocksOptionOnUnsupportedConfig.DEFAULT_VALUE,
            "true");
}
 
Example #5
Source File: TestRTMTotalCountIncrRateOptionOnUnsupportedConfig.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private TestRTMTotalCountIncrRateOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
                    new SupportedVM())),
            "RTMTotalCountIncrRate", false, true,
            TestRTMTotalCountIncrRateOptionOnUnsupportedConfig
                    .DEFAULT_VALUE,
            "-1", "0", "42", "128");
}
 
Example #6
Source File: TestUseRTMForStackLocksOptionOnUnsupportedConfig.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private TestUseRTMForStackLocksOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
                    new SupportedVM())),
            "UseRTMForStackLocks", true, true,
            TestUseRTMForStackLocksOptionOnUnsupportedConfig.DEFAULT_VALUE,
            "true");
}
 
Example #7
Source File: TestUseRTMForStackLocksOptionOnUnsupportedConfig.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private TestUseRTMForStackLocksOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
                    new SupportedVM())),
            "UseRTMForStackLocks", true, true,
            TestUseRTMForStackLocksOptionOnUnsupportedConfig.DEFAULT_VALUE,
            "true");
}
 
Example #8
Source File: TestRTMAbortRatioOptionOnUnsupportedConfig.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private TestRTMAbortRatioOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedVM(),
                    new SupportedCPU())),
            "RTMAbortRatio", false, true,
            TestRTMAbortRatioOptionOnUnsupportedConfig.DEFAULT_VALUE,
            "0", "10", "100", "200");
}
 
Example #9
Source File: TestUseRTMForInflatedLocks.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMForInflatedLocks() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #10
Source File: TestRTMTotalCountIncrRate.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestRTMTotalCountIncrRate() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #11
Source File: TestUseRTMForStackLocks.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMForStackLocks() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #12
Source File: TestUseRTMXendForLockBusy.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMXendForLockBusy() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #13
Source File: TestUseRTMLockingOptionOnSupportedConfig.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMLockingOptionOnSupportedConfig() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #14
Source File: TestUseRTMAfterLockInflation.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMAfterLockInflation() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #15
Source File: TestUseRTMDeopt.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMDeopt() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #16
Source File: TestRTMDeoptOnLowAbortRatio.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestRTMDeoptOnLowAbortRatio() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #17
Source File: TestPrintPreciseRTMLockingStatisticsOptionOnUnsupportedConfig.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestPrintPreciseRTMLockingStatisticsOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
            new SupportedVM())));
}
 
Example #18
Source File: TestPrintPreciseRTMLockingStatisticsOptionOnSupportedConfig.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestPrintPreciseRTMLockingStatisticsOptionOnSupportedConfig() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #19
Source File: TestUseRTMDeoptOptionOnUnsupportedConfig.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMDeoptOptionOnUnsupportedConfig() {
    super(new NotPredicate(new AndPredicate(new SupportedCPU(),
                    new SupportedVM())),
            "UseRTMDeopt", true, false,
            TestUseRTMDeoptOptionOnUnsupportedConfig.DEFAULT_VALUE, "true");
}
 
Example #20
Source File: TestUseRTMForStackLocksOptionOnSupportedConfig.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMForStackLocksOptionOnSupportedConfig() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #21
Source File: TestUseRTMLockingOptionOnUnsupportedCPU.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMLockingOptionOnUnsupportedCPU() {
    super(new AndPredicate(new NotPredicate(new SupportedCPU()),
            new SupportedVM()));
}
 
Example #22
Source File: TestPrintPreciseRTMLockingStatisticsOptionOnSupportedConfig.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestPrintPreciseRTMLockingStatisticsOptionOnSupportedConfig() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #23
Source File: TestUseRTMDeoptOptionOnSupportedConfig.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMDeoptOptionOnSupportedConfig() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #24
Source File: TestUseRTMLockingOptionOnUnsupportedVM.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMLockingOptionOnUnsupportedVM() {
    super(new AndPredicate(new SupportedCPU(),
            new NotPredicate(new SupportedVM())));
}
 
Example #25
Source File: TestUseRTMForInflatedLocks.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMForInflatedLocks() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #26
Source File: TestRTMLockingCalculationDelay.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestRTMLockingCalculationDelay() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #27
Source File: TestRTMDeoptOnLowAbortRatio.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestRTMDeoptOnLowAbortRatio() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #28
Source File: TestRTMLockingThreshold.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestRTMLockingThreshold() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}
 
Example #29
Source File: TestUseRTMForStackLocks.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMForStackLocks() {
    super(new AndPredicate(new SupportedCPU(), new SupportedVM()));
}
 
Example #30
Source File: TestUseRTMDeopt.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private TestUseRTMDeopt() {
    super(new AndPredicate(new SupportedVM(), new SupportedCPU()));
}