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

Some hir cleanups #124401

Merged
merged 5 commits into from
May 4, 2024
Merged

Some hir cleanups #124401

merged 5 commits into from
May 4, 2024

Conversation

oli-obk
Copy link
Contributor

@oli-obk oli-obk commented Apr 26, 2024

It seemed odd to not put AnonConst in the arena, compared with the other types that we did put into an arena. This way we can also give it a Span without growing a lot of other HIR data structures because of the extra field.

r? compiler

@rustbot rustbot added 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. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. labels Apr 26, 2024
@rustbot
Copy link
Collaborator

rustbot commented Apr 26, 2024

Some changes occurred in src/tools/clippy

cc @rust-lang/clippy

@oli-obk
Copy link
Contributor Author

oli-obk commented Apr 26, 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 Apr 26, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 26, 2024
@bors
Copy link
Collaborator

bors commented Apr 26, 2024

⌛ Trying commit e4f8b93 with merge a7fe502...

@rust-log-analyzer

This comment has been minimized.

@bors
Copy link
Collaborator

bors commented Apr 26, 2024

☀️ Try build successful - checks-actions
Build commit: a7fe502 (a7fe502a60bdbd0f0ab15109ada21158bd03be5a)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (a7fe502): comparison URL.

Overall result: no relevant changes - no 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.

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

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

This benchmark run did not return any relevant results for this metric.

Cycles

This benchmark run did not return any relevant results for this metric.

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 670.891s -> 671.47s (0.09%)
Artifact size: 315.98 MiB -> 316.02 MiB (0.01%)

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Apr 26, 2024
@rustbot
Copy link
Collaborator

rustbot commented Apr 29, 2024

Changes to the size of AST and/or HIR nodes.

cc @nnethercote

@cjgillot
Copy link
Contributor

cjgillot commented May 1, 2024

Should we do the same with ConstBlock?

@oli-obk
Copy link
Contributor Author

oli-obk commented May 2, 2024

I considered that, but there's two reasons not to do it:

  • I did this change because I noticed it in a PR that is removing ConstBlock
  • ConstBlock only exists in an ExprKind variant, which has the Span in the Expr and is small enough to not affect ExprKind size

@cjgillot
Copy link
Contributor

cjgillot commented May 3, 2024

@bors r+

@bors
Copy link
Collaborator

bors commented May 3, 2024

📌 Commit fea1fe7 has been approved by cjgillot

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels May 3, 2024
@bors
Copy link
Collaborator

bors commented May 4, 2024

⌛ Testing commit fea1fe7 with merge 09cd00f...

@bors
Copy link
Collaborator

bors commented May 4, 2024

☀️ Test successful - checks-actions
Approved by: cjgillot
Pushing 09cd00f to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label May 4, 2024
@bors bors merged commit 09cd00f into rust-lang:master May 4, 2024
11 checks passed
@rustbot rustbot added this to the 1.80.0 milestone May 4, 2024
@rust-timer
Copy link
Collaborator

Finished benchmarking commit (09cd00f): comparison URL.

Overall result: ✅ improvements - no action needed

@rustbot label: -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
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-0.1% [-0.2%, -0.1%] 3
Improvements ✅
(secondary)
-1.1% [-2.0%, -0.2%] 2
All ❌✅ (primary) -0.1% [-0.2%, -0.1%] 3

Max RSS (memory usage)

Results

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)
1.8% [1.8%, 1.8%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-1.5% [-2.2%, -0.7%] 3
Improvements ✅
(secondary)
-2.8% [-3.1%, -2.6%] 3
All ❌✅ (primary) -0.7% [-2.2%, 1.8%] 4

Cycles

Results

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)
-0.7% [-0.7%, -0.7%] 1
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -0.7% [-0.7%, -0.7%] 1

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 674.126s -> 678.263s (0.61%)
Artifact size: 315.84 MiB -> 315.83 MiB (-0.00%)

flip1995 pushed a commit to flip1995/rust that referenced this pull request May 17, 2024
Some hir cleanups

It seemed odd to not put `AnonConst` in the arena, compared with the other types that we did put into an arena. This way we can also give it a `Span` without growing a lot of other HIR data structures because of the extra field.

r? compiler
@oli-obk oli-obk deleted the some_hir_cleanups branch May 20, 2024 07:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merged-by-bors This PR was explicitly merged by bors. S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants