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
|
;; reftype :: externref | funcref
;; NOTE: the subtyping relationship has been removed from the reference-types proposal but an
;; `--enable-anyref` feature flag is present in Binaryen that we use below to test subtyping.
;;
;; reftype :: reftype | anyref
;; reftype <: anyref
(module
(type $sig_externref (func (param externref)))
(type $sig_funcref (func (param funcref)))
(type $sig_anyref (func (param anyref)))
(func $take_externref (param externref))
(func $take_funcref (param funcref))
(func $take_anyref (param anyref))
(func $foo)
(table funcref (elem $take_externref $take_funcref $take_anyref))
(elem declare func $ref-taken-but-not-in-table)
(import "env" "import_func" (func $import_func (param externref) (result funcref)))
(import "env" "import_global" (global $import_global externref))
(export "export_func" (func $import_func (param externref) (result funcref)))
(export "export_global" (global $import_global))
;; Test global initializer expressions
(global $global_externref (mut externref) (ref.null extern))
(global $global_funcref (mut funcref) (ref.null func))
(global $global_funcref_func (mut funcref) (ref.func $foo))
(global $global_anyref (mut anyref) (ref.null any))
;; Test subtype relationship in global initializer expressions
(global $global_anyref2 (mut anyref) (ref.null extern))
(global $global_anyref3 (mut anyref) (ref.null func))
(global $global_anyref4 (mut anyref) (ref.func $foo))
(tag $e-i32 (param i32))
(func $test
(local $local_externref externref)
(local $local_funcref funcref)
(local $local_anyref anyref)
;; Test types for local.get/set
(local.set $local_externref (local.get $local_externref))
(local.set $local_externref (global.get $global_externref))
(local.set $local_externref (ref.null extern))
(local.set $local_funcref (local.get $local_funcref))
(local.set $local_funcref (global.get $global_funcref))
(local.set $local_funcref (ref.null func))
(local.set $local_funcref (ref.func $foo))
(local.set $local_anyref (local.get $local_anyref))
(local.set $local_anyref (global.get $global_anyref))
(local.set $local_anyref (ref.null any))
;; Test subtype relationship for local.set
(local.set $local_anyref (local.get $local_externref))
(local.set $local_anyref (global.get $global_externref))
(local.set $local_anyref (ref.null extern))
(local.set $local_anyref (local.get $local_funcref))
(local.set $local_anyref (global.get $global_funcref))
(local.set $local_anyref (ref.null func))
(local.set $local_anyref (ref.func $foo))
;; Test types for global.get/set
(global.set $global_externref (global.get $global_externref))
(global.set $global_externref (local.get $local_externref))
(global.set $global_externref (ref.null extern))
(global.set $global_funcref (global.get $global_funcref))
(global.set $global_funcref (local.get $local_funcref))
(global.set $global_funcref (ref.null func))
(global.set $global_funcref (ref.func $foo))
(global.set $global_anyref (global.get $global_anyref))
(global.set $global_anyref (local.get $local_anyref))
(global.set $global_anyref (ref.null any))
;; Test subtype relationship for global.set
(global.set $global_anyref (global.get $global_externref))
(global.set $global_anyref (local.get $local_externref))
(global.set $global_anyref (ref.null extern))
(global.set $global_anyref (global.get $global_funcref))
(global.set $global_anyref (local.get $local_funcref))
(global.set $global_anyref (ref.null func))
(global.set $global_anyref (ref.func $foo))
;; Test function call params
(call $take_externref (local.get $local_externref))
(call $take_externref (global.get $global_externref))
(call $take_externref (ref.null extern))
(call $take_funcref (local.get $local_funcref))
(call $take_funcref (global.get $global_funcref))
(call $take_funcref (ref.null func))
(call $take_funcref (ref.func $foo))
(call $take_anyref (local.get $local_anyref))
(call $take_anyref (global.get $global_anyref))
(call $take_anyref (ref.null any))
;; Test subtype relationship for function call params
(call $take_anyref (local.get $local_externref))
(call $take_anyref (global.get $global_externref))
(call $take_anyref (ref.null extern))
(call $take_anyref (local.get $local_funcref))
(call $take_anyref (global.get $global_funcref))
(call $take_anyref (ref.null func))
(call $take_anyref (ref.func $foo))
;; Test call_indirect params
(call_indirect (type $sig_externref) (local.get $local_externref) (i32.const 0))
(call_indirect (type $sig_externref) (global.get $global_externref) (i32.const 0))
(call_indirect (type $sig_externref) (ref.null extern) (i32.const 0))
(call_indirect (type $sig_funcref) (local.get $local_funcref) (i32.const 1))
(call_indirect (type $sig_funcref) (global.get $global_funcref) (i32.const 1))
(call_indirect (type $sig_funcref) (ref.null func) (i32.const 1))
(call_indirect (type $sig_funcref) (ref.func $foo) (i32.const 1))
(call_indirect (type $sig_anyref) (local.get $local_anyref) (i32.const 3))
(call_indirect (type $sig_anyref) (global.get $global_anyref) (i32.const 3))
(call_indirect (type $sig_anyref) (ref.null any) (i32.const 3))
;; Test subtype relationship for call_indirect params
(call_indirect (type $sig_anyref) (local.get $local_externref) (i32.const 3))
(call_indirect (type $sig_anyref) (global.get $global_externref) (i32.const 3))
(call_indirect (type $sig_anyref) (ref.null extern) (i32.const 3))
(call_indirect (type $sig_anyref) (local.get $local_funcref) (i32.const 3))
(call_indirect (type $sig_anyref) (global.get $global_funcref) (i32.const 3))
(call_indirect (type $sig_anyref) (ref.null func) (i32.const 3))
(call_indirect (type $sig_anyref) (ref.func $foo) (i32.const 3))
;; Test block return type
(drop
(block (result externref)
(br_if 0 (local.get $local_externref) (i32.const 1))
)
)
(drop
(block (result externref)
(br_if 0 (global.get $global_externref) (i32.const 1))
)
)
(drop
(block (result externref)
(br_if 0 (ref.null extern) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (local.get $local_funcref) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (global.get $global_funcref) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (ref.null func) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (ref.func $foo) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (local.get $local_anyref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (global.get $global_anyref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (ref.null any) (i32.const 1))
)
)
;; Test subtype relationship for block return type
(drop
(block (result anyref)
(br_if 0 (local.get $local_externref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (local.get $local_funcref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (ref.null extern) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (ref.null func) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (ref.func $foo) (i32.const 1))
)
)
;; Test loop return type
(drop
(loop (result externref)
(local.get $local_externref)
)
)
(drop
(loop (result externref)
(global.get $global_externref)
)
)
(drop
(loop (result externref)
(ref.null extern)
)
)
(drop
(loop (result funcref)
(local.get $local_funcref)
)
)
(drop
(loop (result funcref)
(global.get $global_funcref)
)
)
(drop
(loop (result funcref)
(ref.null func)
)
)
(drop
(loop (result funcref)
(ref.func $foo)
)
)
(drop
(loop (result anyref)
(local.get $local_anyref)
)
)
(drop
(loop (result anyref)
(global.get $global_anyref)
)
)
(drop
(loop (result anyref)
(ref.null any)
)
)
;; Test subtype relationship for loop return type
(drop
(loop (result anyref)
(local.get $local_externref)
)
)
(drop
(loop (result anyref)
(global.get $global_externref)
)
)
(drop
(loop (result anyref)
(ref.null extern)
)
)
(drop
(loop (result anyref)
(local.get $local_funcref)
)
)
(drop
(loop (result anyref)
(global.get $global_funcref)
)
)
(drop
(loop (result anyref)
(ref.null func)
)
)
(drop
(loop (result anyref)
(ref.func $foo)
)
)
;; Test if return type
(drop
(if (result externref)
(i32.const 1)
(local.get $local_externref)
(ref.null extern)
)
)
(drop
(if (result funcref)
(i32.const 1)
(local.get $local_funcref)
(ref.null func)
)
)
(drop
(if (result anyref)
(i32.const 1)
(local.get $local_anyref)
(ref.null any)
)
)
;; Test subtype relationship for if return type
(drop
(if (result anyref)
(i32.const 1)
(local.get $local_externref)
(local.get $local_funcref)
)
)
(drop
(if (result anyref)
(i32.const 1)
(ref.null extern)
(ref.null func)
)
)
(drop
(if (result anyref)
(i32.const 1)
(ref.func $foo)
(ref.null extern)
)
)
;; Test try return type
(drop
(try (result externref)
(do
(local.get $local_externref)
)
(catch $e-i32
(drop (pop i32))
(ref.null extern)
)
)
)
(drop
(try (result funcref)
(do
(ref.func $foo)
)
(catch $e-i32
(drop (pop i32))
(ref.null func)
)
)
)
;; Test subtype relationship for try return type
(drop
(try (result anyref)
(do
(local.get $local_externref)
)
(catch $e-i32
(drop (pop i32))
(ref.func $foo)
)
)
)
(drop
(try (result anyref)
(do
(ref.func $foo)
)
(catch $e-i32
(drop (pop i32))
(local.get $local_externref)
)
)
)
;; Test typed select
(drop
(select (result externref)
(local.get $local_externref)
(ref.null extern)
(i32.const 1)
)
)
(drop
(select (result funcref)
(local.get $local_funcref)
(ref.null func)
(i32.const 1)
)
)
(drop
(select (result i32)
(i32.const 0)
(i32.const 2)
(i32.const 1)
)
)
;; Test subtype relationship for typed select
(drop
(select (result anyref)
(local.get $local_externref)
(local.get $local_funcref)
(i32.const 1)
)
)
(drop
(select (result anyref)
(local.get $local_funcref)
(local.get $local_externref)
(i32.const 1)
)
)
;; ref.is_null takes any reference types
(drop (ref.is_null (local.get $local_externref)))
(drop (ref.is_null (global.get $global_externref)))
(drop (ref.is_null (ref.null extern)))
(drop (ref.is_null (local.get $local_funcref)))
(drop (ref.is_null (global.get $global_funcref)))
(drop (ref.is_null (ref.null func)))
(drop (ref.is_null (ref.func $foo)))
(drop (ref.is_null (local.get $local_anyref)))
(drop (ref.is_null (global.get $global_anyref)))
(drop (ref.is_null (ref.null any)))
)
;; Test function return type
(func $return_externref_local (result externref)
(local $local_externref externref)
(local.get $local_externref)
)
(func $return_externref_global (result externref)
(global.get $global_externref)
)
(func $return_externref_null (result externref)
(ref.null extern)
)
(func $return_funcref_local (result funcref)
(local $local_funcref funcref)
(local.get $local_funcref)
)
(func $return_funcref_global (result funcref)
(global.get $global_funcref)
)
(func $return_funcref_null (result funcref)
(ref.null func)
)
(func $return_funcref_func (result funcref)
(ref.func $foo)
)
(func $return_anyref_local (result anyref)
(local $local_anyref anyref)
(local.get $local_anyref)
)
(func $return_anyref_global (result anyref)
(global.get $global_anyref)
)
(func $return_anyref_null (result anyref)
(ref.null any)
)
;; Test subtype relationship in function return type
(func $return_anyref2 (result anyref)
(local $local_externref externref)
(local.get $local_externref)
)
(func $return_anyref3 (result anyref)
(global.get $global_externref)
)
(func $return_anyref4 (result anyref)
(ref.null extern)
)
(func $return_anyref5 (result anyref)
(local $local_funcref funcref)
(local.get $local_funcref)
)
(func $return_anyref6 (result anyref)
(global.get $global_funcref)
)
(func $return_anyref7 (result anyref)
(ref.null func)
)
(func $return_anyref8 (result anyref)
(ref.func $foo)
)
;; Test returns
(func $returns_externref (result externref)
(local $local_externref externref)
(return (local.get $local_externref))
(return (global.get $global_externref))
(return (ref.null extern))
)
(func $returns_funcref (result funcref)
(local $local_funcref funcref)
(return (local.get $local_funcref))
(return (global.get $global_funcref))
(return (ref.func $foo))
(return (ref.null func))
)
(func $returns_anyref (result anyref)
(local $local_anyref anyref)
(return (local.get $local_anyref))
(return (global.get $global_anyref))
(return (ref.null any))
)
;; Test subtype relationship in returns
(func $returns_anyref2 (result anyref)
(local $local_externref externref)
(local $local_funcref funcref)
(return (local.get $local_externref))
(return (global.get $global_externref))
(return (ref.null extern))
(return (local.get $local_funcref))
(return (global.get $global_funcref))
(return (ref.func $foo))
(return (ref.null func))
)
(func $ref-user
(drop
;; an "elem declare func" must be emitted for this ref.func which is not
;; in the table
(ref.func $ref-taken-but-not-in-table)
)
)
(func $ref-taken-but-not-in-table)
)
|