-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Improve performance of lambda processing #12809
Comments
@nrmancuso , looks like you need to take look. @dreis2211, grammar unfortunately results in AST, and such tree is our API, we need to be accurate in changing it. Better to improve performance without ast changes |
@dreis2211 I am willing to explore optimization in this area of the grammar, are you willing to test out a jar? |
@romani That was my thinking as well - hence the initial creation of an issue on antlr side. But as said, they sent me here. @nrmancuso More than happy to test, if you have anything. But you can also sent me a patch file. I've checkstyle checked out locally already |
Approving this issue, as fix allows us to reduce the number of method calls in both the grammar and JavaAstVisitor. |
PR is at #12814, @dreis2211 please build a jar from this branch and try it out by |
@nrmancuso No improvement noticeable unless I change |
No :), you change code, you do full testing. |
I do not have access to @dreis2211 ‘s codebase, so I cannot test the performance as it relates to his code. The changes I have proposed in my PR are enough to save us some method calls on their own and stand alone as an improvement on our side. As always, I would provide full check regression testing and ANTLR regression testing for any grammar changes. |
Ups, sorry @nrmancuso, I thought it is comment of issue author. |
@romani If you don't mind me saying, I don't find your comment helpful when I already agreed to help with testing. It's fine for me. I want performance of my project improved and I can't share it, so I find it reasonable to ask for testing help and to see if things are improved on my side that the particular maintainer can't do. EDIT: You just wrote in the same second that you misunderstood things, so all good. |
@dreis2211 just pushed changes to #12814, please try again. |
@nrmancuso I would call this a success! Tests pass as well ;-) Old
New
Could you elaborate why the suggested changes make a difference? I haven't really understood why - given that we only removed a level of abstraction in the grammar and calling some code manually. E.g. the changes still make this an Thanks a lot :) |
@dreis2211 here is why: When we visit the parse tree node that corresponds to the So, you can think about the difference between Now, it is important to understand that the
For this reason, I used ANTLR's left recursion to write the Anyway, I suspect that leaving and re-entering the |
@nrmancuso Thanks for the explanation. And more importantly. Thanks for the improvement in general and the swift reaction. I've already tested your newest update without |
@dreis2211, fix is released please test on your source code |
Already did - thanks 😊 |
Please share timing how it was and how it becomes |
Already did in this issue. Hasn't drastically changed (plus/minus a second on either side). See #12809 (comment) |
Issue checkstyle#12809: Improve performance of lambda processing
Hi 👋
I've been profiling checkstyle lately and noticed that the processing of lambdas is the most expensive part of the grammar in a project of us (that I unfortunately can't share). Funny enough, I noticed that our checkstyle tasks for the test code seems to take longer than the main source although there are only ~400 tests vs ~2000 main sources. (With 65.000 vs. 130.000 lines of code respectively). A common pattern in the slowest test files is this sort of pseudo-code that creates the test scenarios.
The thing that stands out in the tests is the usage of (nested) functional interfaces as shown above. ~7000 in tests vs. ~2500 in the main sources.
I've originally opened antlr/antlr4#4164 but they sent me here to fix/optimize the grammar. I've been playing around with the grammar file and came up with this, which would essentially inline what
lambdaExpression
does - with the addition to useexpr
rather thanexpression
:With this I get 100% performance improvement, but obviously certain checks fail with these changes because I haven't adjusted them to the new reality locally....
Since the grammar is not really intuitive I don't know if I did something wrong. For example I don't understand why
expression
is used originally instead ofexpr
inlambdaBody
.It would be great if you could take this over and check if that's a viable solution. Or if there are any other ways to optimize the lambda processing.
Cheers,
Christoph
The text was updated successfully, but these errors were encountered: