|
| 1 | +// RUN: fir-opt %s --fir-to-scf | FileCheck %s |
| 2 | + |
| 3 | +// CHECK-LABEL: func.func @simple_loop( |
| 4 | +// CHECK-SAME: %[[ARG0:.*]]: !fir.ref<!fir.array<100xi32>>) { |
| 5 | +// CHECK: %[[VAL_0:.*]] = arith.constant 1 : index |
| 6 | +// CHECK: %[[VAL_1:.*]] = arith.constant 100 : index |
| 7 | +// CHECK: %[[VAL_2:.*]] = fir.shape %[[VAL_1]] : (index) -> !fir.shape<1> |
| 8 | +// CHECK: %[[VAL_3:.*]] = arith.constant 1 : i32 |
| 9 | +// CHECK: %[[VAL_4:.*]] = arith.subi %[[VAL_1]], %[[VAL_0]] : index |
| 10 | +// CHECK: %[[VAL_5:.*]] = arith.addi %[[VAL_4]], %[[VAL_0]] : index |
| 11 | +// CHECK: %[[VAL_6:.*]] = arith.divsi %[[VAL_5]], %[[VAL_0]] : index |
| 12 | +// CHECK: %[[VAL_7:.*]] = arith.constant 0 : index |
| 13 | +// CHECK: %[[VAL_8:.*]] = arith.constant 1 : index |
| 14 | +// CHECK: scf.for %[[VAL_9:.*]] = %[[VAL_7]] to %[[VAL_6]] step %[[VAL_8]] { |
| 15 | +// CHECK: %[[VAL_10:.*]] = arith.muli %[[VAL_9]], %[[VAL_0]] : index |
| 16 | +// CHECK: %[[VAL_11:.*]] = arith.addi %[[VAL_0]], %[[VAL_10]] : index |
| 17 | +// CHECK: %[[VAL_12:.*]] = fir.array_coor %[[ARG0]](%[[VAL_2]]) %[[VAL_11]] : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 18 | +// CHECK: fir.store %[[VAL_3]] to %[[VAL_12]] : !fir.ref<i32> |
| 19 | +// CHECK: } |
| 20 | +// CHECK: return |
| 21 | +// CHECK: } |
| 22 | +func.func @simple_loop(%arg0: !fir.ref<!fir.array<100xi32>>) { |
| 23 | + %c1 = arith.constant 1 : index |
| 24 | + %c100 = arith.constant 100 : index |
| 25 | + %0 = fir.shape %c100 : (index) -> !fir.shape<1> |
| 26 | + %c1_i32 = arith.constant 1 : i32 |
| 27 | + fir.do_loop %arg1 = %c1 to %c100 step %c1 { |
| 28 | + %1 = fir.array_coor %arg0(%0) %arg1 : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 29 | + fir.store %c1_i32 to %1 : !fir.ref<i32> |
| 30 | + } |
| 31 | + return |
| 32 | +} |
| 33 | + |
| 34 | +// CHECK-LABEL: func.func @loop_with_negtive_step( |
| 35 | +// CHECK-SAME: %[[ARG0:.*]]: !fir.ref<!fir.array<100xi32>>) { |
| 36 | +// CHECK: %[[VAL_0:.*]] = arith.constant 100 : index |
| 37 | +// CHECK: %[[VAL_1:.*]] = arith.constant 1 : index |
| 38 | +// CHECK: %[[VAL_2:.*]] = arith.constant -1 : index |
| 39 | +// CHECK: %[[VAL_3:.*]] = fir.shape %[[VAL_0]] : (index) -> !fir.shape<1> |
| 40 | +// CHECK: %[[VAL_4:.*]] = arith.constant 1 : i32 |
| 41 | +// CHECK: %[[VAL_5:.*]] = arith.subi %[[VAL_1]], %[[VAL_0]] : index |
| 42 | +// CHECK: %[[VAL_6:.*]] = arith.addi %[[VAL_5]], %[[VAL_2]] : index |
| 43 | +// CHECK: %[[VAL_7:.*]] = arith.divsi %[[VAL_6]], %[[VAL_2]] : index |
| 44 | +// CHECK: %[[VAL_8:.*]] = arith.constant 0 : index |
| 45 | +// CHECK: %[[VAL_9:.*]] = arith.constant 1 : index |
| 46 | +// CHECK: scf.for %[[VAL_10:.*]] = %[[VAL_8]] to %[[VAL_7]] step %[[VAL_9]] { |
| 47 | +// CHECK: %[[VAL_11:.*]] = arith.muli %[[VAL_10]], %[[VAL_2]] : index |
| 48 | +// CHECK: %[[VAL_12:.*]] = arith.addi %[[VAL_0]], %[[VAL_11]] : index |
| 49 | +// CHECK: %[[VAL_13:.*]] = fir.array_coor %[[ARG0]](%[[VAL_3]]) %[[VAL_12]] : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 50 | +// CHECK: fir.store %[[VAL_4]] to %[[VAL_13]] : !fir.ref<i32> |
| 51 | +// CHECK: } |
| 52 | +// CHECK: return |
| 53 | +// CHECK: } |
| 54 | +func.func @loop_with_negtive_step(%arg0: !fir.ref<!fir.array<100xi32>>) { |
| 55 | + %c100 = arith.constant 100 : index |
| 56 | + %c1 = arith.constant 1 : index |
| 57 | + %c-1 = arith.constant -1 : index |
| 58 | + %0 = fir.shape %c100 : (index) -> !fir.shape<1> |
| 59 | + %c1_i32 = arith.constant 1 : i32 |
| 60 | + fir.do_loop %arg1 = %c100 to %c1 step %c-1 { |
| 61 | + %1 = fir.array_coor %arg0(%0) %arg1 : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 62 | + fir.store %c1_i32 to %1 : !fir.ref<i32> |
| 63 | + } |
| 64 | + return |
| 65 | +} |
| 66 | + |
| 67 | +// CHECK-LABEL: func.func @loop_with_results( |
| 68 | +// CHECK-SAME: %[[ARG0:.*]]: !fir.ref<!fir.array<100xi32>>, |
| 69 | +// CHECK-SAME: %[[ARG1:.*]]: !fir.ref<i32>) { |
| 70 | +// CHECK: %[[VAL_0:.*]] = arith.constant 1 : index |
| 71 | +// CHECK: %[[VAL_1:.*]] = arith.constant 0 : i32 |
| 72 | +// CHECK: %[[VAL_2:.*]] = arith.constant 100 : index |
| 73 | +// CHECK: %[[VAL_3:.*]] = fir.shape %[[VAL_2]] : (index) -> !fir.shape<1> |
| 74 | +// CHECK: %[[VAL_4:.*]] = arith.subi %[[VAL_2]], %[[VAL_0]] : index |
| 75 | +// CHECK: %[[VAL_5:.*]] = arith.addi %[[VAL_4]], %[[VAL_0]] : index |
| 76 | +// CHECK: %[[VAL_6:.*]] = arith.divsi %[[VAL_5]], %[[VAL_0]] : index |
| 77 | +// CHECK: %[[VAL_7:.*]] = arith.constant 0 : index |
| 78 | +// CHECK: %[[VAL_8:.*]] = arith.constant 1 : index |
| 79 | +// CHECK: %[[VAL_9:.*]] = scf.for %[[VAL_10:.*]] = %[[VAL_7]] to %[[VAL_6]] step %[[VAL_8]] iter_args(%[[VAL_11:.*]] = %[[VAL_1]]) -> (i32) { |
| 80 | +// CHECK: %[[VAL_12:.*]] = arith.muli %[[VAL_10]], %[[VAL_0]] : index |
| 81 | +// CHECK: %[[VAL_13:.*]] = arith.addi %[[VAL_0]], %[[VAL_12]] : index |
| 82 | +// CHECK: %[[VAL_14:.*]] = fir.array_coor %[[ARG0]](%[[VAL_3]]) %[[VAL_13]] : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 83 | +// CHECK: %[[VAL_15:.*]] = fir.load %[[VAL_14]] : !fir.ref<i32> |
| 84 | +// CHECK: %[[VAL_16:.*]] = arith.addi %[[VAL_11]], %[[VAL_15]] : i32 |
| 85 | +// CHECK: scf.yield %[[VAL_16]] : i32 |
| 86 | +// CHECK: } |
| 87 | +// CHECK: fir.store %[[VAL_9]] to %[[ARG1]] : !fir.ref<i32> |
| 88 | +// CHECK: return |
| 89 | +// CHECK: } |
| 90 | +func.func @loop_with_results(%arg0: !fir.ref<!fir.array<100xi32>>, %arg1: !fir.ref<i32>) { |
| 91 | + %c1 = arith.constant 1 : index |
| 92 | + %c0_i32 = arith.constant 0 : i32 |
| 93 | + %c100 = arith.constant 100 : index |
| 94 | + %0 = fir.shape %c100 : (index) -> !fir.shape<1> |
| 95 | + %1 = fir.do_loop %arg2 = %c1 to %c100 step %c1 iter_args(%arg3 = %c0_i32) -> (i32) { |
| 96 | + %2 = fir.array_coor %arg0(%0) %arg2 : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 97 | + %3 = fir.load %2 : !fir.ref<i32> |
| 98 | + %4 = arith.addi %arg3, %3 : i32 |
| 99 | + fir.result %4 : i32 |
| 100 | + } |
| 101 | + fir.store %1 to %arg1 : !fir.ref<i32> |
| 102 | + return |
| 103 | +} |
| 104 | + |
| 105 | +// CHECK-LABEL: func.func @loop_with_final_value( |
| 106 | +// CHECK-SAME: %[[ARG0:.*]]: !fir.ref<!fir.array<100xi32>>, |
| 107 | +// CHECK-SAME: %[[ARG1:.*]]: !fir.ref<i32>) { |
| 108 | +// CHECK: %[[VAL_0:.*]] = arith.constant 1 : index |
| 109 | +// CHECK: %[[VAL_1:.*]] = arith.constant 0 : i32 |
| 110 | +// CHECK: %[[VAL_2:.*]] = arith.constant 100 : index |
| 111 | +// CHECK: %[[VAL_3:.*]] = fir.alloca index |
| 112 | +// CHECK: %[[VAL_4:.*]] = fir.shape %[[VAL_2]] : (index) -> !fir.shape<1> |
| 113 | +// CHECK: %[[VAL_5:.*]] = arith.subi %[[VAL_2]], %[[VAL_0]] : index |
| 114 | +// CHECK: %[[VAL_6:.*]] = arith.addi %[[VAL_5]], %[[VAL_0]] : index |
| 115 | +// CHECK: %[[VAL_7:.*]] = arith.divsi %[[VAL_6]], %[[VAL_0]] : index |
| 116 | +// CHECK: %[[VAL_8:.*]] = arith.constant 0 : index |
| 117 | +// CHECK: %[[VAL_9:.*]] = arith.constant 1 : index |
| 118 | +// CHECK: %[[VAL_10:.*]]:2 = scf.for %[[VAL_11:.*]] = %[[VAL_8]] to %[[VAL_7]] step %[[VAL_9]] iter_args(%[[VAL_12:.*]] = %[[VAL_0]], %[[VAL_13:.*]] = %[[VAL_1]]) -> (index, i32) { |
| 119 | +// CHECK: %[[VAL_14:.*]] = arith.muli %[[VAL_11]], %[[VAL_0]] : index |
| 120 | +// CHECK: %[[VAL_15:.*]] = arith.addi %[[VAL_0]], %[[VAL_14]] : index |
| 121 | +// CHECK: %[[VAL_16:.*]] = fir.array_coor %[[ARG0]](%[[VAL_4]]) %[[VAL_15]] : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 122 | +// CHECK: %[[VAL_17:.*]] = fir.load %[[VAL_16]] : !fir.ref<i32> |
| 123 | +// CHECK: %[[VAL_18:.*]] = arith.addi %[[VAL_15]], %[[VAL_0]] overflow<nsw> : index |
| 124 | +// CHECK: %[[VAL_19:.*]] = arith.addi %[[VAL_13]], %[[VAL_17]] overflow<nsw> : i32 |
| 125 | +// CHECK: scf.yield %[[VAL_18]], %[[VAL_19]] : index, i32 |
| 126 | +// CHECK: } |
| 127 | +// CHECK: fir.store %[[VAL_20:.*]]#0 to %[[VAL_3]] : !fir.ref<index> |
| 128 | +// CHECK: fir.store %[[VAL_20]]#1 to %[[ARG1]] : !fir.ref<i32> |
| 129 | +// CHECK: return |
| 130 | +// CHECK: } |
| 131 | +func.func @loop_with_final_value(%arg0: !fir.ref<!fir.array<100xi32>>, %arg1: !fir.ref<i32>) { |
| 132 | + %c1 = arith.constant 1 : index |
| 133 | + %c0_i32 = arith.constant 0 : i32 |
| 134 | + %c100 = arith.constant 100 : index |
| 135 | + %0 = fir.alloca index |
| 136 | + %1 = fir.shape %c100 : (index) -> !fir.shape<1> |
| 137 | + %2:2 = fir.do_loop %arg2 = %c1 to %c100 step %c1 iter_args(%arg3 = %c0_i32) -> (index, i32) { |
| 138 | + %3 = fir.array_coor %arg0(%1) %arg2 : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 139 | + %4 = fir.load %3 : !fir.ref<i32> |
| 140 | + %5 = arith.addi %arg2, %c1 overflow<nsw> : index |
| 141 | + %6 = arith.addi %arg3, %4 overflow<nsw> : i32 |
| 142 | + fir.result %5, %6 : index, i32 |
| 143 | + } |
| 144 | + fir.store %2#0 to %0 : !fir.ref<index> |
| 145 | + fir.store %2#1 to %arg1 : !fir.ref<i32> |
| 146 | + return |
| 147 | +} |
| 148 | + |
| 149 | +// CHECK-LABEL: func.func @loop_with_attribute( |
| 150 | +// CHECK-SAME: %[[ARG0:.*]]: !fir.ref<!fir.array<100xi32>>, |
| 151 | +// CHECK-SAME: %[[ARG1:.*]]: !fir.ref<i32>) { |
| 152 | +// CHECK: %[[VAL_0:.*]] = arith.constant 1 : index |
| 153 | +// CHECK: %[[VAL_1:.*]] = arith.constant 0 : i32 |
| 154 | +// CHECK: %[[VAL_2:.*]] = arith.constant 100 : index |
| 155 | +// CHECK: %[[VAL_3:.*]] = fir.alloca i32 |
| 156 | +// CHECK: %[[VAL_4:.*]] = fir.shape %[[VAL_2]] : (index) -> !fir.shape<1> |
| 157 | +// CHECK: %[[VAL_5:.*]] = arith.subi %[[VAL_2]], %[[VAL_0]] : index |
| 158 | +// CHECK: %[[VAL_6:.*]] = arith.addi %[[VAL_5]], %[[VAL_0]] : index |
| 159 | +// CHECK: %[[VAL_7:.*]] = arith.divsi %[[VAL_6]], %[[VAL_0]] : index |
| 160 | +// CHECK: %[[VAL_8:.*]] = arith.constant 0 : index |
| 161 | +// CHECK: %[[VAL_9:.*]] = arith.constant 1 : index |
| 162 | +// CHECK: scf.for %[[VAL_10:.*]] = %[[VAL_8]] to %[[VAL_7]] step %[[VAL_9]] { |
| 163 | +// CHECK: %[[VAL_11:.*]] = arith.muli %[[VAL_10]], %[[VAL_0]] : index |
| 164 | +// CHECK: %[[VAL_12:.*]] = arith.addi %[[VAL_0]], %[[VAL_11]] : index |
| 165 | +// CHECK: %[[VAL_13:.*]] = fir.array_coor %[[ARG0]](%[[VAL_4]]) %[[VAL_12]] : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 166 | +// CHECK: %[[VAL_14:.*]] = fir.load %[[VAL_13]] : !fir.ref<i32> |
| 167 | +// CHECK: %[[VAL_15:.*]] = fir.load %[[VAL_3]] : !fir.ref<i32> |
| 168 | +// CHECK: %[[VAL_16:.*]] = arith.addi %[[VAL_15]], %[[VAL_14]] : i32 |
| 169 | +// CHECK: fir.store %[[VAL_16]] to %[[VAL_3]] : !fir.ref<i32> |
| 170 | +// CHECK: } {operandSegmentSizes = array<i32: 1, 1, 1, 1, 0>, reduceAttrs = [#fir.reduce_attr<add>]} |
| 171 | +// CHECK: return |
| 172 | +// CHECK: } |
| 173 | +func.func @loop_with_attribute(%arg0: !fir.ref<!fir.array<100xi32>>, %arg1: !fir.ref<i32>) { |
| 174 | + %c1 = arith.constant 1 : index |
| 175 | + %c0_i32 = arith.constant 0 : i32 |
| 176 | + %c100 = arith.constant 100 : index |
| 177 | + %0 = fir.alloca i32 |
| 178 | + %1 = fir.shape %c100 : (index) -> !fir.shape<1> |
| 179 | + fir.do_loop %arg2 = %c1 to %c100 step %c1 reduce(#fir.reduce_attr<add> -> %0 : !fir.ref<i32>) { |
| 180 | + %2 = fir.array_coor %arg0(%1) %arg2 : (!fir.ref<!fir.array<100xi32>>, !fir.shape<1>, index) -> !fir.ref<i32> |
| 181 | + %3 = fir.load %2 : !fir.ref<i32> |
| 182 | + %4 = fir.load %0 : !fir.ref<i32> |
| 183 | + %5 = arith.addi %4, %3 : i32 |
| 184 | + fir.store %5 to %0 : !fir.ref<i32> |
| 185 | + fir.result |
| 186 | + } |
| 187 | + return |
| 188 | +} |
| 189 | + |
| 190 | +// CHECK-LABEL: func.func @nested_loop( |
| 191 | +// CHECK-SAME: %[[ARG0:.*]]: !fir.ref<!fir.array<100x100xi32>>) { |
| 192 | +// CHECK: %[[VAL_0:.*]] = arith.constant 1 : index |
| 193 | +// CHECK: %[[VAL_1:.*]] = arith.constant 1 : i32 |
| 194 | +// CHECK: %[[VAL_2:.*]] = arith.constant 100 : index |
| 195 | +// CHECK: %[[VAL_3:.*]] = fir.shape %[[VAL_2]], %[[VAL_2]] : (index, index) -> !fir.shape<2> |
| 196 | +// CHECK: %[[VAL_4:.*]] = arith.subi %[[VAL_2]], %[[VAL_0]] : index |
| 197 | +// CHECK: %[[VAL_5:.*]] = arith.addi %[[VAL_4]], %[[VAL_0]] : index |
| 198 | +// CHECK: %[[VAL_6:.*]] = arith.divsi %[[VAL_5]], %[[VAL_0]] : index |
| 199 | +// CHECK: %[[VAL_7:.*]] = arith.constant 0 : index |
| 200 | +// CHECK: %[[VAL_8:.*]] = arith.constant 1 : index |
| 201 | +// CHECK: scf.for %[[VAL_9:.*]] = %[[VAL_7]] to %[[VAL_6]] step %[[VAL_8]] { |
| 202 | +// CHECK: %[[VAL_10:.*]] = arith.muli %[[VAL_9]], %[[VAL_0]] : index |
| 203 | +// CHECK: %[[VAL_11:.*]] = arith.addi %[[VAL_0]], %[[VAL_10]] : index |
| 204 | +// CHECK: %[[VAL_12:.*]] = arith.subi %[[VAL_2]], %[[VAL_0]] : index |
| 205 | +// CHECK: %[[VAL_13:.*]] = arith.addi %[[VAL_12]], %[[VAL_0]] : index |
| 206 | +// CHECK: %[[VAL_14:.*]] = arith.divsi %[[VAL_13]], %[[VAL_0]] : index |
| 207 | +// CHECK: %[[VAL_15:.*]] = arith.constant 0 : index |
| 208 | +// CHECK: %[[VAL_16:.*]] = arith.constant 1 : index |
| 209 | +// CHECK: scf.for %[[VAL_17:.*]] = %[[VAL_15]] to %[[VAL_14]] step %[[VAL_16]] { |
| 210 | +// CHECK: %[[VAL_18:.*]] = arith.muli %[[VAL_17]], %[[VAL_0]] : index |
| 211 | +// CHECK: %[[VAL_19:.*]] = arith.addi %[[VAL_0]], %[[VAL_18]] : index |
| 212 | +// CHECK: %[[VAL_20:.*]] = fir.array_coor %[[ARG0]](%[[VAL_3]]) %[[VAL_19]], %[[VAL_11]] : (!fir.ref<!fir.array<100x100xi32>>, !fir.shape<2>, index, index) -> !fir.ref<i32> |
| 213 | +// CHECK: fir.store %[[VAL_1]] to %[[VAL_20]] : !fir.ref<i32> |
| 214 | +// CHECK: } |
| 215 | +// CHECK: } |
| 216 | +// CHECK: return |
| 217 | +// CHECK: } |
| 218 | +func.func @nested_loop(%arg0: !fir.ref<!fir.array<100x100xi32>>) { |
| 219 | + %c1 = arith.constant 1 : index |
| 220 | + %c1_i32 = arith.constant 1 : i32 |
| 221 | + %c100 = arith.constant 100 : index |
| 222 | + %0 = fir.shape %c100, %c100 : (index, index) -> !fir.shape<2> |
| 223 | + fir.do_loop %arg1 = %c1 to %c100 step %c1 { |
| 224 | + fir.do_loop %arg2 = %c1 to %c100 step %c1 { |
| 225 | + %1 = fir.array_coor %arg0(%0) %arg2, %arg1 : (!fir.ref<!fir.array<100x100xi32>>, !fir.shape<2>, index, index) -> !fir.ref<i32> |
| 226 | + fir.store %c1_i32 to %1 : !fir.ref<i32> |
| 227 | + } |
| 228 | + } |
| 229 | + return |
| 230 | +} |
0 commit comments