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

Replace musl seek syscall with wasi fd_seek #9555

Merged
merged 15 commits into from
Oct 8, 2019
Merged

Replace musl seek syscall with wasi fd_seek #9555

merged 15 commits into from
Oct 8, 2019

Conversation

kripken
Copy link
Member

@kripken kripken commented Oct 1, 2019

No description provided.

@kripken
Copy link
Member Author

kripken commented Oct 1, 2019

I ran into a problem here, SDL assumes the values of SEEK_*. It's a quite portable codebase so I guess those values are actually pretty consistent across many platforms, at least where it uses stdio for I/O? I don't see any docs mention that those values can be relied upon though. And in fact __WASI_WHENCE_CUR != SEEK_CUR etc.

Possible fix for SDL in emscripten-ports/SDL2#96 but I'm not sure yet if this is a real bug, or if SDL will want such a fix.

Another option is for us to convert between them in our libc. That adds a little work and code size which is unfortunate, so I'd like to avoid that.

@sunfishcode is there a reason the wasi constants don't match existing conventions?

…as compatible with ours; after this change, it no longer is
@kripken
Copy link
Member Author

kripken commented Oct 1, 2019

This PR also noticed that the llvm_nativizer tool, which worked only on fastcomp, stopped working. That tool basically just took LLVM IR for asm.js and compiled it natively, relying on libcs being compatible enough, which this PR breaks. As this tool is fastcomp-only and not really anything reliable, I just removed it.

Copy link
Member

@dschuff dschuff left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Otherwise fine, modulo what we actually want the wasi values to be.

// lacks the attribute to set the import module and base names) and
// in LTO mode (as bitcode does not preserve them).

if (!WASM_BACKEND || !WASM_OBJECT_FILES) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be a side question or one for @sbc100 but do you know if (WASM_BACKEND && !WASM_OBJECT_FILES) uses the emscripten driver code to do the bitcode linking, or the one in clang/lld? IIUC the upstream backend bitcode does preserve the prefixing, because how else would the attribute propagate from clang to the backend? I guess I just don't understand why (WASM_BACKEND && !WASM_OBJECT_FILES) doesn't work here.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a bug in wasm-ld where linking with -r/--relocatable doesn't preserve these attributes. I'm working on a fix at the moment.

@kripken
Copy link
Member Author

kripken commented Oct 8, 2019

As there is agreement to change the wasi constants, I made this PR use the fixed-up values, which are identical to the old musl and SDL ones.

@kripken kripken merged commit 31602a1 into incoming Oct 8, 2019
@kripken kripken deleted the fd_seek2 branch October 8, 2019 19:08
belraquib pushed a commit to belraquib/emscripten that referenced this pull request Dec 23, 2020
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.

3 participants