[a5d1fe7] | 1 | public class JavaThread {
|
---|
| 2 | // Simplistic low-quality Marsaglia Shift-XOR pseudo-random number generator.
|
---|
| 3 | // Bijective
|
---|
| 4 | // Cycle length for non-zero values is 4G-1.
|
---|
| 5 | // 0 is absorbing and should be avoided -- fixed point.
|
---|
| 6 | // The returned value is typically masked to produce a positive value.
|
---|
| 7 | static volatile int Ticket = 0 ;
|
---|
| 8 |
|
---|
| 9 | private static int nextRandom (int x) {
|
---|
| 10 | if (x == 0) {
|
---|
| 11 | // reseed the PRNG
|
---|
| 12 | // Ticket is accessed infrequently and does not constitute a coherence hot-spot.
|
---|
| 13 | // Note that we use a non-atomic racy increment -- the race is rare and benign.
|
---|
| 14 | // If the race is a concern switch to an AtomicInteger.
|
---|
| 15 | // In addition accesses to the RW volatile global "Ticket" variable are not
|
---|
| 16 | // (readily) predictable at compile-time so the JIT will not be able to elide
|
---|
| 17 | // nextRandom() invocations.
|
---|
| 18 | x = ++Ticket ;
|
---|
| 19 | if (x == 0) x = 1 ;
|
---|
| 20 | }
|
---|
| 21 | x ^= x << 6;
|
---|
| 22 | x ^= x >>> 21;
|
---|
| 23 | x ^= x << 7;
|
---|
| 24 | return x ;
|
---|
| 25 | }
|
---|
| 26 | static int x = 2;
|
---|
| 27 |
|
---|
| 28 | static private long times = Long.parseLong("100000000");
|
---|
| 29 |
|
---|
| 30 | public static void helper() throws InterruptedException {
|
---|
| 31 | JavaThread j = new JavaThread();
|
---|
| 32 | // Inhibit biased locking ...
|
---|
| 33 | x = (j.hashCode() ^ System.identityHashCode(j)) | 1 ;
|
---|
| 34 | for(long i = 1; i <= times; i += 1) {
|
---|
| 35 | x = nextRandom(x);
|
---|
| 36 | synchronized( j ) {
|
---|
| 37 | x = nextRandom( x );
|
---|
| 38 | }
|
---|
| 39 | }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | public static void InnerMain() throws InterruptedException {
|
---|
| 43 | long start = System.nanoTime();
|
---|
| 44 | helper();
|
---|
| 45 | long end = System.nanoTime();
|
---|
| 46 | System.out.println( (end - start) / times );
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | public static void main(String[] args) throws InterruptedException {
|
---|
| 50 | if ( args.length > 1 ) System.exit( 1 );
|
---|
| 51 | if ( args.length == 1 ) { times = Long.parseLong(args[0]); }
|
---|
| 52 |
|
---|
| 53 | //for (int n = Integer.parseInt("5"); --n >= 0 ; ) {
|
---|
| 54 | InnerMain();
|
---|
| 55 | Thread.sleep(2000); // 2 seconds
|
---|
| 56 | x = nextRandom(x);
|
---|
| 57 | //}
|
---|
| 58 | if ( x == 0 ) System.out.println(x);
|
---|
| 59 | }
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | // Local Variables: //
|
---|
| 63 | // tab-width: 4 //
|
---|
| 64 | // End: //
|
---|