Skip to content

Commit 83e36d4

Browse files
committedSep 14, 2020
Improve Fuzz
1 parent 744cc80 commit 83e36d4

File tree

1 file changed

+27
-19
lines changed

1 file changed

+27
-19
lines changed
 

‎test/jdk/java/lang/Continuation/Fuzz.java

+27-19
Original file line numberDiff line numberDiff line change
@@ -66,34 +66,38 @@
6666
import sun.hotspot.WhiteBox;
6767

6868
public class Fuzz implements Runnable {
69-
static final boolean VERIFY_STACK = true; // could add significant time
69+
static final boolean VERIFY_STACK = false; // could add significant time
7070
static final boolean FILE = true;
7171
static final boolean RANDOM = false;
7272
static final boolean VERBOSE = false;
7373

74+
static final String FILENAME = "fuzz.dat";
7475
static final Path TEST_DIR = Path.of(System.getProperty("test.src", "."));
7576

7677
public static void main(String[] args) {
7778
warmup();
78-
for (int compileLevel : new int[]{4})
79-
for (boolean compileRun : new boolean[]{true})
80-
test(compileLevel, compileRun);
79+
for (int compileLevel : new int[]{4}) {
80+
for (boolean compileRun : new boolean[]{true}) {
81+
COMPILE_LEVEL = compileLevel;
82+
COMPILE_RUN = compileRun;
83+
84+
runTests();
85+
}
86+
}
8187
}
8288

83-
static void test(int compileLevel, boolean compileRun) {
89+
static void runTests() {
8490
resetCompilation();
85-
COMPILE_LEVEL = compileLevel;
86-
COMPILE_RUN = compileRun;
8791

8892
if (FILE) {
89-
System.out.println("-- FILE --");
90-
testFile("fuzz.dat");
93+
System.out.println("-- FILE (" + FILENAME + ") --");
94+
testFile(FILENAME);
9195
}
9296

9397
if (RANDOM) {
9498
long seed = System.currentTimeMillis();
9599
System.out.println("-- RANDOM (seed: " + seed + ") --");
96-
testRandom(seed);
100+
testRandom(seed, 50);
97101
}
98102
}
99103

@@ -116,9 +120,9 @@ static void testTrace(Op[] trace) {
116120
int yields = fuzz.test();
117121
time(start, "Test (" + yields + " yields)");
118122

119-
if (!fuzz.checkCompilation("AFTER")) {
123+
if (!fuzz.checkCompilation()) {
120124
if (retry++ < RETRIES) {
121-
System.out.println("RETRYING");
125+
System.out.println("RETRYING "+ retry);
122126
continue;
123127
}
124128
}
@@ -196,8 +200,8 @@ static Stream<Op[]> random(Random rnd) {
196200
return Stream.iterate(0, x->x+1).map(__ -> g.generate());
197201
}
198202

199-
static void testRandom(long seed) {
200-
testStream(random(new Random(seed)).limit(50));
203+
static void testRandom(long seed, int number) {
204+
testStream(random(new Random(seed)).limit(number));
201205
}
202206

203207
//// File
@@ -462,10 +466,12 @@ static String sfToString(Object f) {
462466
private static int COMPILE_LEVEL;
463467

464468
static final int WARMUP_ITERS = 15_000;
465-
static final Op[] WARMUP_TRACE = {Op.MH_C_INT, Op.MH_C_MANY, Op.CALL_C_INT};
469+
static final Op[] WARMUP_TRACE = {Op.MH_C_INT, Op.MH_C_MANY, Op.REF_C_INT, Op.REF_C_MANY, Op.CALL_C_INT};
466470

467471
static void warmup() {
468-
warmup(WARMUP_TRACE, WARMUP_ITERS);
472+
final long start = time();
473+
warmup(WARMUP_TRACE, WARMUP_ITERS); // generate (for reflection) and compile method handles
474+
time(start, "Warmup");
469475
}
470476

471477
static void warmup(Op[] trace, int times) {
@@ -535,19 +541,21 @@ boolean checkContinuationCompilation() {
535541
return true;
536542
}
537543

538-
boolean checkCompilation(String message) {
544+
boolean checkCompilation() {
539545
boolean res = true;
546+
540547
if (!checkContinuationCompilation()) {
541548
res = false;
542-
System.out.println("CHANGED CONTINUATION COMPILATION " + message);
549+
System.out.println("CHANGED CONTINUATION COMPILATION");
543550
}
544551

545552
Op[] newTrace = Arrays.copyOf(trace, trace.length);
546553
if (!checkCompilation(newTrace)) {
547554
res = false;
548-
System.out.println("CHANGED COMPILATION " + message);
555+
System.out.println("CHANGED COMPILATION");
549556
printTrace(newTrace);
550557
}
558+
551559
return res;
552560
}
553561

0 commit comments

Comments
 (0)
Please sign in to comment.