-
Notifications
You must be signed in to change notification settings - Fork 153
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
expose the bytecode in cli #777
Comments
You already can, kind of - it's the |
|
You'll need a debug build (no |
Any chance this is moves into production build by default. Consider it's under a flag, won't drag down perf in normal mode. |
Some of the debug flags may have an impact if enabled in release builds. |
Probably not because it embiggens the library by quite a bit. One of quickjs's design goals is being able to run in constrained environments so we're mindful of size. |
Enabling all the trace/dump facilities does cause a slow down even if the flags are not enabled via a command line option or a call to |
In real cases in embedder we can always turn it off. But we need perf insight during development, which is my real case. |
Can't you use a Debug build for that? |
That's what I do for now. But I want this make it to the default build. Sometimes I want to do the diff with latest qjs binary in release page. |
We would need to separate the bytecode dumping logic from the other dump flags I guess... |
How should we push this forward. Is currently turn on |
No because that turns on some other stuff that is too impactful. Perhaps the bytecode dumping ifdefs can simply go away. Feel free to give it a try in a PR and we can take it from there. |
I deployed a qjs debug build on http://k2.gengjiawen.com:8001/quickjs One thing I notice is that
|
The bytecode dumping routines and the corresponding tables should be controlled by a specific define in addition to
|
Nice!
I guess that is engine specific?
IIRC in QuickJS it all begins with eval, hence you see it there. |
I am thinking adding this will make this optimisation more obvious #752 |
Just so we're on the same page, what exactly are you referring here? Length of individual bytecodes, total length, something else? |
total Bytecode length. I believe means this the same too when v8 used with flags --print-bytecode |
@bnoordhuis can you reopen this, core of this still not implemented. |
What else is left? As I mentioned, I don't plan on enabling it by default. |
All major engines like jsc and v8 provide it in release model. The increase in size is really small I think. |
I'm open to being convinced by numbers but consider how V8 and JSC are centimegabyte monsters so an extra 50-100k is nothing to them, whereas qjs is a few hundred kilobytes in total. |
Thanks for the earlier context, I was able to print out the opcodes with: make debug
./build/qjs -D1 add.js I also think it would be nice to be able to do this with the production build though. What about adding it to |
I'd be okay with enabling bytecode dumping in the release binaries, where I drew the line is at enabling it by default in library builds; those should stay small. Go ahead if you want to open a pull request for the former. |
This will make debug and performance more easily
v8

MonkeyLang

The text was updated successfully, but these errors were encountered: