hotspot/test/compiler/codecache/jmx/UsageThresholdIncreasedTest.java
author kvn
Fri, 26 Jun 2015 15:55:54 -0700
changeset 31413 96a5b57297a3
parent 30604 b8d532cb6420
child 31522 2d29f2e927fc
permissions -rw-r--r--
8130008: compiler/codecache/jmx/UsageThresholdIncreasedTest.java should be quarantined Reviewed-by: iveresov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     1
/*
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 29336
diff changeset
     2
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     4
 *
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     7
 * published by the Free Software Foundation.
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     8
 *
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    13
 * accompanied this code).
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    14
 *
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    18
 *
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    21
 * questions.
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    22
 */
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    23
30604
b8d532cb6420 8067013: Rename the com.oracle.java.testlibary package
ykantser
parents: 29678
diff changeset
    24
import jdk.test.lib.Asserts;
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    25
import java.lang.management.MemoryPoolMXBean;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    26
import sun.hotspot.code.BlobType;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    27
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    28
/*
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    29
 * @test UsageThresholdIncreasedTest
31413
96a5b57297a3 8130008: compiler/codecache/jmx/UsageThresholdIncreasedTest.java should be quarantined
kvn
parents: 30604
diff changeset
    30
 * @ignore 8129937
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    31
 * @library /testlibrary /../../test/lib
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 29336
diff changeset
    32
 * @modules java.base/sun.misc
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 29336
diff changeset
    33
 *          java.management
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    34
 * @build UsageThresholdIncreasedTest
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    35
 * @run main ClassFileInstaller sun.hotspot.WhiteBox
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    36
 *     sun.hotspot.WhiteBox$WhiteBoxPermission
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    37
 * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    38
 *     -XX:+WhiteBoxAPI -XX:+SegmentedCodeCache -XX:-UseCodeCacheFlushing
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    39
 *     -XX:-MethodFlushing -XX:CompileCommand=compileonly,null::*
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    40
 *     UsageThresholdIncreasedTest
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    41
 * @summary verifying that threshold hasn't been hit after allocation smaller
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    42
 *     than threshold value and that threshold value can be changed
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    43
 */
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    44
public class UsageThresholdIncreasedTest {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    45
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    46
    private static final int ALLOCATION_STEP = 5;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    47
    private static final long THRESHOLD_STEP = ALLOCATION_STEP
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    48
            * CodeCacheUtils.MIN_ALLOCATION;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    49
    private final BlobType btype;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    50
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    51
    public UsageThresholdIncreasedTest(BlobType btype) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    52
        this.btype = btype;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    53
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    54
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    55
    public static void main(String[] args) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    56
        for (BlobType btype : BlobType.getAvailable()) {
29336
b287769dcff1 8068461: compiler/codecache/jmx/UsageThresholdIncreasedTest.java failed: java.lang.RuntimeException: Usage threshold was hit: 1 times for CodeHeap 'non-nmethods'
dpochepk
parents: 28384
diff changeset
    57
            if (CodeCacheUtils.isCodeHeapPredictable(btype)) {
b287769dcff1 8068461: compiler/codecache/jmx/UsageThresholdIncreasedTest.java failed: java.lang.RuntimeException: Usage threshold was hit: 1 times for CodeHeap 'non-nmethods'
dpochepk
parents: 28384
diff changeset
    58
                new UsageThresholdIncreasedTest(btype).runTest();
b287769dcff1 8068461: compiler/codecache/jmx/UsageThresholdIncreasedTest.java failed: java.lang.RuntimeException: Usage threshold was hit: 1 times for CodeHeap 'non-nmethods'
dpochepk
parents: 28384
diff changeset
    59
            }
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    60
        }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    61
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    62
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    63
    private void checkUsageThresholdCount(MemoryPoolMXBean bean, long count){
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    64
        Asserts.assertEQ(bean.getUsageThresholdCount(), count,
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    65
                String.format("Usage threshold was hit: %d times for %s "
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    66
                        + "Threshold value: %d with current usage: %d",
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    67
                        bean.getUsageThresholdCount(), bean.getName(),
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    68
                        bean.getUsageThreshold(), bean.getUsage().getUsed()));
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    69
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    70
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    71
    protected void runTest() {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    72
        long headerSize = CodeCacheUtils.getHeaderSize(btype);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    73
        long allocationUnit = CodeCacheUtils.MIN_ALLOCATION - headerSize;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    74
        MemoryPoolMXBean bean = btype.getMemoryPool();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    75
        long initialCount = bean.getUsageThresholdCount();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    76
        long initialSize = bean.getUsage().getUsed();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    77
        bean.setUsageThreshold(initialSize + THRESHOLD_STEP);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    78
        for (int i = 0; i < ALLOCATION_STEP - 1; i++) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    79
            CodeCacheUtils.WB.allocateCodeBlob(allocationUnit, btype.id);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    80
        }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    81
        // Usage threshold check is triggered by GC cycle, so, call it
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    82
        CodeCacheUtils.WB.fullGC();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    83
        checkUsageThresholdCount(bean, initialCount);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    84
        long filledSize = bean.getUsage().getUsed();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    85
        bean.setUsageThreshold(filledSize + THRESHOLD_STEP);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    86
        for (int i = 0; i < ALLOCATION_STEP - 1; i++) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    87
            CodeCacheUtils.WB.allocateCodeBlob(allocationUnit, btype.id);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    88
        }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    89
        CodeCacheUtils.WB.fullGC();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    90
        checkUsageThresholdCount(bean, initialCount);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    91
        System.out.println("INFO: Case finished successfully for " + bean.getName());
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    92
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    93
}