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

perf: use append instead of Concat in appendLookupLocations #632

Merged

Conversation

MarshallOfSound
Copy link
Contributor

@MarshallOfSound MarshallOfSound commented Mar 16, 2025

This reduces alloc/GC churn as append in theory can expand a slice without having to copy the original. Loosely this appears to massively improve performance inside ResolveModuleName. In one example running the LSP locally it drops initialization time from ~90 seconds to ~20 seconds.

I believe this is still safe given the usage of mutex's, but also my understanding of go threading is not the best, so if this isn't safe lemme know. But it appears to be fine both locally and in the test suite.

Before
image

After
image

This reduces alloc/GC churn as append in theory can expand a slice without having to copy the original. Loosely this appears to massively improve performance inside ResolveModuleName.
@jakebailey
Copy link
Member

@andrewbranch would know better but IIRC there's some hazard in this specific case where the way the initial slice comes in could mean that the slices are shared between two things. We'd need to audit to make sure that the initial slice is a copy/clipped so that these appends are safe.

@MarshallOfSound
Copy link
Contributor Author

MarshallOfSound commented Mar 16, 2025

We'd need to audit to make sure that the initial slice is a copy/clipped so that these appends are safe.

Gotcha, I did a check for this before raising and I couldn't see any case where the caller was both consuming and providing the slice into this method, i.e. only one thing ends up holding the slice

Also worth noting that we aren't appending to the input here, rather appending the input to the existing value. So even if something does retain the input, we're effectively copying it in this case still anyway

@jakebailey
Copy link
Member

jakebailey commented Mar 16, 2025

To make me feel better, can you check to see if you do slices.Clip on all of the lookup locations / diags in setLookupLocations that the performance is still as good as the current state?

@MarshallOfSound
Copy link
Contributor Author

Can do, I strongly suspect it won't retain all the perf improvements tho as by definitions we'd be removing the extra space we're currently appending into

@jakebailey jakebailey added this pull request to the merge queue Mar 17, 2025
Merged via the queue into microsoft:main with commit 026e5f9 Mar 17, 2025
21 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants