-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
web-tooling-benchmark error #749
Comments
Passes with
|
I'm chalking this one up to "worked by accident before" for now. |
Perhaps is a side-effect of the change in the stack size unit? At any rate, does it make sense to revisit the current default stack size of 256Kb? |
V8 defaults to ~900k and that's sufficient to run web-tooling-benchmark in qjs, so, one the one hand, yes, good idea; on the other hand, maybe that breaks existing users? I can't really come up with a credible example though. On a side note: with glibc, you can: pthread_attr_t attr;
void *stack_top;
size_t stack_size;
pthread_attr_np(pthread_self(), &attr);
pthread_attr_getstack(&attr, &stack_top, &stack_size); Where That's a fairly reliable way of detecting how much stack space is available in JS_Eval but it's not very portable and means taking on a dependency on pthreads in quickjs.c, which not everyone will appreciate. (No real conclusion here, just me musing out aloud.) |
We could try and bump it, not sure what would break TBH. I'm wondering why 900k? 1M is right there and is a nice power of 2 😅 Edit: yeah I'd try to avoid depending on pthreads like that... |
That's exactly what the Windows kernel team thought and is why the main stack is a nice round 1 MiB :) For V8/Chromium, it's actually quite a bit more complicated than that. The default is 984k but they drop down to 864k on 32 bits Windows because of parasitic third-party integration software that gobbles up ~100k stack space, the kind of closed-source trash oldnewthing's Raymond Chen regularly writes about. WASM is another environment where the stack is (usually) exactly 1 MiB. |
In addition: - Move the WASI override to quickjs.c - Allow it to be user defined Ref: #749 (comment)
Here is a PR: #756 |
In addition: - Move the WASI override to quickjs.c - Allow it to be user defined Ref: #749 (comment)
In addition: - Move the WASI override to quickjs.c - Allow it to be user defined Ref: #749 (comment)
In addition: - Move the WASI override to quickjs.c - Allow it to be user defined Ref: quickjs-ng/quickjs#749 (comment)
https://github.com/quickjs-ng/web-tooling-benchmark no longer runs with master:
It's unclear to me why that happens, or when it started, but it definitely ran to completion in the past. web-tooling-benchmark hasn't changed so it must be something on quickjs-ng's side.
The text was updated successfully, but these errors were encountered: