src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest7.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/ConditionalEliminationTest7.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.Test;
  26 
  27 /**
  28  * Collection of tests for
  29  * {@link org.graalvm.compiler.phases.common.DominatorConditionalEliminationPhase} including those
  30  * that triggered bugs in this phase.
  31  */

  32 public class ConditionalEliminationTest7 extends ConditionalEliminationTestBase {
  33 
  34     @SuppressWarnings("all")
  35     public static int test1Snippet(int a, Object b) {
  36         int sum = 0;
  37         for (int j = 0;; ++j) {
  38             ++sum;
  39             if (b instanceof String) {
  40                 if (sum == 100) {
  41                     break;
  42                 }
  43             }
  44         }
  45         String s = (String) b;
  46         return s.length() + sum;
  47     }
  48 
  49     @Test
  50     public void test1() {
  51         // One loop exit is skipped.




   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.Ignore;
  26 import org.junit.Test;
  27 
  28 /**
  29  * Collection of tests for
  30  * {@link org.graalvm.compiler.phases.common.DominatorConditionalEliminationPhase} including those
  31  * that triggered bugs in this phase.
  32  */
  33 @Ignore
  34 public class ConditionalEliminationTest7 extends ConditionalEliminationTestBase {
  35 
  36     @SuppressWarnings("all")
  37     public static int test1Snippet(int a, Object b) {
  38         int sum = 0;
  39         for (int j = 0;; ++j) {
  40             ++sum;
  41             if (b instanceof String) {
  42                 if (sum == 100) {
  43                     break;
  44                 }
  45             }
  46         }
  47         String s = (String) b;
  48         return s.length() + sum;
  49     }
  50 
  51     @Test
  52     public void test1() {
  53         // One loop exit is skipped.


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