1 /*
   2  * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 
  25 package org.graalvm.compiler.core.test;
  26 
  27 import org.graalvm.compiler.debug.DebugContext;
  28 import org.graalvm.compiler.debug.DebugDumpScope;
  29 import org.graalvm.compiler.graph.Node;
  30 import org.graalvm.compiler.nodes.ReturnNode;
  31 import org.graalvm.compiler.nodes.StructuredGraph;
  32 import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions;
  33 import org.graalvm.compiler.nodes.extended.MonitorExit;
  34 import org.graalvm.compiler.nodes.memory.FloatingReadNode;
  35 import org.graalvm.compiler.nodes.spi.LoweringTool;
  36 import org.graalvm.compiler.phases.common.CanonicalizerPhase;
  37 import org.graalvm.compiler.phases.common.FloatingReadPhase;
  38 import org.graalvm.compiler.phases.common.LoweringPhase;
  39 import org.graalvm.compiler.phases.tiers.PhaseContext;
  40 import org.junit.Assert;
  41 import org.junit.Test;
  42 
  43 public class FloatingReadTest extends GraphScheduleTest {
  44 
  45     public static class Container {
  46 
  47         public int a;
  48     }
  49 
  50     public static void changeField(Container c) {
  51         c.a = 0xcafebabe;
  52     }
  53 
  54     public static synchronized int test1Snippet() {
  55         Container c = new Container();
  56         return c.a;
  57     }
  58 
  59     @Test
  60     public void test1() {
  61         test("test1Snippet");
  62     }
  63 
  64     @SuppressWarnings("try")
  65     private void test(final String snippet) {
  66         DebugContext debug = getDebugContext();
  67         try (DebugContext.Scope s = debug.scope("FloatingReadTest", new DebugDumpScope(snippet))) {
  68 
  69             StructuredGraph graph = parseEager(snippet, AllowAssumptions.YES);
  70             PhaseContext context = new PhaseContext(getProviders());
  71             new LoweringPhase(new CanonicalizerPhase(), LoweringTool.StandardLoweringStage.HIGH_TIER).apply(graph, context);
  72             new FloatingReadPhase().apply(graph);
  73 
  74             ReturnNode returnNode = null;
  75             MonitorExit monitorexit = null;
  76 
  77             for (Node n : graph.getNodes()) {
  78                 if (n instanceof ReturnNode) {
  79                     assert returnNode == null;
  80                     returnNode = (ReturnNode) n;
  81                 } else if (n instanceof MonitorExit) {
  82                     monitorexit = (MonitorExit) n;
  83                 }
  84             }
  85 
  86             debug.dump(DebugContext.BASIC_LEVEL, graph, "After lowering");
  87 
  88             Assert.assertNotNull(returnNode);
  89             Assert.assertNotNull(monitorexit);
  90             Assert.assertTrue(returnNode.result() instanceof FloatingReadNode);
  91 
  92             FloatingReadNode read = (FloatingReadNode) returnNode.result();
  93 
  94             assertOrderedAfterSchedule(graph, read, (Node) monitorexit);
  95         } catch (Throwable e) {
  96             throw debug.handle(e);
  97         }
  98     }
  99 }