|
| 1 | +/* |
| 2 | + * Copyright (c) 2023, 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 | +/* |
| 26 | + * @test |
| 27 | + * @bug 8316105 |
| 28 | + * @library /test/lib |
| 29 | + * @summary Test that back to back Parse Predicates with same deopt reason are not grouped together |
| 30 | + * @run main/othervm -Xbatch compiler.predicates.TestBackToBackParsePredicates |
| 31 | + */ |
| 32 | + |
| 33 | +package compiler.predicates; |
| 34 | + |
| 35 | +import jdk.test.lib.Asserts; |
| 36 | + |
| 37 | +public class TestBackToBackParsePredicates { |
| 38 | + static long lFld; |
| 39 | + |
| 40 | + public static void main(String[] strArr2) { |
| 41 | + for (int i = -350; i <= 0; i++) { |
| 42 | + lFld = 30; |
| 43 | + test(i); |
| 44 | + check(); |
| 45 | + } |
| 46 | + lFld = 30; |
| 47 | + test(1); |
| 48 | + check(); |
| 49 | + } |
| 50 | + |
| 51 | + // Inlined |
| 52 | + static void foo() { |
| 53 | + for (int i12 = 1; i12 < 5; i12++) { // Loop A |
| 54 | + lFld += 1; // StoreL |
| 55 | + } |
| 56 | + } |
| 57 | + |
| 58 | + static void test(int x) { |
| 59 | + foo(); |
| 60 | + |
| 61 | + // After fully unrolling loop A and after next round of IGVN: |
| 62 | + // We wrongly treat two back to back Loop Limit Check Parse Predicates as single Predicate Block. We therefore |
| 63 | + // keep the Loop Parse Predicate of loop A: |
| 64 | + // |
| 65 | + // Loop Parse Predicate (of A) |
| 66 | + // Loop Limit Check Parse Predicate (of A) | |
| 67 | + // -> StoreL of lFld pinned here | Wrongly treated as single Predicate Block |
| 68 | + // Loop Limit Check Parse Predicate (of B) | |
| 69 | + for (int i = 7; i < 212; i++) { // Loop B |
| 70 | + for (int j = 1; j < 80; j++) { |
| 71 | + switch (x % 8) { |
| 72 | + case 0: |
| 73 | + case 2: |
| 74 | + break; |
| 75 | + case 6: |
| 76 | + case 7: |
| 77 | + } |
| 78 | + } |
| 79 | + } |
| 80 | + } |
| 81 | + |
| 82 | + static void check() { |
| 83 | + Asserts.assertEQ(34L, lFld); |
| 84 | + } |
| 85 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Sep 21, 2023
Review
Issues