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

Performance Improvement Ideas #58

Closed
wied03 opened this issue Mar 23, 2016 · 4 comments
Closed

Performance Improvement Ideas #58

wied03 opened this issue Mar 23, 2016 · 4 comments

Comments

@wied03
Copy link
Contributor

wied03 commented Mar 23, 2016

A lot of time gets spent loading the example groups and examples that will be tested.

  1. Precompilation/minification
  2. Closure compilation?
  3. Other profiling
  4. When specific examples are focused on, see if they can be filtered out BEFORE opal compilation
  5. Per Remove Kernel#caller patches #36 and Compiler/Line Number Metadata #57, reduce the exception throwing just to get stack traces
@jgaskins
Copy link

Posting my initial thoughts here. Keep in mind that some of this is speculation and isn't a reason to at least give it a shot:

Precompilation/minification

I don't think minification improves performance for anything but transfer over the wire. If it's loading from localhost, this is very little time (as in microseconds to transfer a few hundred KB). Precompilation would definitely be great, though. If the Opal compiler doesn't have to process it and only needs to compile the app, that would help a lot unless the Opal::Builder instance is reused between spec runs, in which case the compiled RSpec will be cached.

Closure compilation?

AFAIK, most JS VMs will not compile a function at all until it is executed. I'd need to run more benchmarks to be sure about it, though.

Other profiling

I can see what I can do about this. I've got a couple ideas, but just to clarify before I spend too much time on it, opal-rspec does use the actual RSpec gem code, right? We may be limited in performance by RSpec internals if so.

When specific examples are focused on, see if they can be filtered out BEFORE opal compilation

This would probably be pretty cool, but I wonder if the effort would be worth it. We could check the benefit by precompiling a spec run with and without unfocused specs (that is, literally remove unfocused specs from the spec code) and timing the compilation time. Then run each of those and check the runtimes.

My hypothesis is that they would differ only slightly and that the RSpec load time would dwarf it no matter what we do.

reduce the exception throwing just to get stack traces

This might have a pretty big performance impact for failing specs. Exceptions are probably the worst-performing thing you can do in a JS VM. Generating an exception, throwing it, and catching it all cause deoptimizations — which is bad enough on its own, but the process of unwinding the stack and generating that stack trace is also slow inside the VM itself.

JRuby (at least pre-9k) suffers from this same problem and for almost the same reason. MRI has internal optimizations for generating stack traces (so you can call caller from anywhere, not just in exceptions), but most other VMs for any language don't.

@wied03
Copy link
Contributor Author

wied03 commented Apr 7, 2016

@jgaskins - Thanks for the info. I'll close this now the the main next step will be to get rid of the metadata exception throws to get trace info.

@wied03 wied03 closed this as completed Apr 7, 2016
@wied03
Copy link
Contributor Author

wied03 commented Apr 22, 2016

@jgaskins - Just so you know, the exception throwing I mentioned above used to happen for every example, not just failing ones. It was being used to give RSpec metadata about where each example is (RSpec normally uses #caller on MRI). On master now, this has been removed and there is no location data for examples until they fail, at which point there is a stack trace.

@wied03
Copy link
Contributor Author

wied03 commented Apr 22, 2016

@jgaskins - https://github.com/karma-runner/karma-closure is doing number 4. In my case, I'd have to do it with a webpack/opal loader because I decided getting into the guts of Karma with https://github.com/wied03/karma-opal-rspec/ was a losing proposition.

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

No branches or pull requests

2 participants