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

Mark span parent in def_collector. #127241

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

cjgillot
Copy link
Contributor

@cjgillot cjgillot commented Jul 2, 2024

The current device of marking spans with a parent def-id during lowering has been frustrating me for quite some time, as it's very easy to forget marking some spans.

This PR moves such marking to the def_collector, which is responsible for creating def-ids on partially expanded AST. This is much more robust as long as visitors are exhaustive.

r? ghost

@rustbot rustbot added A-translation Area: Translation infrastructure, and migrating existing diagnostics to SessionDiagnostic S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Jul 2, 2024
@cjgillot
Copy link
Contributor Author

cjgillot commented Jul 2, 2024

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Jul 2, 2024
@bors
Copy link
Contributor

bors commented Jul 2, 2024

⌛ Trying commit 95dc7f7 with merge ec84e1c...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jul 2, 2024
Mark span parent in def_collector.

The current device of marking spans with a parent def-id during lowering has been frustrating me for quite some time, as it's very easy to forget marking some spans.

This PR moves such marking to the def_collector, which is responsible for creating def-ids on partially expanded AST. This is much more robust as long as visitors are exhaustive.

r? ghost
@rust-log-analyzer

This comment has been minimized.

@cjgillot
Copy link
Contributor Author

cjgillot commented Jul 2, 2024

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@bors
Copy link
Contributor

bors commented Jul 2, 2024

⌛ Trying commit 585fe45 with merge 04122fb...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jul 2, 2024
Mark span parent in def_collector.

The current device of marking spans with a parent def-id during lowering has been frustrating me for quite some time, as it's very easy to forget marking some spans.

This PR moves such marking to the def_collector, which is responsible for creating def-ids on partially expanded AST. This is much more robust as long as visitors are exhaustive.

r? ghost
@rust-log-analyzer

This comment has been minimized.

@bors
Copy link
Contributor

bors commented Jul 2, 2024

☀️ Try build successful - checks-actions
Build commit: 04122fb (04122fbfda6e59dcf9c54b89353e6d1281c9ebc8)

@rust-timer

This comment has been minimized.

@petrochenkov petrochenkov self-assigned this Jul 2, 2024
@petrochenkov petrochenkov added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 2, 2024
@rust-timer
Copy link
Collaborator

Finished benchmarking commit (04122fb): comparison URL.

Overall result: ❌✅ regressions and improvements - ACTION NEEDED

Benchmarking 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 @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
1.0% [0.2%, 2.5%] 163
Regressions ❌
(secondary)
1.3% [0.3%, 6.2%] 77
Improvements ✅
(primary)
-2.6% [-4.8%, -0.3%] 12
Improvements ✅
(secondary)
-0.5% [-0.7%, -0.4%] 2
All ❌✅ (primary) 0.7% [-4.8%, 2.5%] 175

Max RSS (memory usage)

Results (primary 0.3%, secondary -0.7%)

This 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.

mean range count
Regressions ❌
(primary)
2.1% [1.4%, 2.6%] 6
Regressions ❌
(secondary)
4.2% [4.0%, 4.6%] 3
Improvements ✅
(primary)
-2.4% [-4.4%, -1.0%] 4
Improvements ✅
(secondary)
-3.6% [-4.3%, -3.2%] 5
All ❌✅ (primary) 0.3% [-4.4%, 2.6%] 10

Cycles

Results (primary 0.6%, secondary 3.2%)

This 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.

mean range count
Regressions ❌
(primary)
2.0% [0.7%, 3.4%] 28
Regressions ❌
(secondary)
3.2% [2.1%, 4.3%] 11
Improvements ✅
(primary)
-4.9% [-6.0%, -1.4%] 7
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 0.6% [-6.0%, 3.4%] 35

Binary size

Results (primary -0.2%, secondary -0.2%)

This 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.

mean range count
Regressions ❌
(primary)
0.1% [0.0%, 0.2%] 7
Regressions ❌
(secondary)
0.1% [0.1%, 0.2%] 6
Improvements ✅
(primary)
-0.2% [-1.7%, -0.0%] 41
Improvements ✅
(secondary)
-0.3% [-0.9%, -0.0%] 13
All ❌✅ (primary) -0.2% [-1.7%, 0.2%] 48

Bootstrap: 695.108s -> 697.834s (0.39%)
Artifact size: 327.55 MiB -> 327.54 MiB (-0.00%)

@rustbot rustbot added perf-regression Performance regression. and removed S-waiting-on-perf Status: Waiting on a perf run to be completed. labels Jul 2, 2024
),
span: p.segments[..proj_start]
.last()
.map_or(path_span_lo, |segment| path_span_lo.to(segment.span())),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would appear that half the regression in incr-unchecked comes from Span::to in this line. The other half comes from using a MutVisitor in DefCollector, which had to be expected.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The other half comes from using a MutVisitor in DefCollector

I tried to address this in #127371, not sure if it will help.

@rust-log-analyzer

This comment has been minimized.

@cjgillot
Copy link
Contributor Author

cjgillot commented Jul 3, 2024

@petrochenkov do I need to add something to this PR to handle metavar spans, or is this pass enough?

@cjgillot
Copy link
Contributor Author

cjgillot commented Jul 3, 2024

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Jul 3, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Jul 3, 2024
Mark span parent in def_collector.

The current device of marking spans with a parent def-id during lowering has been frustrating me for quite some time, as it's very easy to forget marking some spans.

This PR moves such marking to the def_collector, which is responsible for creating def-ids on partially expanded AST. This is much more robust as long as visitors are exhaustive.

r? ghost
@bors
Copy link
Contributor

bors commented Jul 3, 2024

⌛ Trying commit 928d08d with merge 83cb4f9...

@petrochenkov petrochenkov added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jul 3, 2024
@bors
Copy link
Contributor

bors commented Jul 3, 2024

☀️ Try build successful - checks-actions
Build commit: 83cb4f9 (83cb4f913e495af2abdafd47d5df6a0fe6b863f6)

@rust-timer

This comment has been minimized.

GenericBound::Trait(ty, _modifier) => vis.visit_poly_trait_ref(ty),
GenericBound::Trait(ty, modifier) => {
vis.visit_poly_trait_ref(ty);
visit_trait_bound_modifier(modifier, vis);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you visit things in the standard order (e.g. nodes in source code order, spans last, etc)?

@@ -513,6 +513,17 @@ impl MultiSpan {
pub fn clone_ignoring_labels(&self) -> Self {
Self { primary_spans: self.primary_spans.clone(), ..MultiSpan::new() }
}

pub fn clone_ignoring_parents(&self) -> Self {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit needs some explanation.

@@ -183,7 +183,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {

pub(crate) fn build_reduced_graph(
&mut self,
fragment: &AstFragment,
fragment: &mut AstFragment,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I admit I dislike the mutable def collector a lot.

Maybe make a separate small mut visitor for span marking instead of turning def collector mutable?
Def collector has only 12 calls to with_parent, shouldn't be hard to reproduce.

ExprKind::Index(el, er, brackets_span) => hir::ExprKind::Index(
self.lower_expr(el),
self.lower_expr(er),
self.lower_span(*brackets_span),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why new lower_spans are added here if they are removed in a next commit.

@@ -128,6 +128,10 @@ impl<'a, 'b, 'tcx> DefCollector<'a, 'b, 'tcx> {
}

impl<'a, 'b, 'tcx> mut_visit::MutVisitor for DefCollector<'a, 'b, 'tcx> {
fn visit_span(&mut self, span: &mut Span) {
*span = span.with_parent(Some(self.parent_def));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As I understand all the old spans here should have no parent, maybe add an assert?
(Can be turned into a debug assert before merging.)

@petrochenkov
Copy link
Contributor

As I understand this change doesn't obsolete the invocation span parent setting logic in fn collect_invocations, because def collector cannot visit macro (or attribute) calls because they are already replaced with placeholders.

@petrochenkov
Copy link
Contributor

petrochenkov commented Jul 3, 2024

Def collector also doesn't enable MutVisitor::VISIT_TOKENS.
This is probably good because visiting lazy token streams in AST nodes is probably not what we want.
But it also means that the stuff in macro definition bodies is not parented (it appears as values in the metavar_spans table).

It would generally make sense to parent token spans in macro definitions, but that's sort of an offtopic for this PR.

It would also make sense to parent token spans in macro arguments as well (which we don't do due to #127241 (comment), in addition to VISIT_TOKENS),
These spans appear as keys in the metavar_spans table.

@petrochenkov
Copy link
Contributor

petrochenkov commented Jul 3, 2024

@petrochenkov do I need to add something to this PR to handle metavar spans, or is this pass enough?

Due to the comments above, I think both key and value spans in the metavar_spans table are still unparented.
The values will stay unparented because macro definitions are not visited by any span parenting logic.
The key spans can get parents later when they are integrated into AST (but not in the table, that's why #119412 sets key parents to None before table lookups).

So probably nothing to do right now.
Longer term I think we need to visit tokens in both macro definitions and in macro calls.
Moreover parents set in macro calls seem more resistant to code changes than those set later in AST building, so we should keep them and not override later.
(I'm actually interested why parent updates like Some(parent) -> Some(other_parent) happen now, maybe we need to get rid of them somehow or keep the old parent.)

@petrochenkov
Copy link
Contributor

Once this work is generally ready it's probably better to split it into multiple parts (in any order)

  • Misc optimizations like f7a53c3
  • Misc changes to specific spans like kw_span or lower_expr_await
  • The main infrastructural change (moving parenting from AST lowering to collect_invocations)

@petrochenkov petrochenkov added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 3, 2024
@rust-timer
Copy link
Collaborator

Finished benchmarking commit (83cb4f9): comparison URL.

Overall result: ❌✅ regressions and improvements - ACTION NEEDED

Benchmarking 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 @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
0.7% [0.2%, 2.1%] 97
Regressions ❌
(secondary)
0.9% [0.3%, 1.9%] 42
Improvements ✅
(primary)
-1.9% [-5.1%, -0.4%] 19
Improvements ✅
(secondary)
-0.6% [-1.1%, -0.2%] 2
All ❌✅ (primary) 0.2% [-5.1%, 2.1%] 116

Max RSS (memory usage)

Results (primary -1.8%, secondary -3.3%)

This 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.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-1.8% [-2.3%, -0.9%] 4
Improvements ✅
(secondary)
-3.3% [-4.2%, -2.4%] 2
All ❌✅ (primary) -1.8% [-2.3%, -0.9%] 4

Cycles

Results (primary 0.1%, secondary -1.2%)

This 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.

mean range count
Regressions ❌
(primary)
2.1% [1.2%, 3.5%] 17
Regressions ❌
(secondary)
2.4% [2.1%, 2.7%] 2
Improvements ✅
(primary)
-4.7% [-6.1%, -1.5%] 7
Improvements ✅
(secondary)
-3.5% [-4.0%, -3.2%] 3
All ❌✅ (primary) 0.1% [-6.1%, 3.5%] 24

Binary size

Results (primary -0.1%, secondary -0.1%)

This 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.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.1% [0.1%, 0.1%] 4
Improvements ✅
(primary)
-0.1% [-0.1%, -0.0%] 25
Improvements ✅
(secondary)
-0.3% [-0.5%, -0.0%] 8
All ❌✅ (primary) -0.1% [-0.1%, -0.0%] 25

Bootstrap: 697.439s -> 698.541s (0.16%)
Artifact size: 327.71 MiB -> 327.66 MiB (-0.02%)

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Jul 3, 2024
@petrochenkov
Copy link
Contributor

petrochenkov commented Jul 19, 2024

I wonder if it would be possible to assign span parents even earlier, during parsing.

That way we'd automatically "visit" everything including tokens in macros, and also avoided mutating AST (if immutable arena-allocated AST is a goal).

We'd keep a current parent id in the parser state and update it when recusing into things like items.
The parent id doesn't even need to be a DefId or match the DefId hierarchy exactly, it just needs to be close enough to its inner spans to resist small changes and we can map these ids to DefIds later (e.g. in def collector).

Upd: if we do this and remove nonterminals (AST pieces inside tokens), then we'd be able to remove MutVisitor::visit_span as well (it will only be needed for token streams, but not AST).

@cjgillot
Copy link
Contributor Author

I wonder if it would be possible to assign span parents even earlier, during parsing.

I don't see how: that would need to assign a parent even before the parent def-id is created.

bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 24, 2024
Do not call source_span when not tracking dependencies.

Split from rust-lang#127241
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 26, 2024
…enkov

Do not call source_span when not tracking dependencies.

Split from rust-lang#127241
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 26, 2024
…enkov

Do not call source_span when not tracking dependencies.

Split from rust-lang#127241
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 26, 2024
…enkov

Do not call source_span when not tracking dependencies.

Split from rust-lang#127241
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 27, 2024
…enkov

Do not call source_span when not tracking dependencies.

Split from rust-lang#127241
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 27, 2024
…enkov

Do not call source_span when not tracking dependencies.

Split from rust-lang#127241
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-translation Area: Translation infrastructure, and migrating existing diagnostics to SessionDiagnostic perf-regression Performance regression. S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants