Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(WIP) Parse Threaded Modules #477

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

data-pup
Copy link
Member

@data-pup data-pup commented Jun 24, 2020

Parse Threaded Modules

🚧 WIP 🚧

Fixes #326.

This continues the work from #365.

First, a reduced test fixture based on the repro posted in the original issue here:

;; `threads.wat` fixture
;;
;; Built with `wat2wasm --enable-bulk-memory --enable-threads`
(module
 (memory $0 1 1)
 (data (i32.const 0) "")
 (func $f (data.drop 0))
)

After building the .wasm file with wat2wasm --enable-bulk-memory --enable-threads, we have a 44 byte file, with the following header sizes:

; exa -l --header twiggy/tests/all/fixtures/threads.wasm

Permissions Size User    Date Modified Name
.rw-rw-r--    44 katelyn 21 Jun 23:07  twiggy/tests/all/fixtures/threads.wasm


; wasm-objdump --headers twiggy/tests/all/fixtures/threads.wasm

threads.wasm:	file format wasm 0x1

Sections:

     Type start=0x0000000a end=0x0000000e (size=0x00000004) count: 1
 Function start=0x00000010 end=0x00000012 (size=0x00000002) count: 1
   Memory start=0x00000014 end=0x00000018 (size=0x00000004) count: 1
DataCount start=0x0000001a end=0x0000001b (size=0x00000001) count: 1
     Code start=0x0000001d end=0x00000024 (size=0x00000007) count: 1
     Data start=0x00000026 end=0x0000002c (size=0x00000006) count: 1

And we can print sizes without a should not parse the same key into multiple items panic!

; target/debug/twiggy top twiggy/tests/all/fixtures/threads.wasm

 Shallow Bytes β”‚ Shallow % β”‚ Item
───────────────┼───────────┼───────────────────────
             8 β”Š    18.18% β”Š wasm magic bytes
             7 β”Š    15.91% β”Š code[0]
             6 β”Š    13.64% β”Š code section headers
             5 β”Š    11.36% β”Š data[0]
             3 β”Š     6.82% β”Š type[0]: () -> nil
             3 β”Š     6.82% β”Š type section headers
             3 β”Š     6.82% β”Š memory[0]
             3 β”Š     6.82% β”Š memory section headers
             3 β”Š     6.82% β”Š "data count" section
             3 β”Š     6.82% β”Š data section headers
            44 β”Š   100.00% β”Š Ξ£ [10 Total Rows]

Question: Note that twiggy says the data count section is 3 bytes, but wasm-objdump says 1 byte. When I print the full contents like so:

; wasm-objdump --full-contents twiggy/tests/all/fixtures/threads.wasm

threads.wasm:	file format wasm 0x1

Contents of section Type:
000000a: 0160 0000                                .`..

Contents of section Function:
0000010: 0100                                     ..

Contents of section Memory:
0000014: 0101 0101                                ....

Contents of section DataCount:
000001a: 01                                       .

Contents of section Code:
000001d: 0105 00fc 0900 0b                        .......

Contents of section Data:
0000026: 0100 4100 0b00                           ..A...

It does seem to be a size of 1, so I'm inclined to think this isn't a complete fix yet. That said, the code section starts at 1d, so I'm curious if this is just an alignment issue of some sort.

@data-pup
Copy link
Member Author

I'll clean up the history on this branch later of course, pardon! Very much a WIP that I wanted to get online while I figure out the questions above.

@turbolent
Copy link

What is needed to get this fix in?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Panic when running twiggy on multithreaded wasm module
3 participants