aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli/src/analysis_stats.rs
Commit message (Collapse)AuthorAgeFilesLines
* Extend analysis-stats a bitFlorian Diebold2020-02-151-9/+74
| | | | | | | | | | | | This adds some tools helpful when debugging nondeterminism in analysis-stats: - a `--randomize` option that analyses everything in random order - a `-vv` option that prints even more detail Also add a debug log if Chalk fuel is exhausted (which would be a source of nondeterminism, but didn't happen in my tests). I found one source of nondeterminism (rust-lang/chalk#331), but there are still other cases remaining.
* Fix extra parentheses warningsLaurențiu Nicola2020-01-311-2/+2
|
* Dropping a reference does nothing.kjeremy2020-01-131-1/+0
| | | | Allows clippy to continue compilation
* Remove ty from code_modelAleksey Kladov2019-12-081-4/+11
|
* Remove progress bar and add a true counterEdwin Cheng2019-11-261-3/+3
|
* Remove commented codeEdwin Cheng2019-11-261-3/+0
|
* Use a simple progress bar instead of indicatifEdwin Cheng2019-11-261-10/+7
|
* SimplifyAleksey Kladov2019-11-241-5/+6
|
* SimplifyAleksey Kladov2019-11-241-1/+1
|
* Rename Source::ast -> Source::valueAleksey Kladov2019-11-201-2/+2
|
* Add bound checkEdwin Cheng2019-11-171-2/+2
|
* add --with-deps option to analysis-statsAleksey Kladov2019-10-241-8/+8
|
* relative-path 1.0kjeremy2019-10-171-1/+1
|
* Prepare SourceDatabase API for lazy file loadingAleksey Kladov2019-10-141-1/+1
|
* remove one more dependency on source rootsAleksey Kladov2019-10-141-8/+21
|
* Added test for check doc strings in crates.Alexander Andreev2019-09-301-0/+2
| | | | #1856
* Remove TraitItem and ImplItem in favor of AssocItemFlorian Diebold2019-09-171-2/+2
|
* add quiet mode to analysis-statsAleksey Kladov2019-09-121-8/+17
|
* Make type walking infrastructure a bit nicerFlorian Diebold2019-09-031-1/+1
| | | | | If/when we switch to using Chalk's Ty, we'll need to replace this by its `Fold` trait, but I didn't want to import the whole thing just yet.
* Correctly build BodySourceMap for macro-expanded expressionsAleksey Kladov2019-09-031-2/+5
|
* Add an expr_source method analogous to the source methods in the code modelFlorian Diebold2019-09-021-27/+26
| | | | ... and use that instead of exposing the source map.
* Report type mismatches in analysis-statsFlorian Diebold2019-09-021-1/+37
| | | | Only the number usually; each one individually when running with -v.
* Update crates/ra_cli/src/analysis_stats.rsLaurențiu Nicola2019-08-051-1/+1
| | | Co-Authored-By: Aleksey Kladov <[email protected]>
* Display the parsing time in ra_cli analysis-statsLaurențiu Nicola2019-08-051-1/+5
|
* rename range -> text_rangeAleksey Kladov2019-07-201-1/+1
|
* account for dependencies when showing memory usageAleksey Kladov2019-07-121-0/+4
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-041-2/+2
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* print memory usage for queriesAleksey Kladov2019-06-301-2/+9
|
* Move memory usage statistics to ra_profAleksey Kladov2019-06-301-1/+1
|
* add analysis-bench to benchmark incremental analysisAleksey Kladov2019-06-161-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Can be used like this: ``` $ cargo run --release -p ra_cli -- \ analysis-bench ../chalk/ \ --complete ../chalk/chalk-engine/src/logic.rs:94:0 loading: 225.970093ms from scratch: 8.492373325s no change: 445.265µs trivial change: 95.631242ms ``` Or like this: ``` $ cargo run --release -p ra_cli -- \ analysis-bench ../chalk/ \ --highlight ../chalk/chalk-engine/src/logic.rs loading: 209.873484ms from scratch: 9.504916942s no change: 7.731119ms trivial change: 124.984039ms ``` "from scratch" includes initial analysis of the relevant bits of the project "no change" just asks the same question for the second time. It measures overhead on assembling the answer outside of salsa. "trivial change" doesn't do an actual salsa change, it just advances the revision. This test how fast is salsa at validating things.
* reuse AnalysisHost in batch analysisAleksey Kladov2019-06-151-13/+13
|
* fix compilationAleksey Kladov2019-06-111-4/+4
|
* Fix clippy::single_matchAlan Du2019-06-041-6/+4
|
* output the progress for realAleksey Kladov2019-05-201-1/+4
|
* show current function in analysis-stats progress barAleksey Kladov2019-05-141-2/+7
|
* allow to specify path in analysis-statsAleksey Kladov2019-05-121-2/+2
|
* Allow targeting a specific function with analysis-statsFlorian Diebold2019-05-071-2/+7
| | | | This can be useful for debugging.
* switch to new rowanAleksey Kladov2019-04-011-2/+5
|
* Turn ImplBlock into a copy type just containing IDsFlorian Diebold2019-02-161-2/+2
| | | | | | | This makes it more like the other code model types. Also make Module::definition_source/declaration_source return HirFileIds, to make them more like the other source functions.
* Add an ra_cli command that analyses all crates in the current workspaceFlorian Diebold2019-02-101-0/+100
... and prints various stats about how many expressions have a type etc.