src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReadAfterCheckCastTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReadAfterCheckCastTest.java

Print this page




   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 package org.graalvm.compiler.core.test;
  24 
  25 import org.junit.Assert;
  26 import org.junit.Test;
  27 
  28 import org.graalvm.compiler.debug.Debug;
  29 import org.graalvm.compiler.debug.Debug.Scope;
  30 import org.graalvm.compiler.debug.DebugDumpScope;
  31 import org.graalvm.compiler.nodes.ParameterNode;
  32 import org.graalvm.compiler.nodes.StructuredGraph;
  33 import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions;
  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 
  41 /* consider
  42  *     B b = (B) a;
  43  *     return b.x10;
  44  *
  45  * With snippets a typecheck is performed and if it was successful, a PiNode is created.
  46  * For the read node, however, there is only a dependency to the PiNode, but not to the
  47  * typecheck itself. With special crafting, it's possible to get the scheduler moving the
  48  * FloatingReadNode before the typecheck. Assuming the object is of the wrong type (here for
  49  * example A), an invalid field read is done.
  50  *
  51  * In order to avoid this situation, an anchor node is introduced in CheckCastSnippts.
  52  */
  53 
  54 public class ReadAfterCheckCastTest extends GraphScheduleTest {
  55 
  56     public static long foo = 0;
  57 
  58     public static class A {
  59 


  67 
  68     public static long test1Snippet(A a) {
  69         if (foo > 4) {
  70             B b = (B) a;
  71             b.x10 += 1;
  72             return b.x10;
  73         } else {
  74             B b = (B) a;
  75             b.x10 += 1;
  76             return b.x10;
  77         }
  78     }
  79 
  80     @Test
  81     public void test1() {
  82         test("test1Snippet");
  83     }
  84 
  85     @SuppressWarnings("try")
  86     private void test(final String snippet) {
  87         try (Scope s = Debug.scope("ReadAfterCheckCastTest", new DebugDumpScope(snippet))) {

  88             // check shape of graph, with lots of assumptions. will probably fail if graph
  89             // structure changes significantly
  90             StructuredGraph graph = parseEager(snippet, AllowAssumptions.YES);
  91             PhaseContext context = new PhaseContext(getProviders());
  92             CanonicalizerPhase canonicalizer = new CanonicalizerPhase();
  93             new LoweringPhase(canonicalizer, LoweringTool.StandardLoweringStage.HIGH_TIER).apply(graph, context);
  94             new FloatingReadPhase().apply(graph);
  95             canonicalizer.apply(graph, context);
  96 
  97             Debug.dump(Debug.BASIC_LEVEL, graph, "After lowering");
  98 
  99             for (FloatingReadNode node : graph.getNodes(ParameterNode.TYPE).first().usages().filter(FloatingReadNode.class)) {
 100                 // Checking that the parameter a is not directly used for the access to field
 101                 // x10 (because x10 must be guarded by the checkcast).
 102                 Assert.assertTrue(node.getLocationIdentity().isImmutable());
 103             }
 104         } catch (Throwable e) {
 105             throw Debug.handle(e);
 106         }
 107     }
 108 }


   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 package org.graalvm.compiler.core.test;
  24 
  25 import org.graalvm.compiler.debug.DebugContext;




  26 import org.graalvm.compiler.debug.DebugDumpScope;
  27 import org.graalvm.compiler.nodes.ParameterNode;
  28 import org.graalvm.compiler.nodes.StructuredGraph;
  29 import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions;
  30 import org.graalvm.compiler.nodes.memory.FloatingReadNode;
  31 import org.graalvm.compiler.nodes.spi.LoweringTool;
  32 import org.graalvm.compiler.phases.common.CanonicalizerPhase;
  33 import org.graalvm.compiler.phases.common.FloatingReadPhase;
  34 import org.graalvm.compiler.phases.common.LoweringPhase;
  35 import org.graalvm.compiler.phases.tiers.PhaseContext;
  36 import org.junit.Assert;
  37 import org.junit.Test;
  38 
  39 /* consider
  40  *     B b = (B) a;
  41  *     return b.x10;
  42  *
  43  * With snippets a typecheck is performed and if it was successful, a PiNode is created.
  44  * For the read node, however, there is only a dependency to the PiNode, but not to the
  45  * typecheck itself. With special crafting, it's possible to get the scheduler moving the
  46  * FloatingReadNode before the typecheck. Assuming the object is of the wrong type (here for
  47  * example A), an invalid field read is done.
  48  *
  49  * In order to avoid this situation, an anchor node is introduced in CheckCastSnippts.
  50  */
  51 
  52 public class ReadAfterCheckCastTest extends GraphScheduleTest {
  53 
  54     public static long foo = 0;
  55 
  56     public static class A {
  57 


  65 
  66     public static long test1Snippet(A a) {
  67         if (foo > 4) {
  68             B b = (B) a;
  69             b.x10 += 1;
  70             return b.x10;
  71         } else {
  72             B b = (B) a;
  73             b.x10 += 1;
  74             return b.x10;
  75         }
  76     }
  77 
  78     @Test
  79     public void test1() {
  80         test("test1Snippet");
  81     }
  82 
  83     @SuppressWarnings("try")
  84     private void test(final String snippet) {
  85         DebugContext debug = getDebugContext();
  86         try (DebugContext.Scope s = debug.scope("ReadAfterCheckCastTest", new DebugDumpScope(snippet))) {
  87             // check shape of graph, with lots of assumptions. will probably fail if graph
  88             // structure changes significantly
  89             StructuredGraph graph = parseEager(snippet, AllowAssumptions.YES);
  90             PhaseContext context = new PhaseContext(getProviders());
  91             CanonicalizerPhase canonicalizer = new CanonicalizerPhase();
  92             new LoweringPhase(canonicalizer, LoweringTool.StandardLoweringStage.HIGH_TIER).apply(graph, context);
  93             new FloatingReadPhase().apply(graph);
  94             canonicalizer.apply(graph, context);
  95 
  96             debug.dump(DebugContext.BASIC_LEVEL, graph, "After lowering");
  97 
  98             for (FloatingReadNode node : graph.getNodes(ParameterNode.TYPE).first().usages().filter(FloatingReadNode.class)) {
  99                 // Checking that the parameter a is not directly used for the access to field
 100                 // x10 (because x10 must be guarded by the checkcast).
 101                 Assert.assertTrue(node.getLocationIdentity().isImmutable());
 102             }
 103         } catch (Throwable e) {
 104             throw debug.handle(e);
 105         }
 106     }
 107 }
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReadAfterCheckCastTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File