66
66
import sun .hotspot .WhiteBox ;
67
67
68
68
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
70
70
static final boolean FILE = true ;
71
71
static final boolean RANDOM = false ;
72
72
static final boolean VERBOSE = false ;
73
73
74
+ static final String FILENAME = "fuzz.dat" ;
74
75
static final Path TEST_DIR = Path .of (System .getProperty ("test.src" , "." ));
75
76
76
77
public static void main (String [] args ) {
77
78
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
+ }
81
87
}
82
88
83
- static void test ( int compileLevel , boolean compileRun ) {
89
+ static void runTests ( ) {
84
90
resetCompilation ();
85
- COMPILE_LEVEL = compileLevel ;
86
- COMPILE_RUN = compileRun ;
87
91
88
92
if (FILE ) {
89
- System .out .println ("-- FILE --" );
90
- testFile ("fuzz.dat" );
93
+ System .out .println ("-- FILE (" + FILENAME + ") --" );
94
+ testFile (FILENAME );
91
95
}
92
96
93
97
if (RANDOM ) {
94
98
long seed = System .currentTimeMillis ();
95
99
System .out .println ("-- RANDOM (seed: " + seed + ") --" );
96
- testRandom (seed );
100
+ testRandom (seed , 50 );
97
101
}
98
102
}
99
103
@@ -116,9 +120,9 @@ static void testTrace(Op[] trace) {
116
120
int yields = fuzz .test ();
117
121
time (start , "Test (" + yields + " yields)" );
118
122
119
- if (!fuzz .checkCompilation ("AFTER" )) {
123
+ if (!fuzz .checkCompilation ()) {
120
124
if (retry ++ < RETRIES ) {
121
- System .out .println ("RETRYING" );
125
+ System .out .println ("RETRYING " + retry );
122
126
continue ;
123
127
}
124
128
}
@@ -196,8 +200,8 @@ static Stream<Op[]> random(Random rnd) {
196
200
return Stream .iterate (0 , x ->x +1 ).map (__ -> g .generate ());
197
201
}
198
202
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 ));
201
205
}
202
206
203
207
//// File
@@ -462,10 +466,12 @@ static String sfToString(Object f) {
462
466
private static int COMPILE_LEVEL ;
463
467
464
468
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 };
466
470
467
471
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" );
469
475
}
470
476
471
477
static void warmup (Op [] trace , int times ) {
@@ -535,19 +541,21 @@ boolean checkContinuationCompilation() {
535
541
return true ;
536
542
}
537
543
538
- boolean checkCompilation (String message ) {
544
+ boolean checkCompilation () {
539
545
boolean res = true ;
546
+
540
547
if (!checkContinuationCompilation ()) {
541
548
res = false ;
542
- System .out .println ("CHANGED CONTINUATION COMPILATION " + message );
549
+ System .out .println ("CHANGED CONTINUATION COMPILATION" );
543
550
}
544
551
545
552
Op [] newTrace = Arrays .copyOf (trace , trace .length );
546
553
if (!checkCompilation (newTrace )) {
547
554
res = false ;
548
- System .out .println ("CHANGED COMPILATION " + message );
555
+ System .out .println ("CHANGED COMPILATION" );
549
556
printTrace (newTrace );
550
557
}
558
+
551
559
return res ;
552
560
}
553
561
0 commit comments