Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | move debug_dump to fmt::Debug | Aleksey Kladov | 2019-07-20 | 1 | -1/+1 |
| | |||||
* | migrate ra_cli to the new rowan | Aleksey Kladov | 2019-07-19 | 1 | -3/+3 |
| | |||||
* | make Parse fields private | Aleksey Kladov | 2019-07-12 | 1 | -1/+1 |
| | | | | this is in preparation for the new rowan API | ||||
* | Some clippy fixes for 1.36 | Jeremy Kolb | 2019-07-04 | 1 | -1/+1 |
| | |||||
* | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 1 | -3/+3 |
| | | | | | | 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 queries | Aleksey Kladov | 2019-06-30 | 1 | -1/+3 |
| | |||||
* | add analysis-bench to benchmark incremental analysis | Aleksey Kladov | 2019-06-16 | 1 | -1/+46 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Cleanup | Muhammad Mominul Huque | 2019-06-15 | 1 | -1/+1 |
| | |||||
* | Get rid of failure: ra_batch ra_cli | Muhammad Mominul Huque | 2019-06-15 | 1 | -2/+2 |
| | |||||
* | fix typos in mbe tests | Aleksey Kladov | 2019-05-28 | 1 | -3/+3 |
| | |||||
* | make it build again | Pascal Hertleif | 2019-05-27 | 1 | -1/+1 |
| | |||||
* | More clever highlighting, incl draft for structs | Pascal Hertleif | 2019-05-27 | 1 | -3/+6 |
| | |||||
* | Colorize Rust code as HTML | Aleksey Kladov | 2019-05-25 | 1 | -1/+7 |
| | |||||
* | show current function in analysis-stats progress bar | Aleksey Kladov | 2019-05-14 | 1 | -1/+1 |
| | |||||
* | drop obsolete render test subcommand | Aleksey Kladov | 2019-05-12 | 1 | -30/+1 |
| | |||||
* | allow to specify path in analysis-stats | Aleksey Kladov | 2019-05-12 | 1 | -2/+4 |
| | |||||
* | Allow targeting a specific function with analysis-stats | Florian Diebold | 2019-05-07 | 1 | -2/+5 |
| | | | | This can be useful for debugging. | ||||
* | Merge #1068 | bors[bot] | 2019-04-03 | 1 | -4/+3 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | 1068: profiling crate first draft r=matklad a=pasa I've made this first draft for #961 Could you look at it? Is this something what you are looking for? It has lack of tests. I can't figure out how to test stderr output in rust right now. Do you have some clues? Additionally I'm thinking about to implement procedural macros to annotate methods with this profiler. Will it be helpful? Co-authored-by: Sergey Parilin <[email protected]> | ||||
| * | Merge remote-tracking branch 'upstream/master' into issue961_profiling | Sergey Parilin | 2019-04-02 | 1 | -1/+1 |
| |\ | |||||
| * | | PR issuse resolved | Sergey Parilin | 2019-04-02 | 1 | -4/+3 |
| | | | |||||
* | | | switch to new rowan | Aleksey Kladov | 2019-04-01 | 1 | -34/+1 |
| |/ |/| | |||||
* | | structure moved to ra_ide_api | Sergey Parilin | 2019-03-25 | 1 | -1/+1 |
|/ | | | | ra_ide_api_light removed completely | ||||
* | move extend selection from ra_ide_api_light to ra_ide_api | Aleksey Kladov | 2019-03-20 | 1 | -8/+14 |
| | |||||
* | kill utils module | Aleksey Kladov | 2019-02-21 | 1 | -3/+3 |
| | |||||
* | Add an ra_cli command that analyses all crates in the current workspace | Florian Diebold | 2019-02-10 | 1 | -0/+11 |
| | | | | ... and prints various stats about how many expressions have a type etc. | ||||
* | reformat the world | Aleksey Kladov | 2019-02-08 | 1 | -16/+3 |
| | |||||
* | rename TreePtr -> TreeArc | Aleksey Kladov | 2019-01-11 | 1 | -2/+2 |
| | | | | This is much clearer about the semantics | ||||
* | fix usages after rename | Aleksey Kladov | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | migrate ra_cli to new rowan | Aleksey Kladov | 2019-01-08 | 1 | -5/+5 |
| | |||||
* | generalize extend selection to work with nodes | Aleksey Kladov | 2018-12-31 | 1 | -1/+1 |
| | |||||
* | modernize even more | Aleksey Kladov | 2018-12-06 | 1 | -9/+1 |
| | |||||
* | Rename File -> SourceFileNode | Aleksey Kladov | 2018-11-07 | 1 | -5/+5 |
| | |||||
* | Cargo Format | Jeremy A. Kolb | 2018-10-16 | 1 | -15/+12 |
| | | | | Run `cargo fmt` and ignore generated files | ||||
* | Add emacs function for extend shirnk selection | Aleksey Kladov | 2018-09-18 | 1 | -2/+31 |
| | |||||
* | rename all things | Aleksey Kladov | 2018-09-16 | 1 | -0/+97 |