Aart Bik | 807868e | 2016-11-03 17:51:43 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | /** |
| 18 | * Regression tests for loop optimizations. |
| 19 | */ |
| 20 | public class Main { |
| 21 | |
| 22 | /// CHECK-START: int Main.earlyExitFirst(int) loop_optimization (before) |
| 23 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 24 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 25 | // |
| 26 | /// CHECK-START: int Main.earlyExitFirst(int) loop_optimization (after) |
| 27 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 28 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 29 | static int earlyExitFirst(int m) { |
| 30 | int k = 0; |
| 31 | for (int i = 0; i < 10; i++) { |
| 32 | if (i == m) { |
| 33 | return k; |
| 34 | } |
| 35 | k++; |
| 36 | } |
| 37 | return k; |
| 38 | } |
| 39 | |
| 40 | /// CHECK-START: int Main.earlyExitLast(int) loop_optimization (before) |
| 41 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 42 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 43 | // |
| 44 | /// CHECK-START: int Main.earlyExitLast(int) loop_optimization (after) |
| 45 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 46 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 47 | static int earlyExitLast(int m) { |
| 48 | int k = 0; |
| 49 | for (int i = 0; i < 10; i++) { |
| 50 | k++; |
| 51 | if (i == m) { |
| 52 | return k; |
| 53 | } |
| 54 | } |
| 55 | return k; |
| 56 | } |
| 57 | |
| 58 | /// CHECK-START: int Main.earlyExitNested() loop_optimization (before) |
| 59 | /// CHECK-DAG: Phi loop:<<Loop1:B\d+>> outer_loop:none |
| 60 | /// CHECK-DAG: Phi loop:<<Loop1>> outer_loop:none |
| 61 | /// CHECK-DAG: Phi loop:<<Loop2:B\d+>> outer_loop:<<Loop1>> |
| 62 | /// CHECK-DAG: Phi loop:<<Loop2>> outer_loop:<<Loop1>> |
| 63 | // |
| 64 | /// CHECK-START: int Main.earlyExitNested() loop_optimization (after) |
| 65 | /// CHECK-DAG: Phi loop:<<Loop1:B\d+>> outer_loop:none |
| 66 | /// CHECK-DAG: Phi loop:<<Loop1>> outer_loop:none |
| 67 | // |
| 68 | /// CHECK-START: int Main.earlyExitNested() loop_optimization (after) |
| 69 | /// CHECK-NOT: Phi loop:{{B\d+}} outer_loop:{{B\d+}} |
| 70 | static int earlyExitNested() { |
| 71 | int offset = 0; |
| 72 | for (int i = 0; i < 2; i++) { |
| 73 | int start = offset; |
| 74 | // This loop can be removed. |
| 75 | for (int j = 0; j < 2; j++) { |
| 76 | offset++; |
| 77 | } |
| 78 | if (i == 1) { |
| 79 | return start; |
| 80 | } |
| 81 | } |
| 82 | return 0; |
| 83 | } |
| 84 | |
Aart Bik | 74da529 | 2016-12-20 11:13:03 -0800 | [diff] [blame] | 85 | // Regression test for b/33774618: transfer operations involving |
| 86 | // narrowing linear induction should be done correctly. |
| 87 | // |
| 88 | /// CHECK-START: int Main.transferNarrowWrap() loop_optimization (before) |
| 89 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 90 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 91 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 92 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 93 | // |
| 94 | /// CHECK-START: int Main.transferNarrowWrap() loop_optimization (after) |
| 95 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 96 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 97 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 98 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 99 | static int transferNarrowWrap() { |
| 100 | short x = 0; |
| 101 | int w = 10; |
| 102 | int v = 3; |
| 103 | for (int i = 0; i < 10; i++) { |
| 104 | v = w + 1; // transfer on wrap-around |
| 105 | w = x; // wrap-around |
| 106 | x += 2; // narrowing linear |
| 107 | } |
| 108 | return v; |
| 109 | } |
| 110 | |
| 111 | // Regression test for b/33774618: transfer operations involving |
| 112 | // narrowing linear induction should be done correctly |
| 113 | // (currently rejected, could be improved). |
| 114 | // |
| 115 | /// CHECK-START: int Main.polynomialShort() loop_optimization (before) |
| 116 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 117 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 118 | // |
| 119 | /// CHECK-START: int Main.polynomialShort() loop_optimization (after) |
| 120 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 121 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 122 | static int polynomialShort() { |
| 123 | int x = 0; |
| 124 | for (short i = 0; i < 10; i++) { |
| 125 | x = x - i; // polynomial on narrowing linear |
| 126 | } |
| 127 | return x; |
| 128 | } |
| 129 | |
| 130 | // Regression test for b/33774618: transfer operations involving |
| 131 | // narrowing linear induction should be done correctly |
| 132 | // (currently rejected, could be improved). |
| 133 | // |
| 134 | /// CHECK-START: int Main.polynomialIntFromLong() loop_optimization (before) |
| 135 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 136 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 137 | // |
| 138 | /// CHECK-START: int Main.polynomialIntFromLong() loop_optimization (after) |
| 139 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 140 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 141 | static int polynomialIntFromLong() { |
| 142 | int x = 0; |
| 143 | for (long i = 0; i < 10; i++) { |
| 144 | x = x - (int) i; // polynomial on narrowing linear |
| 145 | } |
| 146 | return x; |
| 147 | } |
| 148 | |
| 149 | /// CHECK-START: int Main.polynomialInt() loop_optimization (before) |
| 150 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 151 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 152 | // |
| 153 | /// CHECK-START: int Main.polynomialInt() loop_optimization (after) |
| 154 | /// CHECK-NOT: Phi |
| 155 | // |
| 156 | /// CHECK-START: int Main.polynomialInt() instruction_simplifier$after_bce (after) |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 157 | /// CHECK-DAG: <<Int:i\d+>> IntConstant -45 loop:none |
| 158 | /// CHECK-DAG: Return [<<Int>>] loop:none |
Aart Bik | 74da529 | 2016-12-20 11:13:03 -0800 | [diff] [blame] | 159 | static int polynomialInt() { |
| 160 | int x = 0; |
| 161 | for (int i = 0; i < 10; i++) { |
| 162 | x = x - i; |
| 163 | } |
| 164 | return x; |
| 165 | } |
| 166 | |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 167 | // Regression test for b/34779592 (found with fuzz testing): overflow for last value |
| 168 | // of division truncates to zero, for multiplication it simply truncates. |
| 169 | // |
| 170 | /// CHECK-START: int Main.geoIntDivLastValue(int) loop_optimization (before) |
| 171 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 172 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 173 | // |
| 174 | /// CHECK-START: int Main.geoIntDivLastValue(int) loop_optimization (after) |
| 175 | /// CHECK-NOT: Phi |
| 176 | // |
| 177 | /// CHECK-START: int Main.geoIntDivLastValue(int) instruction_simplifier$after_bce (after) |
| 178 | /// CHECK-DAG: <<Int:i\d+>> IntConstant 0 loop:none |
| 179 | /// CHECK-DAG: Return [<<Int>>] loop:none |
| 180 | static int geoIntDivLastValue(int x) { |
| 181 | for (int i = 0; i < 2; i++) { |
| 182 | x /= 1081788608; |
| 183 | } |
| 184 | return x; |
| 185 | } |
| 186 | |
| 187 | /// CHECK-START: int Main.geoIntMulLastValue(int) loop_optimization (before) |
| 188 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 189 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 190 | // |
| 191 | /// CHECK-START: int Main.geoIntMulLastValue(int) loop_optimization (after) |
| 192 | /// CHECK-NOT: Phi |
| 193 | // |
| 194 | /// CHECK-START: int Main.geoIntMulLastValue(int) instruction_simplifier$after_bce (after) |
| 195 | /// CHECK-DAG: <<Par:i\d+>> ParameterValue loop:none |
| 196 | /// CHECK-DAG: <<Int:i\d+>> IntConstant -194211840 loop:none |
| 197 | /// CHECK-DAG: <<Mul:i\d+>> Mul [<<Par>>,<<Int>>] loop:none |
| 198 | /// CHECK-DAG: Return [<<Mul>>] loop:none |
| 199 | static int geoIntMulLastValue(int x) { |
| 200 | for (int i = 0; i < 2; i++) { |
| 201 | x *= 1081788608; |
| 202 | } |
| 203 | return x; |
| 204 | } |
| 205 | |
| 206 | /// CHECK-START: long Main.geoLongDivLastValue(long) loop_optimization (before) |
| 207 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 208 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 209 | // |
| 210 | /// CHECK-START: long Main.geoLongDivLastValue(long) loop_optimization (after) |
| 211 | /// CHECK-NOT: Phi |
| 212 | // |
| 213 | /// CHECK-START: long Main.geoLongDivLastValue(long) instruction_simplifier$after_bce (after) |
| 214 | /// CHECK-DAG: <<Long:j\d+>> LongConstant 0 loop:none |
| 215 | /// CHECK-DAG: Return [<<Long>>] loop:none |
Aart Bik | b603a5c | 2017-03-06 18:29:39 -0800 | [diff] [blame] | 216 | // |
| 217 | // Tests overflow in the divisor (while updating intermediate result). |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 218 | static long geoLongDivLastValue(long x) { |
| 219 | for (int i = 0; i < 10; i++) { |
| 220 | x /= 1081788608; |
| 221 | } |
| 222 | return x; |
| 223 | } |
| 224 | |
Aart Bik | b603a5c | 2017-03-06 18:29:39 -0800 | [diff] [blame] | 225 | /// CHECK-START: long Main.geoLongDivLastValue() loop_optimization (before) |
| 226 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 227 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 228 | // |
| 229 | /// CHECK-START: long Main.geoLongDivLastValue() loop_optimization (after) |
| 230 | /// CHECK-NOT: Phi |
| 231 | // |
| 232 | /// CHECK-START: long Main.geoLongDivLastValue() instruction_simplifier$after_bce (after) |
| 233 | /// CHECK-DAG: <<Long:j\d+>> LongConstant 0 loop:none |
| 234 | /// CHECK-DAG: Return [<<Long>>] loop:none |
| 235 | // |
| 236 | // Tests overflow in the divisor (while updating base). |
| 237 | static long geoLongDivLastValue() { |
| 238 | long x = -1; |
| 239 | for (int i2 = 0; i2 < 2; i2++) { |
| 240 | x /= (Long.MAX_VALUE); |
| 241 | } |
| 242 | return x; |
| 243 | } |
| 244 | |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 245 | /// CHECK-START: long Main.geoLongMulLastValue(long) loop_optimization (before) |
| 246 | /// CHECK-DAG: Phi loop:<<Loop:B\d+>> outer_loop:none |
| 247 | /// CHECK-DAG: Phi loop:<<Loop>> outer_loop:none |
| 248 | // |
| 249 | /// CHECK-START: long Main.geoLongMulLastValue(long) loop_optimization (after) |
| 250 | /// CHECK-NOT: Phi |
| 251 | // |
| 252 | /// CHECK-START: long Main.geoLongMulLastValue(long) instruction_simplifier$after_bce (after) |
| 253 | /// CHECK-DAG: <<Par:j\d+>> ParameterValue loop:none |
| 254 | /// CHECK-DAG: <<Long:j\d+>> LongConstant -8070450532247928832 loop:none |
| 255 | /// CHECK-DAG: <<Mul:j\d+>> Mul [<<Par>>,<<Long>>] loop:none |
| 256 | /// CHECK-DAG: Return [<<Mul>>] loop:none |
| 257 | static long geoLongMulLastValue(long x) { |
| 258 | for (int i = 0; i < 10; i++) { |
| 259 | x *= 1081788608; |
| 260 | } |
| 261 | return x; |
| 262 | } |
| 263 | |
Aart Bik | 7adb688 | 2017-03-07 13:28:51 -0800 | [diff] [blame] | 264 | // If vectorized, the narrowing subscript should not cause |
| 265 | // type inconsistencies in the synthesized code. |
| 266 | static void narrowingSubscript(float[] a) { |
| 267 | float val = 2.0f; |
| 268 | for (long i = 0; i < a.length; i++) { |
| 269 | a[(int) i] += val; |
| 270 | } |
| 271 | } |
| 272 | |
Aart Bik | 807868e | 2016-11-03 17:51:43 -0700 | [diff] [blame] | 273 | public static void main(String[] args) { |
| 274 | expectEquals(10, earlyExitFirst(-1)); |
| 275 | for (int i = 0; i <= 10; i++) { |
| 276 | expectEquals(i, earlyExitFirst(i)); |
| 277 | } |
| 278 | expectEquals(10, earlyExitFirst(11)); |
| 279 | |
| 280 | expectEquals(10, earlyExitLast(-1)); |
| 281 | for (int i = 0; i < 10; i++) { |
| 282 | expectEquals(i + 1, earlyExitLast(i)); |
| 283 | } |
| 284 | expectEquals(10, earlyExitLast(10)); |
| 285 | expectEquals(10, earlyExitLast(11)); |
| 286 | |
| 287 | expectEquals(2, earlyExitNested()); |
| 288 | |
Aart Bik | 74da529 | 2016-12-20 11:13:03 -0800 | [diff] [blame] | 289 | expectEquals(17, transferNarrowWrap()); |
| 290 | expectEquals(-45, polynomialShort()); |
| 291 | expectEquals(-45, polynomialIntFromLong()); |
| 292 | expectEquals(-45, polynomialInt()); |
| 293 | |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 294 | expectEquals(0, geoIntDivLastValue(0)); |
| 295 | expectEquals(0, geoIntDivLastValue(1)); |
| 296 | expectEquals(0, geoIntDivLastValue(2)); |
| 297 | expectEquals(0, geoIntDivLastValue(1081788608)); |
| 298 | expectEquals(0, geoIntDivLastValue(-1081788608)); |
| 299 | expectEquals(0, geoIntDivLastValue(2147483647)); |
| 300 | expectEquals(0, geoIntDivLastValue(-2147483648)); |
| 301 | |
| 302 | expectEquals( 0, geoIntMulLastValue(0)); |
| 303 | expectEquals( -194211840, geoIntMulLastValue(1)); |
| 304 | expectEquals( -388423680, geoIntMulLastValue(2)); |
| 305 | expectEquals(-1041498112, geoIntMulLastValue(1081788608)); |
| 306 | expectEquals( 1041498112, geoIntMulLastValue(-1081788608)); |
| 307 | expectEquals( 194211840, geoIntMulLastValue(2147483647)); |
| 308 | expectEquals( 0, geoIntMulLastValue(-2147483648)); |
| 309 | |
| 310 | expectEquals(0L, geoLongDivLastValue(0L)); |
| 311 | expectEquals(0L, geoLongDivLastValue(1L)); |
| 312 | expectEquals(0L, geoLongDivLastValue(2L)); |
| 313 | expectEquals(0L, geoLongDivLastValue(1081788608L)); |
| 314 | expectEquals(0L, geoLongDivLastValue(-1081788608L)); |
| 315 | expectEquals(0L, geoLongDivLastValue(2147483647L)); |
| 316 | expectEquals(0L, geoLongDivLastValue(-2147483648L)); |
| 317 | expectEquals(0L, geoLongDivLastValue(9223372036854775807L)); |
| 318 | expectEquals(0L, geoLongDivLastValue(-9223372036854775808L)); |
| 319 | |
Aart Bik | b603a5c | 2017-03-06 18:29:39 -0800 | [diff] [blame] | 320 | expectEquals(0L, geoLongDivLastValue()); |
| 321 | |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 322 | expectEquals( 0L, geoLongMulLastValue(0L)); |
| 323 | expectEquals(-8070450532247928832L, geoLongMulLastValue(1L)); |
| 324 | expectEquals( 2305843009213693952L, geoLongMulLastValue(2L)); |
| 325 | expectEquals( 0L, geoLongMulLastValue(1081788608L)); |
| 326 | expectEquals( 0L, geoLongMulLastValue(-1081788608L)); |
| 327 | expectEquals( 8070450532247928832L, geoLongMulLastValue(2147483647L)); |
| 328 | expectEquals( 0L, geoLongMulLastValue(-2147483648L)); |
| 329 | expectEquals( 8070450532247928832L, geoLongMulLastValue(9223372036854775807L)); |
| 330 | expectEquals( 0L, geoLongMulLastValue(-9223372036854775808L)); |
| 331 | |
Aart Bik | 7adb688 | 2017-03-07 13:28:51 -0800 | [diff] [blame] | 332 | float[] a = new float[16]; |
| 333 | narrowingSubscript(a); |
| 334 | for (int i = 0; i < 16; i++) { |
| 335 | expectEquals(2.0f, a[i]); |
| 336 | } |
| 337 | |
Aart Bik | 807868e | 2016-11-03 17:51:43 -0700 | [diff] [blame] | 338 | System.out.println("passed"); |
| 339 | } |
| 340 | |
| 341 | private static void expectEquals(int expected, int result) { |
| 342 | if (expected != result) { |
| 343 | throw new Error("Expected: " + expected + ", found: " + result); |
| 344 | } |
| 345 | } |
Aart Bik | d3ba626 | 2017-01-30 14:37:12 -0800 | [diff] [blame] | 346 | |
| 347 | private static void expectEquals(long expected, long result) { |
| 348 | if (expected != result) { |
| 349 | throw new Error("Expected: " + expected + ", found: " + result); |
| 350 | } |
| 351 | } |
Aart Bik | 7adb688 | 2017-03-07 13:28:51 -0800 | [diff] [blame] | 352 | |
| 353 | private static void expectEquals(float expected, float result) { |
| 354 | if (expected != result) { |
| 355 | throw new Error("Expected: " + expected + ", found: " + result); |
| 356 | } |
| 357 | } |
Aart Bik | 807868e | 2016-11-03 17:51:43 -0700 | [diff] [blame] | 358 | } |