File: duplicate_types.wast

package info (click to toggle)
binaryen 120-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 41,284 kB
  • sloc: cpp: 189,449; javascript: 62,189; ansic: 14,087; python: 5,379; pascal: 441; sh: 77; makefile: 30; asm: 27
file content (55 lines) | stat: -rw-r--r-- 1,982 bytes parent folder | download
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
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.

;; RUN: wasm-opt %s -all -o %t.text.wast -g -S
;; RUN: wasm-as %s -all -g -o %t.wasm
;; RUN: wasm-dis %t.wasm -all -o %t.bin.wast
;; RUN: wasm-as %s -all -o %t.nodebug.wasm
;; RUN: wasm-dis %t.nodebug.wasm -all -o %t.bin.nodebug.wast
;; RUN: cat %t.text.wast | filecheck %s --check-prefix=CHECK-TEXT
;; RUN: cat %t.bin.wast | filecheck %s --check-prefix=CHECK-BIN
;; RUN: cat %t.bin.nodebug.wast | filecheck %s --check-prefix=CHECK-BIN-NODEBUG

(module ;; tests duplicate types are named properly
 (type (func))
 (type (func))
 (type (func))
 (type (func (param i32)))
 ;; CHECK-TEXT:      (type $0 (func (param i32)))
 ;; CHECK-BIN:      (type $0 (func (param i32)))
 ;; CHECK-BIN-NODEBUG:      (type $0 (func (param i32)))
 (type $0 (func (param i32)))
 (type (func (param i32)))
 (type $b (func (param i32) (result f32)))
 (type (func (param i32) (result f32)))

 ;; CHECK-TEXT:      (type $1 (func (param i32) (result i32)))

 ;; CHECK-TEXT:      (func $f0 (type $0) (param $0 i32)
 ;; CHECK-TEXT-NEXT:  (nop)
 ;; CHECK-TEXT-NEXT: )
 ;; CHECK-BIN:      (type $1 (func (param i32) (result i32)))

 ;; CHECK-BIN:      (func $f0 (type $0) (param $0 i32)
 ;; CHECK-BIN-NEXT:  (nop)
 ;; CHECK-BIN-NEXT: )
 (func $f0 (param i32))

 ;; CHECK-TEXT:      (func $f1 (type $1) (param $0 i32) (result i32)
 ;; CHECK-TEXT-NEXT:  (i32.const 0)
 ;; CHECK-TEXT-NEXT: )
 ;; CHECK-BIN:      (func $f1 (type $1) (param $0 i32) (result i32)
 ;; CHECK-BIN-NEXT:  (i32.const 0)
 ;; CHECK-BIN-NEXT: )
 (func $f1 (param i32) (result i32)
  (i32.const 0)
 )
)
;; CHECK-BIN-NODEBUG:      (type $1 (func (param i32) (result i32)))

;; CHECK-BIN-NODEBUG:      (func $0 (type $0) (param $0 i32)
;; CHECK-BIN-NODEBUG-NEXT:  (nop)
;; CHECK-BIN-NODEBUG-NEXT: )

;; CHECK-BIN-NODEBUG:      (func $1 (type $1) (param $0 i32) (result i32)
;; CHECK-BIN-NODEBUG-NEXT:  (i32.const 0)
;; CHECK-BIN-NODEBUG-NEXT: )