jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/MapLoops.java
author dl
Thu, 03 Mar 2016 10:43:07 -0800
changeset 36233 f85ed703cf7e
parent 34347 4a17f9e90a0f
permissions -rw-r--r--
8150523: improve jtreg test timeout handling, especially -timeout: Reviewed-by: martin, psandoz, smarks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    18
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    19
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    20
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * Expert Group and released to the public domain, as explained at
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 7518
diff changeset
    31
 * http://creativecommons.org/publicdomain/zero/1.0/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @bug 4486658
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * @summary Exercise multithreaded maps, by default ConcurrentHashMap.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * Multithreaded hash table test.  Each thread does a random walk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * though elements of "key" array. On each iteration, it checks if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * table includes key.  If absent, with probability pinsert it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * inserts it, and if present, with probability premove it removes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * it.  (pinsert and premove are expressed as percentages to simplify
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * parsing from command line.)
36233
f85ed703cf7e 8150523: improve jtreg test timeout handling, especially -timeout:
dl
parents: 34347
diff changeset
    44
 * @library /lib/testlibrary/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
36233
f85ed703cf7e 8150523: improve jtreg test timeout handling, especially -timeout:
dl
parents: 34347
diff changeset
    47
import static java.util.concurrent.TimeUnit.MILLISECONDS;
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    48
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    49
import java.util.Map;
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    50
import java.util.SplittableRandom;
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    51
import java.util.concurrent.CyclicBarrier;
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    52
import java.util.concurrent.ExecutorService;
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    53
import java.util.concurrent.Executors;
36233
f85ed703cf7e 8150523: improve jtreg test timeout handling, especially -timeout:
dl
parents: 34347
diff changeset
    54
import jdk.testlibrary.Utils;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
public class MapLoops {
36233
f85ed703cf7e 8150523: improve jtreg test timeout handling, especially -timeout:
dl
parents: 34347
diff changeset
    57
    static final long LONG_DELAY_MS = Utils.adjustTimeout(10_000);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    static final int NKEYS = 100000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    static int pinsert     = 60;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    static int premove     = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    static int maxThreads  = 5;
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    62
    static int nops        = 10000; // 1000000
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    static int removesPerMaxRandom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    static int insertsPerMaxRandom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    static final ExecutorService pool = Executors.newCachedThreadPool();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        Class mapClass = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        if (args.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                mapClass = Class.forName(args[0]);
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    74
            } catch (ClassNotFoundException e) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                throw new RuntimeException("Class " + args[0] + " not found.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            mapClass = RWMap.class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (args.length > 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            maxThreads = Integer.parseInt(args[1]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        if (args.length > 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            nops = Integer.parseInt(args[2]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (args.length > 3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            pinsert = Integer.parseInt(args[3]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (args.length > 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            premove = Integer.parseInt(args[4]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        // normalize probabilities wrt random number generator
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        removesPerMaxRandom = (int)(((double)premove/100.0 * 0x7FFFFFFFL));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        insertsPerMaxRandom = (int)(((double)pinsert/100.0 * 0x7FFFFFFFL));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        System.out.println("Using " + mapClass.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
    99
        SplittableRandom rnd = new SplittableRandom();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        Integer[] key = new Integer[NKEYS];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        for (int i = 0; i < key.length; ++i)
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   102
            key[i] = new Integer(rnd.nextInt());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        // warmup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        System.out.println("Warmup...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        for (int k = 0; k < 2; ++k) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            Map<Integer, Integer> map = (Map<Integer,Integer>)mapClass.newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            CyclicBarrier barrier = new CyclicBarrier(1, timer);
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   110
            new Runner(map, key, barrier, rnd.split()).run();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            map.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        for (int i = 1; i <= maxThreads; i += (i+1) >>> 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            System.out.print("Threads: " + i + "\t:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            Map<Integer, Integer> map = (Map<Integer,Integer>)mapClass.newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            CyclicBarrier barrier = new CyclicBarrier(i+1, timer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            for (int k = 0; k < i; ++k)
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   120
                pool.execute(new Runner(map, key, barrier, rnd.split()));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            long time = timer.getTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            long tpo = time / (i * (long)nops);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            System.out.print(LoopHelpers.rightJustify(tpo) + " ns per op");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            double secs = (double)(time) / 1000000000.0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            System.out.println("\t " + secs + "s run time");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            map.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        pool.shutdown();
36233
f85ed703cf7e 8150523: improve jtreg test timeout handling, especially -timeout:
dl
parents: 34347
diff changeset
   131
        if (! pool.awaitTermination(LONG_DELAY_MS, MILLISECONDS))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    static class Runner implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        final Map<Integer,Integer> map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        final Integer[] key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        final CyclicBarrier barrier;
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   139
        final SplittableRandom rnd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        int position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        int total;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   143
        Runner(Map<Integer,Integer> map,
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   144
               Integer[] key,
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   145
               CyclicBarrier barrier,
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   146
               SplittableRandom rnd) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            this.map = map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            this.key = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            this.barrier = barrier;
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   150
            this.rnd = rnd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            position = key.length / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        int step() {
32990
299a81977f48 8134855: Bulk integration of java.util.concurrent.locks classes
dl
parents: 22293
diff changeset
   155
            // random-walk around key positions, bunching accesses
34347
4a17f9e90a0f 8142441: Improve jtreg tests for java.util.concurrent
dl
parents: 32990
diff changeset
   156
            int r = rnd.nextInt(Integer.MAX_VALUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            position += (r & 7) - 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            while (position >= key.length) position -= key.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            while (position < 0) position += key.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            Integer k = key[position];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            Integer x = map.get(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            if (x != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                if (x.intValue() != k.intValue())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                    throw new Error("bad mapping: " + x + " to " + k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                if (r < removesPerMaxRandom) {
32990
299a81977f48 8134855: Bulk integration of java.util.concurrent.locks classes
dl
parents: 22293
diff changeset
   169
                    // get away from this position
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                    position = r % key.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                    map.remove(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                    return 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                    total += LoopHelpers.compute2(LoopHelpers.compute1(x.intValue()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                if (r < insertsPerMaxRandom) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                    map.put(k, k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                    return 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                int ops = nops;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                while (ops > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                    ops -= step();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            catch (Exception ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                ex.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
}