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

Permit imports of Numbers as const globals? #16

Closed
littledan opened this issue Oct 15, 2018 · 4 comments
Closed

Permit imports of Numbers as const globals? #16

littledan opened this issue Oct 15, 2018 · 4 comments

Comments

@littledan
Copy link
Collaborator

If something is not a WebAssembly.Global object, and it's imported with a numeric mutable global type, it makes sense to call this an error, since there's no way a live binding could be of just numeric type. I like the idea of making this possible with a combination of host bindings and anyref.

For const global numeric imports, though, if we take the strategy in #13, I don't see the problem with snapshotting them (after casting them to the right numeric type). Actually, if we did snapshot them, it'd be more consistent with how the JS API works, which implicitly creates const globals for Numbers which are passed into the API.

Thoughts?

littledan added a commit to littledan/esm-integration that referenced this issue Oct 16, 2018
- Initialize Wasm exports in TDZ; closes WebAssembly#18
- Document motivation for no circular modules and circular imports
  of functions as a follow-on; closes WebAssembly#17
- Avoid use of the term "live binding"; closes WebAssembly#19
- Permit imports of Numbers as constant globals; closes WebAssembly#16
@xtuc
Copy link
Contributor

xtuc commented Oct 20, 2018

Yes, It's a type error.

What about:

export let a = 1;

Since the value will be copied it won't be mutable, I hope that it won't create confusion for users.

@littledan
Copy link
Collaborator Author

@xtuc Yes, I can see how some people may expect a live binding rather than a snapshot. That's sort of a different, cross-cutting issue, though: functions are also proposed to have their semantics based on a snapshot, rather than a live binding. Also, if you replace one WebAssembly.Global object with another in your export, it's proposed that importing modules will still point to the original one. Overall, supporting live bindings by default would lead to significant additional complexity for WebAssembly semantics (what would it mean for Tables and Memory?!).

@xtuc
Copy link
Contributor

xtuc commented Oct 23, 2018

The thing is that user won't keep a handle on a bare number export, as opposed to WebAssembly.{Table,Memory,Global}.

If i'm not mistaken,

export let a = 1;
a = 2;

will snapshot a constant 2, but they won't be able to mutate it after.

export let a = 1;
export function t() {
  a = 2;
}

This has no precedence in JS (that i'm aware of at least) and I think that it will confuse some users.

Also the change will only be visible in JS.


Live bindings "by default" could be archived using functions, which would return the up-to-date number. This has a noticable perf impact.

@littledan
Copy link
Collaborator Author

Bindings are not live in these semantics for functions either. Do you think that will be confusing?

xtuc pushed a commit to xtuc/esm-integration that referenced this issue Aug 13, 2019
- Initialize Wasm exports in TDZ; closes WebAssembly#18
- Document motivation for no circular modules and circular imports
  of functions as a follow-on; closes WebAssembly#17
- Avoid use of the term "live binding"; closes WebAssembly#19
- Permit imports of Numbers as constant globals; closes WebAssembly#16
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

No branches or pull requests

2 participants