hotspot/test/compiler/codecache/jmx/UsageThresholdIncreasedTest.java
author thartmann
Wed, 01 Jul 2015 09:07:10 +0200
changeset 31522 2d29f2e927fc
parent 31413 96a5b57297a3
child 33730 30e064828045
permissions -rw-r--r--
8129937: compiler/codecache/jmx/UsageThresholdIncreasedTest.java fails with "Usage threshold was hit" Summary: Tests should not assume that usage of non-profiled code heap is predictable. Reviewed-by: kvn, dpochepk
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
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    30
 * @library /testlibrary /../../test/lib
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 29336
diff changeset
    31
 * @modules java.base/sun.misc
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 29336
diff changeset
    32
 *          java.management
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    33
 * @build UsageThresholdIncreasedTest
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    34
 * @run main ClassFileInstaller sun.hotspot.WhiteBox
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    35
 *     sun.hotspot.WhiteBox$WhiteBoxPermission
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    36
 * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    37
 *     -XX:+WhiteBoxAPI -XX:+SegmentedCodeCache -XX:-UseCodeCacheFlushing
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    38
 *     -XX:-MethodFlushing -XX:CompileCommand=compileonly,null::*
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    39
 *     UsageThresholdIncreasedTest
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    40
 * @summary verifying that threshold hasn't been hit after allocation smaller
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    41
 *     than threshold value and that threshold value can be changed
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    42
 */
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    43
public class UsageThresholdIncreasedTest {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    44
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    45
    private static final int ALLOCATION_STEP = 5;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    46
    private static final long THRESHOLD_STEP = ALLOCATION_STEP
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    47
            * CodeCacheUtils.MIN_ALLOCATION;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    48
    private final BlobType btype;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    49
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    50
    public UsageThresholdIncreasedTest(BlobType btype) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    51
        this.btype = btype;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    52
    }
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
    public static void main(String[] args) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    55
        for (BlobType btype : BlobType.getAvailable()) {
31522
2d29f2e927fc 8129937: compiler/codecache/jmx/UsageThresholdIncreasedTest.java fails with "Usage threshold was hit"
thartmann
parents: 31413
diff changeset
    56
            new UsageThresholdIncreasedTest(btype).runTest();
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    57
        }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    58
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    59
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    60
    private void checkUsageThresholdCount(MemoryPoolMXBean bean, long count){
31522
2d29f2e927fc 8129937: compiler/codecache/jmx/UsageThresholdIncreasedTest.java fails with "Usage threshold was hit"
thartmann
parents: 31413
diff changeset
    61
        CodeCacheUtils.assertEQorGTE(btype, bean.getUsageThresholdCount(), count,
28384
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    62
                String.format("Usage threshold was hit: %d times for %s "
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    63
                        + "Threshold value: %d with current usage: %d",
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    64
                        bean.getUsageThresholdCount(), bean.getName(),
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    65
                        bean.getUsageThreshold(), bean.getUsage().getUsed()));
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    66
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    67
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    68
    protected void runTest() {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    69
        long headerSize = CodeCacheUtils.getHeaderSize(btype);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    70
        long allocationUnit = CodeCacheUtils.MIN_ALLOCATION - headerSize;
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    71
        MemoryPoolMXBean bean = btype.getMemoryPool();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    72
        long initialCount = bean.getUsageThresholdCount();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    73
        long initialSize = bean.getUsage().getUsed();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    74
        bean.setUsageThreshold(initialSize + THRESHOLD_STEP);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    75
        for (int i = 0; i < ALLOCATION_STEP - 1; i++) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    76
            CodeCacheUtils.WB.allocateCodeBlob(allocationUnit, btype.id);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    77
        }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    78
        // Usage threshold check is triggered by GC cycle, so, call it
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    79
        CodeCacheUtils.WB.fullGC();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    80
        checkUsageThresholdCount(bean, initialCount);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    81
        long filledSize = bean.getUsage().getUsed();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    82
        bean.setUsageThreshold(filledSize + THRESHOLD_STEP);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    83
        for (int i = 0; i < ALLOCATION_STEP - 1; i++) {
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    84
            CodeCacheUtils.WB.allocateCodeBlob(allocationUnit, btype.id);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    85
        }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    86
        CodeCacheUtils.WB.fullGC();
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    87
        checkUsageThresholdCount(bean, initialCount);
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    88
        System.out.println("INFO: Case finished successfully for " + bean.getName());
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    89
    }
918bbbe51796 8059613: JEP-JDK-8043304: Test task: JMX- tests
iignatyev
parents:
diff changeset
    90
}