1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
* Copyright (c) 2002, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* summary converted from VM Testbase gc/memory/Array/ArrayJuggle/Juggle1.
* VM Testbase keywords: [gc, stress, stressopt, nonconcurrent]
*/
/* @test @key stress randomness @library /vmTestbase /test/lib @run main/othervm -Xlog:gc=debug:gc.log gc.ArrayJuggle.Juggle1 */
/* @test @key stress randomness @library /vmTestbase /test/lib @run main/othervm -Xlog:gc=debug:gc.log gc.ArrayJuggle.Juggle1 -tg */
package gc.ArrayJuggle;
import nsk.share.test.*;
import nsk.share.gc.*;
/**
* Test that tries to confuse the GC.
*
* This program initializes a main array and launches some threads
* which modify and copy portions of the array to try to confuse
* the GC.
*/
public class Juggle1 extends ThreadedGCTest {
private int arraySize = 1000;
private int objectSize = 1000;
private int maxLinkLength = 100;
private int maxCopySize = arraySize / 10;
private int threadsCount;
private LinkedMemoryObject mainArray[];
private class MainArrayWalker implements Runnable {
public void run() {
int index = LocalRandom.nextInt(arraySize);
int cellSize = LocalRandom.nextInt(objectSize);
mainArray[index] = new LinkedMemoryObject(cellSize);
//mainArray[index] = Memory.makeLinearList(maxLinkLength, objectSize);
}
public String toString() {
return "Thread-A";
}
}
private class LinkMaker implements Runnable {
private int n;
public void run() {
int index = LocalRandom.nextInt(arraySize);
// Sometimes clear the reference so the lists do not become too large
if (++n == maxLinkLength) {
mainArray[index] = null;
n = 0;
}
mainArray[index] = Memory.makeRandomLinearList(maxLinkLength, objectSize);
}
public String toString() {
return "Thread-B";
}
}
private class CopyingThread implements Runnable {
private LinkedMemoryObject localArray[];
private int currentIndex = 0;
public CopyingThread() {
localArray = new LinkedMemoryObject[maxCopySize];
}
public void run() {
int toCopy = LocalRandom.nextInt(maxCopySize);
int mainIndex = LocalRandom.nextInt(arraySize);
for (int i = 0; i < toCopy; i++) {
localArray[currentIndex] = mainArray[mainIndex];
currentIndex = (currentIndex + 1) % maxCopySize;
mainIndex = (mainIndex + 1) % arraySize;
}
}
public String toString() {
return "Thread-C";
}
}
protected Runnable createRunnable(int i) {
switch (i % 3) {
case 0:
return new MainArrayWalker();
case 1:
return new LinkMaker();
case 2:
default:
return new CopyingThread();
}
}
public void run() {
// arraySize * (objectSize + referenceSize) + threadsCount * (referenceSize arraySize/10 * (referenceSize + objectSize)) = memory
long referenceSize = Memory.getReferenceSize();
long objectExtraSize = Memory.getObjectExtraSize();
threadsCount = runParams.getNumberOfThreads();
arraySize = Memory.getArrayLength(
runParams.getTestMemory(),
Memory.getListSize(maxLinkLength, objectSize)
);
maxCopySize = arraySize / 10 - 1;
arraySize = arraySize * 9 / 10 - 1;
System.out.println("Array size: " + arraySize);
mainArray = new LinkedMemoryObject[arraySize];
Memory.fillArrayRandom(mainArray, arraySize, objectSize);
super.run();
}
public static void main(String args[]) {
GC.runTest(new Juggle1(), args);
}
}
|