1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
-- Test cases for "flag elimination" optimization. Used to optimize away
-- registers that are always used immediately after assignment as branch conditions.
[case testFlagEliminationSimple]
def c() -> bool:
return True
def d() -> bool:
return True
def f(x: bool) -> int:
if x:
b = c()
else:
b = d()
if b:
return 1
else:
return 2
[out]
def c():
L0:
return 1
def d():
L0:
return 1
def f(x):
x, r0, r1 :: bool
L0:
if x goto L1 else goto L2 :: bool
L1:
r0 = c()
if r0 goto L3 else goto L4 :: bool
L2:
r1 = d()
if r1 goto L3 else goto L4 :: bool
L3:
return 2
L4:
return 4
[case testFlagEliminationOneAssignment]
def c() -> bool:
return True
def f(x: bool) -> int:
# Not applied here
b = c()
if b:
return 1
else:
return 2
[out]
def c():
L0:
return 1
def f(x):
x, r0, b :: bool
L0:
r0 = c()
b = r0
if b goto L1 else goto L2 :: bool
L1:
return 2
L2:
return 4
[case testFlagEliminationThreeCases]
def c(x: int) -> bool:
return True
def f(x: bool, y: bool) -> int:
if x:
b = c(1)
elif y:
b = c(2)
else:
b = c(3)
if b:
return 1
else:
return 2
[out]
def c(x):
x :: int
L0:
return 1
def f(x, y):
x, y, r0, r1, r2 :: bool
L0:
if x goto L1 else goto L2 :: bool
L1:
r0 = c(2)
if r0 goto L5 else goto L6 :: bool
L2:
if y goto L3 else goto L4 :: bool
L3:
r1 = c(4)
if r1 goto L5 else goto L6 :: bool
L4:
r2 = c(6)
if r2 goto L5 else goto L6 :: bool
L5:
return 2
L6:
return 4
[case testFlagEliminationAssignmentNotLastOp]
def f(x: bool) -> int:
y = 0
if x:
b = True
y = 1
else:
b = False
if b:
return 1
else:
return 2
[out]
def f(x):
x :: bool
y :: int
b :: bool
L0:
y = 0
if x goto L1 else goto L2 :: bool
L1:
b = 1
y = 2
goto L3
L2:
b = 0
L3:
if b goto L4 else goto L5 :: bool
L4:
return 2
L5:
return 4
[case testFlagEliminationAssignmentNoDirectGoto]
def f(x: bool) -> int:
if x:
b = True
else:
b = False
if x:
if b:
return 1
else:
return 2
return 4
[out]
def f(x):
x, b :: bool
L0:
if x goto L1 else goto L2 :: bool
L1:
b = 1
goto L3
L2:
b = 0
L3:
if x goto L4 else goto L7 :: bool
L4:
if b goto L5 else goto L6 :: bool
L5:
return 2
L6:
return 4
L7:
return 8
[case testFlagEliminationBranchNotNextOpAfterGoto]
def f(x: bool) -> int:
if x:
b = True
else:
b = False
y = 1 # Prevents the optimization
if b:
return 1
else:
return 2
[out]
def f(x):
x, b :: bool
y :: int
L0:
if x goto L1 else goto L2 :: bool
L1:
b = 1
goto L3
L2:
b = 0
L3:
y = 2
if b goto L4 else goto L5 :: bool
L4:
return 2
L5:
return 4
[case testFlagEliminationFlagReadTwice]
def f(x: bool) -> bool:
if x:
b = True
else:
b = False
if b:
return b # Prevents the optimization
else:
return False
[out]
def f(x):
x, b :: bool
L0:
if x goto L1 else goto L2 :: bool
L1:
b = 1
goto L3
L2:
b = 0
L3:
if b goto L4 else goto L5 :: bool
L4:
return b
L5:
return 0
[case testFlagEliminationArgumentNotEligible]
def f(x: bool, b: bool) -> bool:
if x:
b = True
else:
b = False
if b:
return True
else:
return False
[out]
def f(x, b):
x, b :: bool
L0:
if x goto L1 else goto L2 :: bool
L1:
b = 1
goto L3
L2:
b = 0
L3:
if b goto L4 else goto L5 :: bool
L4:
return 1
L5:
return 0
[case testFlagEliminationFlagNotAlwaysDefined]
def f(x: bool, y: bool) -> bool:
if x:
b = True
elif y:
b = False
else:
bb = False # b not assigned here -> can't optimize
if b:
return True
else:
return False
[out]
def f(x, y):
x, y, r0, b, bb, r1 :: bool
L0:
r0 = <error> :: bool
b = r0
if x goto L1 else goto L2 :: bool
L1:
b = 1
goto L5
L2:
if y goto L3 else goto L4 :: bool
L3:
b = 0
goto L5
L4:
bb = 0
L5:
if is_error(b) goto L6 else goto L7
L6:
r1 = raise UnboundLocalError('local variable "b" referenced before assignment')
unreachable
L7:
if b goto L8 else goto L9 :: bool
L8:
return 1
L9:
return 0
|