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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
|
// RUN: %target-sil-opt -o /dev/null %s
sil_stage canonical
import Builtin
// These are patterns that we should never consider as broken. For positive
// patterns look next door for verifier error checks.
sil @inoutCallee : $@convention(thin) (@inout Builtin.NativeObject) -> ()
sil @guaranteedUser : $@convention(thin) (@guaranteed Builtin.NativeObject) -> ()
sil @useRawPointer : $@convention(thin) (Builtin.RawPointer) -> ()
//////////////////////////
// InOut Argument Tests //
//////////////////////////
sil [ossa] @inout_earlier_user_same_block : $@convention(thin) (@inout Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%inout_user = function_ref @inoutCallee : $@convention(thin) (@inout Builtin.NativeObject) -> ()
br bb1
bb1:
apply %inout_user(%0) : $@convention(thin) (@inout Builtin.NativeObject) -> ()
%2 = load_borrow %0 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @inout_earlier_user_different_block : $@convention(thin) (@inout Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%inout_user = function_ref @inoutCallee : $@convention(thin) (@inout Builtin.NativeObject) -> ()
br bb1
bb1:
apply %inout_user(%0) : $@convention(thin) (@inout Builtin.NativeObject) -> ()
br bb2
bb2:
%2 = load_borrow %0 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @inout_later_user_same_block : $@convention(thin) (@inout Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%inout_user = function_ref @inoutCallee : $@convention(thin) (@inout Builtin.NativeObject) -> ()
br bb1
bb1:
%2 = load_borrow %0 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
apply %inout_user(%0) : $@convention(thin) (@inout Builtin.NativeObject) -> ()
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @inout_later_user_different_block : $@convention(thin) (@inout Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%inout_user = function_ref @inoutCallee : $@convention(thin) (@inout Builtin.NativeObject) -> ()
br bb1
bb1:
%2 = load_borrow %0 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
br bb2
bb2:
apply %inout_user(%0) : $@convention(thin) (@inout Builtin.NativeObject) -> ()
%9999 = tuple()
return %9999 : $()
}
////////////////////////
// Begin Access Tests //
////////////////////////
// Read tests
sil [ossa] @begin_access_read_write_before_same_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
store %1 to [assign] %0 : $*Builtin.NativeObject
%3 = begin_access [read] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_read_write_after_same_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
%3 = begin_access [read] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
store %1 to [assign] %0 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
// Modify tests
sil [ossa] @begin_access_modify_write_before_same_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
store %1 to [assign] %0 : $*Builtin.NativeObject
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_modify_write_before_different_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
store %1 to [assign] %0 : $*Builtin.NativeObject
br bb1
bb1:
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_modify_write_after_same_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
store %1 to [assign] %0 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_modify_write_after_different_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
store %1 to [assign] %0 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
// [modify] Writes in scope
sil [ossa] @begin_access_modify_same_scope_write_before_same_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
store %1 to [assign] %3 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_modify_same_scope_write_before_different_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
store %1 to [assign] %3 : $*Builtin.NativeObject
br bb1
bb1:
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_modify_same_scope_write_after_same_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
store %1 to [assign] %3 : $*Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
br bb2
bb2:
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @begin_access_modify_same_scope_write_after_different_block : $@convention(thin) (@inout Builtin.NativeObject, @owned Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : @owned $Builtin.NativeObject):
br bb1
bb1:
%3 = begin_access [modify] [unsafe] %0 : $*Builtin.NativeObject
%2 = load_borrow %3 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
br bb2
bb2:
store %1 to [assign] %3 : $*Builtin.NativeObject
end_access %3 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
//////////////////////////////
// pointer_to_address tests //
//////////////////////////////
sil [ossa] @pointer_to_address_test : $@convention(thin) (Builtin.RawPointer) -> () {
bb0(%0 : $Builtin.RawPointer):
%1 = pointer_to_address %0 : $Builtin.RawPointer to [strict] $*Builtin.NativeObject
%2 = load_borrow %1 : $*Builtin.NativeObject
end_borrow %2 : $Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
////////////////////////
// Address Cast Tests //
////////////////////////
sil [ossa] @unconditional_checked_cast_addr_test : $@convention(thin) (@in Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%0a = load_borrow %0 : $*Builtin.NativeObject
end_borrow %0a : $Builtin.NativeObject
%stack0 = alloc_stack $Builtin.NativeObject
unconditional_checked_cast_addr Builtin.NativeObject in %0 : $*Builtin.NativeObject to Builtin.NativeObject in %stack0 : $*Builtin.NativeObject
destroy_addr %stack0 : $*Builtin.NativeObject
dealloc_stack %stack0 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @conditional_addr_cast_always_take : $@convention(thin) (@in Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%0a = load_borrow %0 : $*Builtin.NativeObject
end_borrow %0a : $Builtin.NativeObject
%stack0 = alloc_stack $Builtin.NativeObject
checked_cast_addr_br take_always Builtin.NativeObject in %0 : $*Builtin.NativeObject to Builtin.NativeObject in %stack0 : $*Builtin.NativeObject, bb1, bb2
bb1:
destroy_addr %stack0 : $*Builtin.NativeObject
br bb3
bb2:
br bb3
bb3:
dealloc_stack %stack0 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @conditional_addr_cast_take_on_success : $@convention(thin) (@in Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%0a = load_borrow %0 : $*Builtin.NativeObject
end_borrow %0a : $Builtin.NativeObject
%stack0 = alloc_stack $Builtin.NativeObject
checked_cast_addr_br take_on_success Builtin.NativeObject in %0 : $*Builtin.NativeObject to Builtin.NativeObject in %stack0 : $*Builtin.NativeObject, bb1, bb2
bb1:
destroy_addr %stack0 : $*Builtin.NativeObject
br bb3
bb2:
destroy_addr %0 : $*Builtin.NativeObject
br bb3
bb3:
dealloc_stack %stack0 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @conditional_addr_cast_copyonsuccess_1 : $@convention(thin) (@in Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%0a = load_borrow %0 : $*Builtin.NativeObject
end_borrow %0a : $Builtin.NativeObject
%stack0 = alloc_stack $Builtin.NativeObject
checked_cast_addr_br copy_on_success Builtin.NativeObject in %0 : $*Builtin.NativeObject to Builtin.NativeObject in %stack0 : $*Builtin.NativeObject, bb1, bb2
bb1:
destroy_addr %stack0 : $*Builtin.NativeObject
br bb3
bb2:
br bb3
bb3:
dealloc_stack %stack0 : $*Builtin.NativeObject
destroy_addr %0 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @conditional_addr_cast_copyonsuccess_2 : $@convention(thin) (@in Builtin.NativeObject) -> () {
bb0(%0 : $*Builtin.NativeObject):
%0a = load_borrow %0 : $*Builtin.NativeObject
%stack0 = alloc_stack $Builtin.NativeObject
checked_cast_addr_br copy_on_success Builtin.NativeObject in %0 : $*Builtin.NativeObject to Builtin.NativeObject in %stack0 : $*Builtin.NativeObject, bb1, bb2
bb1:
destroy_addr %stack0 : $*Builtin.NativeObject
br bb3
bb2:
br bb3
bb3:
dealloc_stack %stack0 : $*Builtin.NativeObject
end_borrow %0a : $Builtin.NativeObject
destroy_addr %0 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
sil [ossa] @pointer_to_address_is_assumed_to_be_safe : $@convention(thin) (@owned Builtin.NativeObject) -> () {
bb0(%0 : @owned $Builtin.NativeObject):
%1 = alloc_stack $Builtin.NativeObject
store %0 to [init] %1 : $*Builtin.NativeObject
%2 = load_borrow %1 : $*Builtin.NativeObject
%gUser = function_ref @guaranteedUser : $@convention(thin) (@guaranteed Builtin.NativeObject) -> ()
apply %gUser(%2) : $@convention(thin) (@guaranteed Builtin.NativeObject) -> ()
end_borrow %2 : $Builtin.NativeObject
%3 = address_to_pointer %1 : $*Builtin.NativeObject to $Builtin.RawPointer
%4 = mark_dependence %3 : $Builtin.RawPointer on %1 : $*Builtin.NativeObject
%rawPointerUser = function_ref @useRawPointer : $@convention(thin) (Builtin.RawPointer) -> ()
apply %rawPointerUser(%4) : $@convention(thin) (Builtin.RawPointer) -> ()
destroy_addr %1 : $*Builtin.NativeObject
dealloc_stack %1 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
struct Bool {
var _value: Builtin.Int1
}
sil [ossa] @test_withisunique : $@convention(method) <Element> (@inout Builtin.NativeObject) -> Bool {
bb0(%0 : $*Builtin.NativeObject):
%1 = is_unique %0 : $*Builtin.NativeObject
%2 = struct $Bool (%1 : $Builtin.Int1)
%3 = load_borrow %0 : $*Builtin.NativeObject
end_borrow %3 : $Builtin.NativeObject
return %2 : $Bool
}
sil [ossa] @test_valuemetatype : $@convention(thin) (@owned Builtin.NativeObject) -> () {
bb0(%0 : @owned $Builtin.NativeObject):
%1 = alloc_stack $Builtin.NativeObject
store %0 to [init] %1 : $*Builtin.NativeObject
%3a = value_metatype $@thick Builtin.NativeObject.Type, %1 : $*Builtin.NativeObject
%2 = load_borrow %1 : $*Builtin.NativeObject
%gUser = function_ref @guaranteedUser : $@convention(thin) (@guaranteed Builtin.NativeObject) -> ()
apply %gUser(%2) : $@convention(thin) (@guaranteed Builtin.NativeObject) -> ()
end_borrow %2 : $Builtin.NativeObject
%3 = address_to_pointer %1 : $*Builtin.NativeObject to $Builtin.RawPointer
%4 = mark_dependence %3 : $Builtin.RawPointer on %1 : $*Builtin.NativeObject
%rawPointerUser = function_ref @useRawPointer : $@convention(thin) (Builtin.RawPointer) -> ()
apply %rawPointerUser(%4) : $@convention(thin) (Builtin.RawPointer) -> ()
destroy_addr %1 : $*Builtin.NativeObject
dealloc_stack %1 : $*Builtin.NativeObject
%9999 = tuple()
return %9999 : $()
}
class KlassWithStruct {
var val : NonTrivialStruct
}
class Klass {
}
struct NonTrivialStruct {
var val : Klass
}
sil [ossa] @test_borrow : $@convention(thin) (@owned KlassWithStruct) -> () {
bb0(%0 : @owned $KlassWithStruct):
%2 = copy_value %0 : $KlassWithStruct
%4 = begin_borrow %2 : $KlassWithStruct
%5 = ref_element_addr %4 : $KlassWithStruct, #KlassWithStruct.val
%6 = load_borrow %5 : $*NonTrivialStruct
destroy_value %0 : $KlassWithStruct
end_borrow %6 : $NonTrivialStruct
end_borrow %4 : $KlassWithStruct
destroy_value %2 : $KlassWithStruct
%ret = tuple ()
return %ret : $()
}
sil [ossa] @test_overlapping_write1 : $@convention(method) (@guaranteed KlassWithStruct) -> () {
bb0(%0 : @guaranteed $KlassWithStruct):
%2 = copy_value %0 : $KlassWithStruct
%5 = ref_element_addr %0 : $KlassWithStruct, #KlassWithStruct.val
%6 = begin_access [read] [dynamic] %5 : $*NonTrivialStruct
%7 = load_borrow %6 : $*NonTrivialStruct
%11 = alloc_stack $KlassWithStruct
store %2 to [init] %11 : $*KlassWithStruct
destroy_addr %11 : $*KlassWithStruct
dealloc_stack %11 : $*KlassWithStruct
end_borrow %7 : $NonTrivialStruct
end_access %6 : $*NonTrivialStruct
%t = tuple ()
return %t : $()
}
sil [ossa] @test_overlapping_write2 : $@convention(method) (@guaranteed KlassWithStruct) -> () {
bb0(%0 : @guaranteed $KlassWithStruct):
%2 = copy_value %0 : $KlassWithStruct
%3 = begin_borrow %2 : $KlassWithStruct
%5 = ref_element_addr %3 : $KlassWithStruct, #KlassWithStruct.val
%6 = begin_access [read] [dynamic] %5 : $*NonTrivialStruct
%7 = load_borrow %6 : $*NonTrivialStruct
%11 = alloc_stack $KlassWithStruct
%12 = store_borrow %0 to %11 : $*KlassWithStruct
end_borrow %12 : $*KlassWithStruct
dealloc_stack %11 : $*KlassWithStruct
end_borrow %7 : $NonTrivialStruct
end_access %6 : $*NonTrivialStruct
end_borrow %3 : $KlassWithStruct
destroy_value %2 : $KlassWithStruct
%t = tuple ()
return %t : $()
}
|