|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, 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 | + * @test id=Xbatch |
| 26 | + * @bug 8332920 |
| 27 | + * @summary Tests partial peeling at unsigned tests with limit being negative in exit tests "i >u limit". |
| 28 | + * @run main/othervm -Xbatch -XX:-TieredCompilation |
| 29 | + * -XX:CompileOnly=*TestPartialPeel*::original*,*TestPartialPeel*::test* |
| 30 | + * compiler.loopopts.TestPartialPeelAtUnsignedTestsNegativeLimit |
| 31 | + */ |
| 32 | + |
| 33 | +/* |
| 34 | + * @test id=Xcomp-run-inline |
| 35 | + * @bug 8332920 |
| 36 | + * @summary Tests partial peeling at unsigned tests with limit being negative in exit tests "i >u limit". |
| 37 | + * @run main/othervm -Xcomp -XX:-TieredCompilation |
| 38 | + * -XX:CompileOnly=*TestPartialPeel*::original*,*TestPartialPeel*::run*,*TestPartialPeel*::test* |
| 39 | + * -XX:CompileCommand=inline,*TestPartialPeelAtUnsignedTestsNegativeLimit::test* |
| 40 | + * -XX:CompileCommand=dontinline,*TestPartialPeelAtUnsignedTestsNegativeLimit::check |
| 41 | + * compiler.loopopts.TestPartialPeelAtUnsignedTestsNegativeLimit |
| 42 | + */ |
| 43 | + |
| 44 | +/* |
| 45 | + * @test id=Xcomp-compile-test |
| 46 | + * @bug 8332920 |
| 47 | + * @summary Tests partial peeling at unsigned tests with limit being negative in exit tests "i >u limit". |
| 48 | + * @run main/othervm -Xcomp -XX:-TieredCompilation -XX:CompileOnly=*TestPartialPeel*::original*,*TestPartialPeel*::test* |
| 49 | + * compiler.loopopts.TestPartialPeelAtUnsignedTestsNegativeLimit |
| 50 | + */ |
| 51 | + |
| 52 | +/* |
| 53 | + * @test id=vanilla |
| 54 | + * @bug 8332920 |
| 55 | + * @requires vm.flavor == "server" & (vm.opt.TieredStopAtLevel == null | vm.opt.TieredStopAtLevel == 4) |
| 56 | + * @summary Tests partial peeling at unsigned tests with limit being negative in exit tests "i >u limit". |
| 57 | + * Only run this test with C2 since it is time-consuming and only tests a C2 issue. |
| 58 | + * @run main compiler.loopopts.TestPartialPeelAtUnsignedTestsNegativeLimit |
| 59 | + */ |
| 60 | + |
| 61 | +package compiler.loopopts; |
| 62 | + |
| 63 | +import java.util.Random; |
| 64 | + |
| 65 | +import static java.lang.Integer.*; |
| 66 | + |
| 67 | +public class TestPartialPeelAtUnsignedTestsNegativeLimit { |
| 68 | + static int iFld = 10000; |
| 69 | + static int iterations = 0; |
| 70 | + static int iFld2; |
| 71 | + static boolean flag; |
| 72 | + final static Random RANDOM = new Random(); |
| 73 | + |
| 74 | + public static void main(String[] args) { |
| 75 | + compareUnsigned(3, 3); // Load Integer class for -Xcomp |
| 76 | + for (int i = 0; i < 2; i++) { |
| 77 | + if (!originalTest()) { |
| 78 | + throw new RuntimeException("originalTest() failed"); |
| 79 | + } |
| 80 | + } |
| 81 | + |
| 82 | + for (int i = 0; i < 2000; i++) { |
| 83 | + // For profiling |
| 84 | + iFld = -1; |
| 85 | + originalTestVariation1(); |
| 86 | + |
| 87 | + // Actual run |
| 88 | + iFld = MAX_VALUE - 100_000; |
| 89 | + if (!originalTestVariation1()) { |
| 90 | + throw new RuntimeException("originalTestVariation1() failed"); |
| 91 | + } |
| 92 | + } |
| 93 | + |
| 94 | + for (int i = 0; i < 2000; ++i) { |
| 95 | + // For profiling |
| 96 | + iFld = MAX_VALUE; |
| 97 | + originalTestVariation2(); |
| 98 | + |
| 99 | + // Actual run |
| 100 | + iFld = MIN_VALUE + 100000; |
| 101 | + if (!originalTestVariation2()) { |
| 102 | + throw new RuntimeException("originalTestVariation2() failed"); |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + runWhileLTIncr(); |
| 107 | + runWhileLTDecr(); |
| 108 | + } |
| 109 | + |
| 110 | + // Originally reported simplified regression test with 2 variations (see below). |
| 111 | + public static boolean originalTest() { |
| 112 | + for (int i = MAX_VALUE - 50_000; compareUnsigned(i, -1) < 0; i++) { |
| 113 | + if (compareUnsigned(MIN_VALUE, i) < 0) { |
| 114 | + return true; |
| 115 | + } |
| 116 | + } |
| 117 | + return false; |
| 118 | + } |
| 119 | + |
| 120 | + public static boolean originalTestVariation1() { |
| 121 | + int a = 0; |
| 122 | + for (int i = iFld; compareUnsigned(i, -1) < 0; ++i) { // i <u -1 |
| 123 | + |
| 124 | + if (i >= Integer.MIN_VALUE + 1 && i <= 100) { // Transformed to unsigned test. |
| 125 | + return true; |
| 126 | + } |
| 127 | + a *= 23; |
| 128 | + } |
| 129 | + return false; |
| 130 | + } |
| 131 | + |
| 132 | + public static boolean originalTestVariation2() { |
| 133 | + int a = 0; |
| 134 | + for (int i = iFld; compareUnsigned(i, -1000) < 0; i--) { // i <u -1 |
| 135 | + if (compareUnsigned(MAX_VALUE - 20, i) > 0) { |
| 136 | + return true; |
| 137 | + } |
| 138 | + a = i; |
| 139 | + } |
| 140 | + System.out.println(a); |
| 141 | + return false; |
| 142 | + } |
| 143 | + |
| 144 | + |
| 145 | + public static void testWhileLTIncr(int init, int limit) { |
| 146 | + int i = init; |
| 147 | + while (true) { |
| 148 | + // <Peeled Section> |
| 149 | + |
| 150 | + // Found as loop head in ciTypeFlow, but both paths inside loop -> head not cloned. |
| 151 | + // As a result, this head has the safepoint as backedge instead of the loop exit test |
| 152 | + // and we cannot create a counted loop (yet). We first need to partial peel. |
| 153 | + if (flag) { |
| 154 | + } |
| 155 | + |
| 156 | + iFld2++; |
| 157 | + |
| 158 | + // Loop exit test i >=u limit (i.e. "while (i <u limit)") to partial peel with. |
| 159 | + // insert_cmpi_loop_exit() changes this exit condition into a signed and an unsigned test: |
| 160 | + // i >= limit && i >=u limit |
| 161 | + // where the signed condition can be used as proper loop exit condition for a counted loop |
| 162 | + // (we cannot use an unsigned counted loop exit condition). |
| 163 | + // |
| 164 | + // After Partial Peeling, we have: |
| 165 | + // if (i >= limit) goto Exit |
| 166 | + // Loop: |
| 167 | + // if (i >=u limit) goto Exit |
| 168 | + // ... |
| 169 | + // i++; |
| 170 | + // if (i >= limit) goto Exit |
| 171 | + // goto Loop |
| 172 | + // Exit: |
| 173 | + // ... |
| 174 | + // |
| 175 | + // If init = MAX_VALUE and limit = MIN_VALUE: |
| 176 | + // i >= limit |
| 177 | + // MAX_VALUE >= MIN_VALUE |
| 178 | + // which is true where |
| 179 | + // i >=u limit |
| 180 | + // MAX_VALUE >=u MIN_VALUE |
| 181 | + // MAX_VALUE >=u (uint)(MAX_INT + 1) |
| 182 | + // is false and we wrongly never enter the loop even though we should have. |
| 183 | + // This results in a wrong execution. |
| 184 | + if (compareUnsigned(i, limit) >= 0) { |
| 185 | + return; |
| 186 | + } |
| 187 | + // <-- Partial Peeling CUT --> |
| 188 | + // Safepoint |
| 189 | + // <Unpeeled Section> |
| 190 | + iterations++; |
| 191 | + i++; |
| 192 | + } |
| 193 | + } |
| 194 | + |
| 195 | + // Same as testWhileLTIncr() but with decrement instead. |
| 196 | + public static void testWhileLTDecr(int init, int limit) { |
| 197 | + int i = init; |
| 198 | + while (true) { |
| 199 | + if (flag) { |
| 200 | + } |
| 201 | + |
| 202 | + // Loop exit test. |
| 203 | + if (compareUnsigned(i, limit) >= 0) { // While (i <u limit) |
| 204 | + return; |
| 205 | + } |
| 206 | + |
| 207 | + iterations++; |
| 208 | + i--; |
| 209 | + } |
| 210 | + } |
| 211 | + |
| 212 | + public static void runWhileLTIncr() { |
| 213 | + // Currently works: |
| 214 | + testWhileLTIncr(MAX_VALUE, -1); |
| 215 | + check(MIN_VALUE); // MAX_VALUE + 1 iterations |
| 216 | + testWhileLTIncr(-1, 1); |
| 217 | + check(0); |
| 218 | + testWhileLTIncr(0, 0); |
| 219 | + check(0); |
| 220 | + checkIncrWithRandom(0, 0); // Sanity check this method. |
| 221 | + flag = !flag; // Change profiling |
| 222 | + testWhileLTIncr(MAX_VALUE - 2000, MAX_VALUE); |
| 223 | + check(2000); |
| 224 | + testWhileLTIncr(MAX_VALUE - 1990, MAX_VALUE); |
| 225 | + check(1990); |
| 226 | + testWhileLTIncr(MAX_VALUE - 1, MAX_VALUE); |
| 227 | + check(1); |
| 228 | + testWhileLTIncr(MIN_VALUE, MIN_VALUE + 2000); |
| 229 | + check(2000); |
| 230 | + testWhileLTIncr(MIN_VALUE, MIN_VALUE + 1990); |
| 231 | + check(1990); |
| 232 | + testWhileLTIncr(MIN_VALUE, MIN_VALUE + 1); |
| 233 | + check(1); |
| 234 | + |
| 235 | + flag = !flag; |
| 236 | + // Overflow currently does not work with negative limit and is fixed with patch: |
| 237 | + testWhileLTIncr(MAX_VALUE, MIN_VALUE); |
| 238 | + check(1); |
| 239 | + testWhileLTIncr(MAX_VALUE - 2000, MIN_VALUE); |
| 240 | + check(2001); |
| 241 | + testWhileLTIncr(MAX_VALUE, MIN_VALUE + 2000); |
| 242 | + check(2001); |
| 243 | + testWhileLTIncr(MAX_VALUE - 2000, MIN_VALUE + 2000); |
| 244 | + check(4001); |
| 245 | + |
| 246 | + // Random values |
| 247 | + int init = RANDOM.nextInt(0, MAX_VALUE); |
| 248 | + int limit = RANDOM.nextInt(MIN_VALUE, 0); |
| 249 | + testWhileLTIncr(init, limit); |
| 250 | + checkIncrWithRandom(init, limit); |
| 251 | + } |
| 252 | + |
| 253 | + public static void runWhileLTDecr() { |
| 254 | + // Currently works: |
| 255 | + testWhileLTDecr(1, -1); |
| 256 | + check(2); |
| 257 | + testWhileLTDecr(-1, 1); |
| 258 | + check(0); |
| 259 | + testWhileLTDecr(0, 0); |
| 260 | + check(0); |
| 261 | + checkDecrWithRandom(0, 0); // Sanity check this method. |
| 262 | + flag = !flag; |
| 263 | + testWhileLTDecr(MAX_VALUE, MIN_VALUE); |
| 264 | + check(MIN_VALUE); // MAX_VALUE + 1 iterations |
| 265 | + testWhileLTDecr(MAX_VALUE, -1); |
| 266 | + check(MIN_VALUE); // MAX_VALUE + 1 iterations |
| 267 | + testWhileLTDecr(MAX_VALUE, MIN_VALUE); |
| 268 | + check(MIN_VALUE); // MAX_VALUE + 1 iterations |
| 269 | + testWhileLTDecr(MIN_VALUE, 0); |
| 270 | + check(0); |
| 271 | + testWhileLTDecr(MIN_VALUE, 1); |
| 272 | + check(0); |
| 273 | + flag = !flag; |
| 274 | + |
| 275 | + // Underflow currently does not work with negative limit and is fixed with patch: |
| 276 | + testWhileLTDecr(MIN_VALUE, -1); |
| 277 | + check(MIN_VALUE + 1); // MAX_VALUE + 2 iterations |
| 278 | + testWhileLTDecr(MIN_VALUE, -2000); |
| 279 | + check(MIN_VALUE + 1); // MAX_VALUE + 2 iterations |
| 280 | + testWhileLTDecr(MIN_VALUE, MIN_VALUE + 1); |
| 281 | + check(MIN_VALUE + 1); // MAX_VALUE + 2 iterations |
| 282 | + testWhileLTDecr(MIN_VALUE + 2000, -1); |
| 283 | + check(MIN_VALUE + 2001); // MAX_VALUE + 2002 iterations |
| 284 | + testWhileLTDecr(MIN_VALUE + 2000, -2000); |
| 285 | + check(MIN_VALUE + 2001); // MAX_VALUE + 2002 iterations |
| 286 | + testWhileLTDecr(MIN_VALUE + 2000, MIN_VALUE + 2001); |
| 287 | + check(MIN_VALUE + 2001); // MAX_VALUE + 2002 iterations |
| 288 | + |
| 289 | + // Random values |
| 290 | + int r1 = RANDOM.nextInt(MIN_VALUE, 0); |
| 291 | + int r2 = RANDOM.nextInt(MIN_VALUE, 0); |
| 292 | + int init = Math.min(r1, r2); |
| 293 | + int limit = Math.max(r1, r2); |
| 294 | + testWhileLTDecr(init, limit); |
| 295 | + checkDecrWithRandom(init, limit); |
| 296 | + } |
| 297 | + |
| 298 | + static void check(int expectedIterations) { |
| 299 | + if (expectedIterations != iterations) { |
| 300 | + throw new RuntimeException("Expected " + expectedIterations + " iterations but only got " + iterations); |
| 301 | + } |
| 302 | + iterations = 0; // Reset |
| 303 | + } |
| 304 | + |
| 305 | + static void checkIncrWithRandom(long init, long limit) { |
| 306 | + long expectedIterations = ((long)(MAX_VALUE) - init) + (limit - (long)MIN_VALUE) + 1; |
| 307 | + if ((int)expectedIterations != iterations) { |
| 308 | + String error = "Expected %d iterations but only got %d, init: %d, limit: %d" |
| 309 | + .formatted(expectedIterations, iterations, init, limit); |
| 310 | + throw new RuntimeException(error); |
| 311 | + } |
| 312 | + iterations = 0; // Reset |
| 313 | + } |
| 314 | + |
| 315 | + static void checkDecrWithRandom(long init, long limit) { |
| 316 | + long expectedIterations = init + MIN_VALUE + MAX_VALUE + 2; |
| 317 | + if (init == limit) { |
| 318 | + expectedIterations = 0; |
| 319 | + } |
| 320 | + if ((int)expectedIterations != iterations) { |
| 321 | + String error = "Expected %d iterations but only got %d, init: %d, limit: %d" |
| 322 | + .formatted(expectedIterations, iterations, init, limit); |
| 323 | + throw new RuntimeException(error); |
| 324 | + } |
| 325 | + iterations = 0; // Reset |
| 326 | + } |
| 327 | +} |
0 commit comments