/****************************************************************************** * Copyright (c) 2009 - 2015 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *****************************************************************************/ /** * */ package data.transforms; /** * Redundant read after read elimination: * J.�Sevc�k and D.�Aspinall. On validity of program transformations in * the Java memory model. In ECOOP �08, volume 5142 of LNCS, pages 27�51. Springer Berlin, 2008. * * @author etorlak */ public class RedundantReadAfterReadElimination { static int x = 0, y = 0; public static final void thread1() { final int r1 = x; y = r1; } public static final void thread2() { final int r2 = y; if (r2 == 1) { final int r3 = y; x = r3; } else { x = 1; } assert r2==1; } public static final void thread2T() { final int r2 = y; if (r2 == 1) { final int r3 = r2; x = r3; } else { x = 1; } assert r2==1; } }