-
-
Notifications
You must be signed in to change notification settings - Fork 477
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
perf(transformer/arrow-functions): move arguments transform checks to aid inlining #7322
perf(transformer/arrow-functions): move arguments transform checks to aid inlining #7322
Conversation
Your org has enabled the Graphite merge queue for merging into mainAdd the label “0-merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
CodSpeed Performance ReportMerging #7322 will improve performances by 10.12%Comparing Summary
Benchmarks breakdown
|
bf461b3
to
3ef4e1d
Compare
Merge activity
|
f54762c
to
02f345e
Compare
… aid inlining (#7322) Move the cheap "does arguments need to be transformed" checks introduced in #7321 into `enter_identifier_reference` and `enter_binding_identifier`, and mark those methods `#[inline]`. These hot paths can then usually execute without a function call. This wins back the other half of the perf hit of #7234.
3ef4e1d
to
5b867c4
Compare
02f345e
to
1ac362d
Compare
5b867c4
to
d4e09b8
Compare
… aid inlining (#7322) Move the cheap "does arguments need to be transformed" checks introduced in #7321 into `enter_identifier_reference` and `enter_binding_identifier`, and mark those methods `#[inline]`. These hot paths can then usually execute without a function call. This wins back the other half of the perf hit of #7234.
1ac362d
to
905d8b8
Compare
… aid inlining (#7322) Move the cheap "does arguments need to be transformed" checks introduced in #7321 into `enter_identifier_reference` and `enter_binding_identifier`, and mark those methods `#[inline]`. These hot paths can then usually execute without a function call. This wins back the other half of the perf hit of #7234.
d4e09b8
to
22c8d05
Compare
… aid inlining (#7322) Move the cheap "does arguments need to be transformed" checks introduced in #7321 into `enter_identifier_reference` and `enter_binding_identifier`, and mark those methods `#[inline]`. These hot paths can then usually execute without a function call. This wins back the other half of the perf hit of #7234.
905d8b8
to
26d3e96
Compare
22c8d05
to
44fd962
Compare
Move the cheap "does arguments need to be transformed" checks introduced in #7321 into
enter_identifier_reference
andenter_binding_identifier
, and mark those methods#[inline]
. These hot paths can then usually execute without a function call.This wins back the other half of the perf hit of #7234.