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

analysis-stats: emit lines of code and item tree counts for workspace; dependencies #19359

Merged

Conversation

davidbarsky
Copy link
Contributor

@davidbarsky davidbarsky commented Mar 14, 2025

Realized that we don't have a good measure for how many lines of code rust-analyzer is processing, so I decided to fix this. When analysis-stats is run, it'll now default to including a section titled "Source Stats" under "Database Loaded". See below for an example of me running analysis-stats on Salsa:

❯ ~/.cargo/bin/rust-analyzer analysis-stats .
Database loaded:     4.17s, 123mb (metadata 556.26ms, 2513kb; build 2.69s, 47kb)
  item trees: 207
  dependency lines of code: 2_588_498, item trees: 5_039
  dependency item stats: traits: 1_562, impl: 23_087, mods: 5_955, macro calls: 9_136, macro rules: 2_175
Item Tree Collection: 4.23s, 934mb
  Total Statistics:
    crates: 90, mods: 235, decls: 5294, bodies: 4116, adts: 865, consts: 486
  Workspace:
    traits: 190, macro_rules macros: 14, proc_macros: 7
    lines of code: 24_128, item trees: 207
    usages: traits: 46, impl: 334, mods: 148, macro calls: 32, macro rules: 20
  Dependencies:
    lines of code: 2_588_498, item trees: 5_039
    declarations: traits: 1_562, impl: 23_087, mods: 5_955, macro calls: 9_136, macro rules: 2_175
Item Collection:     4.04s, 829mb
Body lowering:       614.41ms, 164mb
  exprs: 83892, ??ty: 114 (0%), ?ty: 99 (0%), !ty: 1
  pats: 17244, ??ty: 33 (0%), ?ty: 2 (0%), !ty: 0
Inference:           4.20s, 334mb
MIR lowering:        1.79s, 111mb
Mir failed bodies: 21 (0%)
Data layouts:        23.66ms, 6mb
Failed data layouts: 2 (0%)
Const evaluation:    7.10ms, 1571kb
Failed const evals: 0 (0%)
Total:               15.29s, 1134mb

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Mar 14, 2025
@davidbarsky davidbarsky added this pull request to the merge queue Mar 14, 2025
@lnicola
Copy link
Member

lnicola commented Mar 14, 2025

We've had this since 2021 and I didn't know about it.

@davidbarsky
Copy link
Contributor Author

We have this since 2021 and I didn't know about it.

"This" being --source-stats? If so, maybe it should be on by default?

@lnicola
Copy link
Member

lnicola commented Mar 14, 2025

That's what I wanted to ask (and the reason I looked at git blame).

@davidbarsky
Copy link
Contributor Author

I mean, I think we should have this on by default. I'll do that right now, one second.

@davidbarsky davidbarsky removed this pull request from the merge queue due to a manual request Mar 14, 2025
@bjorn3
Copy link
Member

bjorn3 commented Mar 14, 2025

How hard would it be to format 12345678 as 12_345_678? That makes it much easier to quickly see whether the amount is in the tens of thousands, hundreds of thousands or in the millions.

@davidbarsky davidbarsky force-pushed the davidbarsky/more-stats-in-analysis-stats branch from 1660c5f to ea5bf3a Compare March 14, 2025 19:32
@davidbarsky
Copy link
Contributor Author

How hard would it be to format 12345678 as 12_345_678? That makes it much easier to quickly see whether the amount is in the tens of thousands, hundreds of thousands or in the millions.

A little fiddly if we don't want to take any dependencies. If we do take a dependency, a whole bunch of localization stuff is also (necessarily, IMO) pulled in.

@davidbarsky
Copy link
Contributor Author

How hard would it be to format 12345678 as 12_345_678? That makes it much easier to quickly see whether the amount is in the tens of thousands, hundreds of thousands or in the millions.

A little fiddly if we don't want to take any dependencies. If we do take a dependency, a whole bunch of localization stuff is also (necessarily, IMO) pulled in.

Wasn't too bad; just had to remember some interview questions.

@davidbarsky davidbarsky force-pushed the davidbarsky/more-stats-in-analysis-stats branch from 7dfff84 to bd19cf3 Compare March 14, 2025 20:45
@davidbarsky davidbarsky added this pull request to the merge queue Mar 14, 2025
@davidbarsky davidbarsky removed this pull request from the merge queue due to a manual request Mar 14, 2025
@davidbarsky
Copy link
Contributor Author

I updated this PR to print additional statistics about the number of traits, macro calls, and impls in both dependencies and the workspace under "Source Stats". The formatting feels a little iffy:

Database loaded:     1.62s, 95mb (metadata 550.95ms, 2520kb; build 395.83ms, -218kb)
  item trees: 206
Source stats:
  dependency lines of code: 1_961_884, item trees: 3_792
  dependency item stats: traits: 1_170, impl: 17_525, mods: 4_234, macro calls: 7_454, macro rules: 1_708
  workspace lines of code: 23_727, item trees: 206
  workspace stats: traits: 47, impl: 334, mods: 145, macro calls: 31, macro rules: 20
Item Tree Collection (workspace): 3.23s, 703mb
  crates: 89, mods: 231, decls: 5011, bodies: 4026, adts: 687, consts: 472,
  traits: 183, macro_rules macros: 14, proc_macros: 7
Item Collection:     2.79s, 555mb
Body lowering:       610.26ms, 166mb
  exprs: 82131, ??ty: 111 (0%), ?ty: 98 (0%), !ty: 1
  pats: 16987, ??ty: 32 (0%), ?ty: 2 (0%), !ty: 0
Inference:           4.58s, 358mb
MIR lowering:        1.39s, 114mb
Mir failed bodies: 20 (0%)
Data layouts:        15.90ms, 5mb
Failed data layouts: 2 (0%)
Const evaluation:    7.79ms, 1698kb
Failed const evals: 0 (0%)
Total:               12.63s, 1905mb

Any suggestions for improvements?

@Veykril
Copy link
Member

Veykril commented Mar 17, 2025

That logs the workspace item trees twice, it also logs some workspace stats twice now which disagree with each other 😅

@davidbarsky
Copy link
Contributor Author

davidbarsky commented Mar 17, 2025

The numbers under Source stats are the usages of macros, traits, and implementations in the workspace and dependencies, whereas the numbers under Item Tree Collection (workspace) are the declarations.

I'll redo how the output is rendered by creating dedicated "usages" and declarations" sections. I probably shouldn't be too attached to the output styling of analysis-stats!

@davidbarsky davidbarsky force-pushed the davidbarsky/more-stats-in-analysis-stats branch from da5d8f2 to 7d050fe Compare March 24, 2025 20:31
@davidbarsky
Copy link
Contributor Author

Updated the printing of analysis-stats to distinguish between totals, workspace, and dependencies in the PR description. If there are no objections, I'd like to get this landed.

@Veykril Veykril added this pull request to the merge queue Mar 25, 2025
Merged via the queue into rust-lang:master with commit 2afe50b Mar 25, 2025
9 checks passed
@davidbarsky davidbarsky deleted the davidbarsky/more-stats-in-analysis-stats branch March 26, 2025 00:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants