-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
proc_macro/bridge: Eagerly pass TokenStream contents into the client #101419
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
Posting this change as a work-in-progress change, which is not ready to merge. I think we'll want to run this through crater before we move too much further with it (assuming it passes CI), to make sure it doesn't cause breakage in the ecosystem. r? @eddyb |
Another potential concern here is that the code for serializing and deserializing That being said, it should be possible to rework things to avoid using the stack in the future, but keeping it this way for now makes everything much simpler. |
Might be too early for this, but curious anyway: |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 7a64bb64f92fa2c6741c3b4938804514e46b0097 with merge 0c7f4114a5582dfa18524643326a0e87bc6d62f3... |
This comment has been minimized.
This comment has been minimized.
☀️ Try build successful - checks-actions |
Queued 0c7f4114a5582dfa18524643326a0e87bc6d62f3 with parent a2cdcb3, future comparison URL. |
Looks like I missed 2 proc macros in tests with changes to their output formats. Fortunately shouldn't be hard to update them. |
It occurred to me that pretty-printing a large I still have the other changes to do it more efficiently, but we can potentially leave that for a follow-up if the perf on this approach is OK. This still requires the changes to the pretty-printing hack for |
cc #73933 (@Aaron1011 @petrochenkov), as that issue tracks removing the hack completely. |
This change could improve performance, especially in cases like with the cross-thread backend which have expensive RPC. It handles this by moving more of the logic for TokenStream into the client, storing a `Rc<Vec<TokenTree>>` directly, rather than converting to/from the compiler representation over RPC for every change. As this eagerly decomposes interpolated AST fragments, this ended up changing the output of `TokenStream::to_string()`. To keep up compatibility for now, formatting is still performed using RPC and `rustc_ast_pretty`, however in the future we may look into decoupling proc-macro formatting from `rustc_ast_pretty`, and doing it in the client. One side-effect of this was that the workaround for the procedural-masquerade crate had to be updated to work with the new approach, as we couldn't depend on the AST fragment printer to format the input. To do this, a real `,` token is now inserted when passing the enum to a proc-macro rather than depending on the pretty-printing behaviour. From local tests it appears that the new output should be compatible enough to work with older versions of procedural-masquerade. The new conversion between the proc-macro and compiler representations of a `TokenStream` is now handled by the `RpcContext` type provided by the proc-macro server. This type is a distinct value which will be fetched and stored by the server before commands are run, such that the decoders can have access to relevant state. In the future, we may also change the symbol handling code to work off of `RpcContext` rather than being static methods on the `Server` trait.
Finished benchmarking commit (0c7f4114a5582dfa18524643326a0e87bc6d62f3): comparison URL. Overall result: ❌✅ regressions and improvements - ACTION NEEDEDBenchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Footnotes |
These results so far make sense. The runtime performance is better (as noticed by e.g. |
☔ The latest upstream changes (presumably #101986) made this pull request unmergeable. Please resolve the merge conflicts. |
@mystor any updates on this? |
No, I unfortunately haven't had the time to dig into fixing this patch up & getting it ready to be looked into more. |
[perf] Do not reuse internal `TokenStream` in `proc_macro::TokenStream` Use a separate type instead, so that we need to convert from one `TokenStream` to another and back on proc macro boundaries. I want to check how much it affects performance. This PR also implements the suggestion to censor token jointness at proc macro boundary from rust-lang#114571 (since we now have such a boundary). This PR is also semi-related to rust-lang#101419. I don't like the result and will likely close this after the perf test.
Closing this as inactive. Feel free to reöpen this pr or create a new pr if you get the time to work on this. Thanks |
This change could improve performance, especially in cases like with the
cross-thread backend which have expensive RPC. It handles this by moving
more of the logic for TokenStream into the client, storing a
Rc<Vec<TokenTree>>
directly, rather than converting to/from thecompiler representation over RPC for every change.
As this eagerly decomposes interpolated AST fragments, this ended up
changing the output of
TokenStream::to_string()
. To keep upcompatibility for now, formatting is still performed using RPC and
rustc_ast_pretty
, however in the future we may look into decouplingproc-macro formatting from
rustc_ast_pretty
, and doing it in theclient.
One side-effect of this was that the workaround for the
procedural-masquerade crate had to be updated to work with the new
approach, as we couldn't depend on the AST fragment printer to format
the input. To do this, a real
,
token is now inserted when passing theenum to a proc-macro rather than depending on the pretty-printing
behaviour. From local tests it appears that the new output should be
compatible enough to work with older versions of procedural-masquerade.
The new conversion between the proc-macro and compiler representations
of a
TokenStream
is now handled by theRpcContext
type provided bythe proc-macro server. This type is a distinct value which will be
fetched and stored by the server before commands are run, such that the
decoders can have access to relevant state. In the future, we may also
change the symbol handling code to work off of
RpcContext
rather thanbeing static methods on the
Server
trait.