Initial GC integration (#196)

This commit is contained in:
Daniel Wirtz
2018-08-02 18:23:02 +02:00
committed by GitHub
parent 671121bf70
commit dc0f271fc2
139 changed files with 7370 additions and 5016 deletions

View File

@ -12,16 +12,16 @@
(export "exportedExported" (func $abi/exportedExported))
(export "exportedInternal" (func $abi/exportedInternal))
(start $start)
(func $abi/exported (; 1 ;) (type $i) (result i32)
(func $abi/exported (; 1 ;) (; has Stack IR ;) (type $i) (result i32)
(i32.const -128)
)
(func $abi/exportedExported (; 2 ;) (type $i) (result i32)
(func $abi/exportedExported (; 2 ;) (; has Stack IR ;) (type $i) (result i32)
(call $abi/exported)
)
(func $abi/internal (; 3 ;) (type $i) (result i32)
(func $abi/internal (; 3 ;) (; has Stack IR ;) (type $i) (result i32)
(i32.const 128)
)
(func $abi/exportedInternal (; 4 ;) (type $i) (result i32)
(func $abi/exportedInternal (; 4 ;) (; has Stack IR ;) (type $i) (result i32)
(i32.shr_s
(i32.shl
(call $abi/internal)
@ -30,7 +30,7 @@
(i32.const 24)
)
)
(func $start (; 5 ;) (type $v)
(func $start (; 5 ;) (; has Stack IR ;) (type $v)
(drop
(call $abi/internal)
)