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

Move profile data analysis into analyzeme from summarizeme #200

Merged
merged 1 commit into from
Aug 15, 2022

Conversation

rylev
Copy link
Member

@rylev rylev commented Jul 26, 2022

This moves analysis of self profile data from the summarize crate to the analyzeme crate. This is needed for rustc-perf which will move from storing self profile data in the database to analyzing the data on demand. The changes can be summarized as follows:

  • summarize::analysis::perform_analysis becomes analyzeme::ProfileData::perform_analysis
  • summarize::query_data::{Results, QueryData} become analyzeme::{AnalysisResults, QueryData}
  • Some code is shuffled in summarize::diff caused by the fact that the diff types and their non-diff counterparts no longer live in the same crate
  • The diff types are moved into the diff module
  • This unfortunately makes analyzeme depend on serde. We could remove this dependency but we'd basically have to repeat AnalysisResults and QueryData definitions in summarizeme`.

Copy link
Member

@Mark-Simulacrum Mark-Simulacrum left a comment

Choose a reason for hiding this comment

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

Overall looks good.

@rylev rylev requested a review from wesleywiser July 26, 2022 11:42
@michaelwoerister
Copy link
Member

Looks good to me. Since summarize in an executable (and thus no other crates can depend on it), we should be able to move stuff out of it without a major version bump, right?

@rylev
Copy link
Member Author

rylev commented Aug 9, 2022

Looks good to me. Since summarize in an executable (and thus no other crates can depend on it), we should be able to move stuff out of it without a major version bump, right?

That was my understanding, yes.

@rylev rylev merged commit 8679959 into master Aug 15, 2022
@rylev rylev deleted the analysis-in-analyzeme branch August 15, 2022 09:41
@rylev rylev restored the analysis-in-analyzeme branch August 15, 2022 09:42
@wesleywiser wesleywiser deleted the analysis-in-analyzeme branch August 15, 2022 18:35
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