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 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
|
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; RUN: foreach %s %t wasm-opt --nominal --type-refining -all -S -o - | filecheck %s
(module
;; A struct with three fields. The first will have no writes, the second one
;; write of the same type, and the last a write of a subtype, which will allow
;; us to specialize that one.
;; CHECK: (type $struct (struct_subtype (field (mut anyref)) (field (mut anyref)) (field (mut (ref $ref|$struct|_=>_none))) data))
(type $struct (struct_subtype (field (mut anyref)) (field (mut anyref)) (field (mut anyref)) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (elem declare func $work)
;; CHECK: (func $work (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (struct.set $struct 1
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (ref.null any)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 2
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (ref.func $work)
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.get $struct 2
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct))
(struct.set $struct 1
(local.get $struct)
(ref.null any)
)
(struct.set $struct 2
(local.get $struct)
(ref.func $work)
)
(drop
;; The type of this struct.get must be updated after the field's type
;; changes, or the validator will complain.
(struct.get $struct 2
(local.get $struct)
)
)
)
)
(module
;; A struct with a nullable field and a write of a non-nullable value. We
;; must keep the type nullable, unlike in the previous module, due to the
;; default value being null.
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $ref|$struct|_=>_none))) data))
(type $struct (struct_subtype (field (mut anyref)) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (elem declare func $work)
;; CHECK: (func $work (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new_default $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (ref.func $work)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct))
(drop
(struct.new_default $struct)
)
(struct.set $struct 0
(local.get $struct)
(ref.func $work)
)
)
)
(module
;; Multiple writes to a field, with a LUB that is not equal to any of them.
;; We can at least improve from dataref to a ref of $struct here. Note also
;; that we do so in all three types, not just the parent to which we write
;; (the children have no writes, but must still be updated).
;; CHECK: (type $struct (struct_subtype (field (mut (ref $struct))) data))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $ref|$struct|_ref|$child-A|_ref|$child-B|_=>_none (func_subtype (param (ref $struct) (ref $child-A) (ref $child-B)) func))
;; CHECK: (type $child-A (struct_subtype (field (mut (ref $struct))) $struct))
(type $child-A (struct_subtype (field (mut dataref)) $struct))
;; CHECK: (type $child-B (struct_subtype (field (mut (ref $struct))) $struct))
(type $child-B (struct_subtype (field (mut dataref)) $struct))
;; CHECK: (func $work (type $ref|$struct|_ref|$child-A|_ref|$child-B|_=>_none) (param $struct (ref $struct)) (param $child-A (ref $child-A)) (param $child-B (ref $child-B))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $child-A)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $child-B)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child-A (ref $child-A)) (param $child-B (ref $child-B))
(struct.set $struct 0
(local.get $struct)
(local.get $child-A)
)
(struct.set $struct 0
(local.get $struct)
(local.get $child-B)
)
)
)
(module
;; As above, but all writes are of $child-A, which allows more optimization
;; up to that type.
;; CHECK: (type $struct (struct_subtype (field (mut (ref $child-A))) data))
;; CHECK: (type $child-A (struct_subtype (field (mut (ref $child-A))) $struct))
(type $child-A (struct_subtype (field (mut dataref)) $struct))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $ref|$struct|_ref|$child-A|_=>_none (func_subtype (param (ref $struct) (ref $child-A)) func))
;; CHECK: (type $none_=>_none (func_subtype func))
;; CHECK: (type $child-B (struct_subtype (field (mut (ref $child-A))) $struct))
(type $child-B (struct_subtype (field (mut dataref)) $struct))
;; CHECK: (func $work (type $ref|$struct|_ref|$child-A|_=>_none) (param $struct (ref $struct)) (param $child-A (ref $child-A))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $child-A)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $child-A)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child-A (ref $child-A))
(struct.set $struct 0
(local.get $struct)
(local.get $child-A)
)
(struct.set $struct 0
(local.get $struct)
(local.get $child-A)
)
)
;; CHECK: (func $keepalive (type $none_=>_none)
;; CHECK-NEXT: (local $temp (ref null $child-B))
;; CHECK-NEXT: (nop)
;; CHECK-NEXT: )
(func $keepalive
;; Add a reference to $child-B just to keep it alive in the output for easier
;; comparisons to the previous testcase. Note that $child-B's field will be
;; refined, because its parent $struct forces it to be.
(local $temp (ref null $child-B))
)
)
(module
;; Write to the parent a child, and to the child a parent. The write to the
;; child prevents specialization even in the parent and we only improve up to
;; $struct but not to $child.
;; CHECK: (type $struct (struct_subtype (field (mut (ref $struct))) data))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref $struct))) $struct))
(type $child (struct_subtype (field (mut dataref)) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $work (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $child 0
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child (ref $child))
(struct.set $struct 0
(local.get $struct)
(local.get $child)
)
(struct.set $child 0
(local.get $child)
(local.get $struct)
)
)
)
(module
;; As above, but both writes are of $child, so we can optimize.
;; CHECK: (type $struct (struct_subtype (field (mut (ref $child))) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref $child))) $struct))
(type $child (struct_subtype (field (mut dataref)) $struct))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $work (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $child 0
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child (ref $child))
(struct.set $struct 0
(local.get $struct)
(local.get $child)
)
(struct.set $child 0
(local.get $child)
(local.get $child)
)
)
)
(module
;; As in 2 testcases ago, write to the parent a child, and to the child a
;; parent, but now the writes happen in struct.new. Even with that precise
;; info, however, we can't make the parent field more specific than the
;; child's.
;; CHECK: (type $struct (struct_subtype (field (mut (ref $struct))) data))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref $struct))) $struct))
(type $child (struct_subtype (field (mut dataref)) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $work (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $child
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child (ref $child))
(drop
(struct.new $struct
(local.get $child)
)
)
(drop
(struct.new $child
(local.get $struct)
)
)
)
)
(module
;; Write a parent to the parent and a child to the child. We can specialize
;; each of them to contain their own type. This tests that we are aware that
;; a struct.new is of a precise type, which means that seeing a type written
;; to a parent does not limit specialization in a child.
;;
;; (Note that we can't do a similar test with struct.set, as that would
;; imply the fields are mutable, which limits optimization, see the next
;; testcase after this.)
;; CHECK: (type $struct (struct_subtype (field (ref $struct)) data))
(type $struct (struct_subtype (field dataref) data))
;; CHECK: (type $child (struct_subtype (field (ref $child)) $struct))
(type $child (struct_subtype (field dataref) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $work (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $child
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child (ref $child))
(drop
(struct.new $struct
(local.get $struct)
)
)
(drop
(struct.new $child
(local.get $child)
)
)
)
)
(module
;; As above, but the fields are mutable. We cannot specialize them to
;; different types in this case, and both will become $struct (still an
;; improvement!)
;; CHECK: (type $struct (struct_subtype (field (mut (ref $struct))) data))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref $struct))) $struct))
(type $child (struct_subtype (field (mut dataref)) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $work (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $child
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child (ref $child))
(drop
(struct.new $struct
(local.get $struct)
)
)
(drop
(struct.new $child
(local.get $child)
)
)
)
)
(module
;; As above, but the child also has a new field that is not in the parent. In
;; that case there is nothing stopping us from specializing that new field
;; to $child.
;; CHECK: (type $struct (struct_subtype (field (mut (ref $struct))) data))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref $struct))) (field (mut (ref $child))) $struct))
(type $child (struct_subtype (field (mut dataref)) (field (mut dataref)) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $work (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $child
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct)) (param $child (ref $child))
(drop
(struct.new $struct
(local.get $struct)
)
)
(drop
(struct.new $child
(local.get $child)
(local.get $child)
)
)
)
)
(module
;; A copy of a field does not prevent optimization (even though it assigns
;; the old type).
;; CHECK: (type $struct (struct_subtype (field (mut (ref $struct))) data))
(type $struct (struct_subtype (field (mut dataref)) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (func $work (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (struct.get $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct))
(struct.set $struct 0
(local.get $struct)
(local.get $struct)
)
(struct.set $struct 0
(local.get $struct)
(struct.get $struct 0
(local.get $struct)
)
)
)
)
(module
;; CHECK: (type $X (struct_subtype data))
;; CHECK: (type $Y (struct_subtype $X))
(type $Y (struct_subtype $X))
;; CHECK: (type $none_=>_none (func_subtype func))
;; CHECK: (type $A (struct_subtype (field (ref $Y)) data))
;; CHECK: (type $C (struct_subtype (field (ref $Y)) $A))
(type $C (struct_subtype (field (ref $X)) $A))
;; CHECK: (type $B (struct_subtype (field (ref $Y)) $A))
(type $B (struct_subtype (field (ref $X)) $A))
(type $A (struct_subtype (field (ref $X)) data))
(type $X (struct_subtype data))
;; CHECK: (func $foo (type $none_=>_none)
;; CHECK-NEXT: (local $unused (ref null $C))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $B
;; CHECK-NEXT: (struct.new_default $Y)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $foo
;; A use of type $C without ever creating an instance of it. We do still need
;; to update the type if we update the parent type, and we will in fact update
;; the parent $A's field from $X to $Y (see below), so we must do the same in
;; $C. As a result, all the fields with $X in them in all of $A, $B, $C will
;; be improved to contain $Y.
(local $unused (ref null $C))
(drop
(struct.new $B
(struct.new $Y) ;; This value is more specific than the field, which is an
;; opportunity to subtype, which we do for $B. As $A, our
;; parent, has no writes at all, we can propagate this
;; info to there as well, which means we can perform the
;; same optimization in $A as well.
)
)
)
)
(module
;; As above, but remove the struct.new to $B, which means $A, $B, $C all have
;; no writes to them. There are no optimizations to do here.
;; CHECK: (type $X (struct_subtype data))
(type $X (struct_subtype data))
;; CHECK: (type $none_=>_none (func_subtype func))
;; CHECK: (type $A (struct_subtype (field (ref $X)) data))
;; CHECK: (type $C (struct_subtype (field (ref $X)) $A))
(type $C (struct_subtype (field (ref $X)) $A))
;; CHECK: (type $B (struct_subtype (field (ref $X)) $A))
(type $B (struct_subtype (field (ref $X)) $A))
;; CHECK: (type $Y (struct_subtype $X))
(type $Y (struct_subtype $X))
(type $A (struct_subtype (field (ref $X)) data))
;; CHECK: (func $foo (type $none_=>_none)
;; CHECK-NEXT: (local $unused1 (ref null $C))
;; CHECK-NEXT: (local $unused2 (ref null $B))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new_default $Y)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $foo
(local $unused1 (ref null $C))
(local $unused2 (ref null $B))
(drop (struct.new $Y))
)
)
(module
;; CHECK: (type $X (struct_subtype data))
(type $X (struct_subtype data))
;; CHECK: (type $none_=>_none (func_subtype func))
;; CHECK: (type $A (struct_subtype (field (ref $X)) data))
;; CHECK: (type $B (struct_subtype (field (ref $Y)) $A))
(type $B (struct_subtype (field (ref $Y)) $A))
(type $A (struct_subtype (field (ref $X)) data))
;; CHECK: (type $Y (struct_subtype $X))
(type $Y (struct_subtype $X))
;; CHECK: (func $foo (type $none_=>_none)
;; CHECK-NEXT: (local $unused2 (ref null $B))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $A
;; CHECK-NEXT: (struct.new_default $X)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $foo
;; $B begins with its field of type $Y, which is more specific than the
;; field is in the supertype $A. There are no writes to $B, and so we end
;; up looking in the parent to see what to do; we should still emit a
;; reasonable type for $B, and there is no reason to make it *less*
;; specific, so leave things as they are.
(local $unused2 (ref null $B))
(drop
(struct.new $A
(struct.new $X)
)
)
)
)
(module
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $struct))) data))
(type $struct (struct_subtype (field (mut (ref null data))) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (func $update-null (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (ref.null $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $update-null (param $struct (ref $struct))
(struct.set $struct 0
(local.get $struct)
;; Write a $struct to the field.
(local.get $struct)
)
(struct.set $struct 0
(local.get $struct)
;; This null can be updated, allowing us to refine the type of the field
;; to a null of $struct.
(ref.null data)
)
)
)
(module
;; As above, but now the null is in a child. The result should be the same:
;; refine the field to nullable $struct.
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $struct))) data))
(type $struct (struct_subtype (field (mut (ref null data))) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref null $struct))) $struct))
(type $child (struct_subtype (field (mut (ref null data))) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $update-null (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $child 0
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: (ref.null $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $update-null (param $struct (ref $struct)) (param $child (ref $child))
(struct.set $struct 0
(local.get $struct)
(local.get $struct)
)
(struct.set $child 0
(local.get $child)
(ref.null data)
)
)
)
(module
;; As above, but now the null is in a parent. The result should be the same.
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $struct))) data))
(type $struct (struct_subtype (field (mut (ref null data))) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref null $struct))) $struct))
(type $child (struct_subtype (field (mut (ref null data))) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $update-null (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (ref.null $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $child 0
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $update-null (param $struct (ref $struct)) (param $child (ref $child))
(struct.set $struct 0
(local.get $struct)
(ref.null data)
)
(struct.set $child 0
(local.get $child)
(local.get $struct)
)
)
)
(module
;; CHECK: (type $struct (struct_subtype (field (mut (ref null data))) data))
(type $struct (struct_subtype (field (mut (ref null data))) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (func $work (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new_default $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct))
;; The only write to this struct is of a null default value. There is
;; nothing to optimize here.
(drop
(struct.new_default $struct)
)
)
)
(module
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $struct))) data))
(type $struct (struct_subtype (field (mut (ref null data))) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (func $work (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new_default $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct))
(drop
(struct.new_default $struct)
)
;; Also write a $struct. The null default should not prevent us from
;; refining the field's type to $struct (but nullable).
(struct.set $struct 0
(local.get $struct)
(local.get $struct)
)
)
)
(module
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $struct))) data))
(type $struct (struct_subtype (field (mut (ref null data))) data))
;; CHECK: (type $ref|$struct|_=>_none (func_subtype (param (ref $struct)) func))
;; CHECK: (func $work (type $ref|$struct|_=>_none) (param $struct (ref $struct))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (ref.null $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (struct.set $struct 0
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $work (param $struct (ref $struct))
;; As before, but instead of new_default, new, and use a null in the given
;; value, which should be updated.
(drop
(struct.new $struct
(ref.null data)
)
)
(struct.set $struct 0
(local.get $struct)
(local.get $struct)
)
)
)
(module
;; CHECK: (type $struct (struct_subtype (field (mut (ref null $child))) (field (mut (ref null $struct))) data))
(type $struct (struct_subtype (field (mut (ref null data))) (field (mut (ref null data))) data))
;; CHECK: (type $child (struct_subtype (field (mut (ref null $child))) (field (mut (ref null $struct))) $struct))
(type $child (struct_subtype (field (mut (ref null data))) (field (mut (ref null data))) $struct))
;; CHECK: (type $ref|$struct|_ref|$child|_=>_none (func_subtype (param (ref $struct) (ref $child)) func))
;; CHECK: (func $update-null (type $ref|$struct|_ref|$child|_=>_none) (param $struct (ref $struct)) (param $child (ref $child))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (local.get $child)
;; CHECK-NEXT: (ref.null $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (ref.null $child)
;; CHECK-NEXT: (local.get $struct)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $update-null (param $struct (ref $struct)) (param $child (ref $child))
;; Update nulls in two fields that are separately optimized to separate
;; values.
(drop
(struct.new $struct
(local.get $child)
(ref.null data)
)
)
(drop
(struct.new $struct
(ref.null data)
(local.get $struct)
)
)
)
)
(module
;; There are two parallel type hierarchies here: "Outer", which are objects
;; that have fields, that contain the "Inner" objects.
;;
;; Root-Outer -> Leaf1-Outer
;; -> Leaf2-Outer
;;
;; Root-Inner -> Leaf1-Inner
;; -> Leaf2-Inner
;;
;; Adding their contents, where X[Y] means X has a field of type Y:
;;
;; Root-Outer[Root-Inner] -> Leaf1-Outer[Leaf1-Inner]
;; -> Leaf2-Outer[Leaf2-Inner]
;; CHECK: (type $Root-Inner (struct_subtype data))
;; CHECK: (type $Leaf2-Inner (struct_subtype $Root-Inner))
(type $Leaf2-Inner (struct_subtype $Root-Inner))
;; CHECK: (type $none_=>_none (func_subtype func))
;; CHECK: (type $Root-Outer (struct_subtype (field (ref $Leaf2-Inner)) data))
;; CHECK: (type $Leaf1-Outer (struct_subtype (field (ref $Leaf2-Inner)) $Root-Outer))
(type $Leaf1-Outer (struct_subtype (field (ref $Leaf1-Inner)) $Root-Outer))
;; CHECK: (type $Leaf2-Outer (struct_subtype (field (ref $Leaf2-Inner)) $Root-Outer))
(type $Leaf2-Outer (struct_subtype (field (ref $Leaf2-Inner)) $Root-Outer))
(type $Root-Outer (struct_subtype (field (ref $Root-Inner)) data))
(type $Root-Inner (struct_subtype data))
(type $Leaf1-Inner (struct_subtype (field i32) $Root-Inner))
;; CHECK: (func $func (type $none_=>_none)
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (block ;; (replaces something unreachable we can't emit)
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (block
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (ref.null $Leaf1-Outer)
;; CHECK-NEXT: )
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.new $Leaf2-Outer
;; CHECK-NEXT: (struct.new_default $Leaf2-Inner)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $func
(drop
;; The situation here is that we have only a get for some types, and no
;; other constraints. As we ignore gets, we work under no constraints at
;; We then have to pick some type, so we pick the one used by our
;; supertype - and the supertype might have picked up a type from another
;; branch of the type tree, which is not a subtype of ours.
;;
;; In more detail, we never create an instance of $Leaf1-Outer, and we
;; only have a get of its field. This optimization ignores the get (to not
;; be limited by it). It will then optimize $Leaf1-Outer's field of
;; $Leaf1-Inner (another struct for which we have no creation, and only a
;; get) into $Leaf2-Inner, which is driven by the fact that we do have a
;; creation of $Leaf2-Inner. But then this struct.get $Leaf1-Inner on field
;; 0 is no longer valid, as we turn $Leaf1-Inner => $Leaf2-Inner, and
;; $Leaf2-Inner has no field 0. To keep the module validating, we must not
;; emit that. Instead, since there can be no instance of $Leaf1-Inner (as
;; mentioned before, it is never created, nor anything that can be cast to
;; it), we know this code is logically unreachable, and can emit an
;; unreachable here.
(struct.get $Leaf1-Inner 0
(struct.get $Leaf1-Outer 0
(ref.null $Leaf1-Outer)
)
)
)
(drop
(struct.new $Leaf2-Outer
(struct.new_default $Leaf2-Inner)
)
)
)
)
|