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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
/*
* Copyright (c) 2004, 2018, 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.
*/
package nsk.jvmti.scenarios.allocation.AP04;
import java.io.*;
import java.lang.reflect.*;
import nsk.share.*;
import nsk.share.jvmti.*;
public class ap04t003 extends DebugeeClass {
public static void main(String[] argv) {
argv = nsk.share.jvmti.JVMTITest.commonInit(argv);
// produce JCK-like exit status
System.exit(run(argv, System.out) + Consts.JCK_STATUS_BASE);
}
public static int run(String argv[], PrintStream out) {
return new ap04t003().runThis(argv, out);
}
private static int OBJ_MAX_COUNT = 100000;
private static ap04t003[] root;
private static int modified;
public static volatile boolean iterationCompleted = true;
private static native void setTag(Object target, long tag);
public static native void runIterateOverHeap();
public static native void runIterateOverInstancesOfClass();
public static native void runIterateOverReachableObjects();
public static native void runIterateOverObjectsReachableFromObject();
/* scaffold objects */
static ArgumentHandler argHandler = null;
static Log log = null;
static long timeout = 0;
int status = Consts.TEST_PASSED;
private int runThis(String argv[], PrintStream out) {
argHandler = new ArgumentHandler(argv);
log = new Log(out, argHandler);
timeout = argHandler.getWaitTime() * 60 * 1000; // milliseconds
status = checkStatus(status);
try {
runCase("1", "thread1", new ap04t003HeapIterator());
runCase("2", "thread2", new ap04t003AllReachachableObjectsIterator());
runCase("3", "thread3", new ap04t003SomeReachachableObjectsIterator());
runCase("4", "thread4", new ap04t003ClassIterator());
} catch (OutOfMemoryError e) {
log.display("Warning: OutOfMemoryError was thrown. Test exited");
System.exit(Consts.TEST_PASSED + Consts.JCK_STATUS_BASE);
}
status = checkStatus(status);
return status;
}
private void runCase ( String caseName,
String threadName,
ap04t003Iterator iterator ) {
log.display("CASE #" + caseName + ":");
log.display("Allocating objects...");
root = new ap04t003[OBJ_MAX_COUNT];
for (int i = 0; i < OBJ_MAX_COUNT; i++) {
root[i] = new ap04t003();
setTag(root[i], 1);
}
log.display("Start heap iteration thread");
ap04t003Thread thread = startThread( threadName, iterator);
log.display("Wait for thread to finish");
joinThread(thread);
log.display("Cleaning tags and references to objects...");
for (int i = 0; i < OBJ_MAX_COUNT; i++) {
if (root[i] != null) {
setTag(root[i], 0);
}
root[i] = null;
}
System.gc();
log.display("CASE #" + caseName + " finished.\n");
}
private static ap04t003Thread startThread(String name, ap04t003Iterator iterator) {
ap04t003Thread thread = new ap04t003Thread(name, new Wicket(), iterator);
thread.start();
thread.getStartLock().waitFor();
return thread;
}
private static void joinThread(Thread thread) {
if (thread.isAlive()) {
try {
thread.join(timeout);
} catch (InterruptedException e) {
throw new Failure(e);
}
}
}
}
/**************************************************************************/
interface ap04t003Iterator {
public void runIteration();
}
class ap04t003HeapIterator implements ap04t003Iterator {
public void runIteration() {
ap04t003.runIterateOverHeap();
ap04t003.iterationCompleted = true;
}
}
class ap04t003ClassIterator implements ap04t003Iterator {
public void runIteration() {
ap04t003.runIterateOverInstancesOfClass();
ap04t003.iterationCompleted = true;
}
}
class ap04t003AllReachachableObjectsIterator implements ap04t003Iterator {
public void runIteration() {
ap04t003.runIterateOverReachableObjects();
ap04t003.iterationCompleted = true;
}
}
class ap04t003SomeReachachableObjectsIterator implements ap04t003Iterator {
public void runIteration() {
ap04t003.runIterateOverObjectsReachableFromObject();
ap04t003.iterationCompleted = true;
}
}
/**************************************************************************/
class ap04t003Thread extends Thread {
String name;
ap04t003Iterator iterator;
Wicket startLock;
Wicket endLock;
public ap04t003Thread( String name,
Wicket startLock,
ap04t003Iterator iterator ) {
if (name == null || name.length() == 0) {
throw new Failure("Empty thread name.");
}
if (startLock == null) {
throw new Failure("startLock is null.");
}
if (iterator == null) {
throw new Failure("iterator is null.");
}
this.name = name;
this.startLock = startLock;
this.iterator = iterator;
}
public Wicket getStartLock() {
return startLock;
}
public void run() {
ap04t003.log.display(name + " started.");
ap04t003.iterationCompleted = false;
startLock.unlock();
iterator.runIteration();
ap04t003.log.display(name + " finished.");
}
}
|