Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | basics working | Florian Diebold | 2020-01-11 | 1 | -5/+113 | |
| | | ||||||
* | | more WIP | Florian Diebold | 2020-01-11 | 2 | -12/+122 | |
| | | ||||||
* | | find_path WIP | Florian Diebold | 2020-01-11 | 3 | -0/+58 | |
|/ | ||||||
* | Add `_query` suffix to `compute_crate_def_map` for consistency | Michal Terepeta | 2020-01-03 | 2 | -2/+2 | |
| | | | | Signed-off-by: Michal Terepeta <[email protected]> | |||||
* | Split `crate_def_map` into two methods | Michal Terepeta | 2020-01-03 | 2 | -3/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change: - introduces `compute_crate_def_map` query and renames `CrateDefMap::crate_def_map_query` for consistency, - annotates `crate_def_map` as `salsa::transparent` and adds a top-level `crate_def_map` wrapper function around that starts the profiler and immediately calls into `compute_crate_def_map` query. This allows us to better understand where we spent the time, in particular, how much is spent in the recomputaiton and how much in salsa. Example output (where we don't actually re-compute anything, but the query still takes a non-trivial amount of time): ``` 211ms - handle_inlay_hints 150ms - get_inlay_hints 150ms - SourceAnalyzer::new 65ms - def_with_body_from_child_node 65ms - analyze_container 65ms - analyze_container 65ms - Module::from_definition 65ms - Module::from_file 65ms - crate_def_map 1ms - parse_macro_query (6 calls) 0ms - raw_items_query (1 calls) 64ms - ??? ``` Signed-off-by: Michal Terepeta <[email protected]> | |||||
* | Remove a duplicate line in `collect_defs` | Michal Terepeta | 2020-01-03 | 1 | -1/+0 | |
| | | | | Signed-off-by: Michal Terepeta <[email protected]> | |||||
* | Remove unused hard-coded paths | Emil Lauridsen | 2019-12-29 | 1 | -4/+0 | |
| | ||||||
* | Add helpers for unpacking lang items | Emil Lauridsen | 2019-12-29 | 1 | -0/+44 | |
| | ||||||
* | Merge #2650 | bors[bot] | 2019-12-29 | 2 | -7/+19 | |
|\ | | | | | | | | | | | | | | | 2650: Add macro call support for SourceAnalyzer::type_of r=matklad a=edwin0cheng Co-authored-by: Edwin Cheng <[email protected]> | |||||
| * | Use pre-stored macro file | Edwin Cheng | 2019-12-23 | 3 | -14/+30 | |
| | | ||||||
| * | Add macro call support for type_of | Edwin Cheng | 2019-12-23 | 2 | -11/+7 | |
| | | ||||||
* | | Don't add non-impl/trait containers to scope | Aleksey Kladov | 2019-12-29 | 1 | -1/+1 | |
| | | ||||||
* | | visible_from -> is_visible_from | Florian Diebold | 2019-12-27 | 2 | -7/+7 | |
| | | ||||||
* | | Remove Arc from RawVisibility | Florian Diebold | 2019-12-26 | 1 | -11/+6 | |
| | | | | | | | | | | Now that it's not used as a direct query return value anymore, it doesn't need to be cheaply cloneable anymore. | |||||
* | | Fix cross-crate glob privacy handling | Florian Diebold | 2019-12-26 | 3 | -6/+28 | |
| | | ||||||
* | | Remove visibility query, instead add struct field visibility to data | Florian Diebold | 2019-12-26 | 4 | -100/+33 | |
| | | | | | | | | | | Methods should be handled the same, and for items the visibility will be in the def map. | |||||
* | | Rename ResolvedVisibility -> Visibility | Florian Diebold | 2019-12-26 | 7 | -64/+51 | |
| | | ||||||
* | | Rename Visibility -> RawVisibility | Florian Diebold | 2019-12-26 | 6 | -40/+40 | |
| | | ||||||
* | | Handle privacy for modules | Florian Diebold | 2019-12-26 | 3 | -11/+36 | |
| | | ||||||
* | | Take visibility into account for glob imports | Florian Diebold | 2019-12-26 | 7 | -43/+165 | |
| | | ||||||
* | | Keep track of visibility during def collection | Florian Diebold | 2019-12-26 | 6 | -54/+120 | |
| | | ||||||
* | | Collect visibility of items during nameres | Florian Diebold | 2019-12-26 | 4 | -16/+57 | |
| | | ||||||
* | | Add doc comment | Florian Diebold | 2019-12-26 | 1 | -0/+2 | |
| | | ||||||
* | | Make enum variant fields public | Florian Diebold | 2019-12-26 | 1 | -2/+9 | |
| | | ||||||
* | | Add logic for resolving and checking visibility | Florian Diebold | 2019-12-26 | 2 | -1/+60 | |
| | | ||||||
* | | Add infrastructure for visibility on syntax and hir_def level | Florian Diebold | 2019-12-26 | 3 | -1/+131 | |
| | | ||||||
* | | Remove AsyncOwner | Edwin Cheng | 2019-12-24 | 1 | -3/+1 | |
| | | ||||||
* | | Formatting | Edwin Cheng | 2019-12-24 | 2 | -3/+4 | |
| | | ||||||
* | | Implement infer await from async func | Edwin Cheng | 2019-12-24 | 2 | -2/+30 | |
|/ | ||||||
* | Rudimentary name resolution for local items | Aleksey Kladov | 2019-12-22 | 4 | -43/+102 | |
| | ||||||
* | Simplify | Aleksey Kladov | 2019-12-22 | 2 | -16/+17 | |
| | ||||||
* | Refactor | Aleksey Kladov | 2019-12-22 | 2 | -10/+11 | |
| | ||||||
* | Share impl Scope between modules and blocks | Aleksey Kladov | 2019-12-22 | 3 | -53/+56 | |
| | ||||||
* | Simplify | Aleksey Kladov | 2019-12-22 | 6 | -57/+40 | |
| | ||||||
* | Remove unused parameters | Aleksey Kladov | 2019-12-22 | 2 | -23/+13 | |
| | ||||||
* | Remove import field | Aleksey Kladov | 2019-12-22 | 2 | -19/+8 | |
| | ||||||
* | Separate defs from imports | Aleksey Kladov | 2019-12-22 | 2 | -5/+8 | |
| | ||||||
* | Refactor PerNs construction | Aleksey Kladov | 2019-12-22 | 2 | -49/+52 | |
| | ||||||
* | Minor rename | Aleksey Kladov | 2019-12-22 | 1 | -8/+8 | |
| | ||||||
* | More profiling | Aleksey Kladov | 2019-12-21 | 2 | -0/+4 | |
| | ||||||
* | Merge #2637 | bors[bot] | 2019-12-21 | 1 | -0/+2 | |
|\ | | | | | | | | | | | | | | | 2637: Optimize and profile r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Optimize and profile | Aleksey Kladov | 2019-12-21 | 1 | -0/+2 | |
| | | ||||||
* | | Move LocalImportId | Aleksey Kladov | 2019-12-21 | 4 | -28/+20 | |
| | | ||||||
* | | Remove import source map | Aleksey Kladov | 2019-12-21 | 3 | -62/+13 | |
| | | ||||||
* | | Remove import from resolution | Aleksey Kladov | 2019-12-21 | 2 | -17/+12 | |
|/ | ||||||
* | Remove imports from hir | Aleksey Kladov | 2019-12-21 | 3 | -8/+2 | |
| | ||||||
* | Revert "Merge #2629" | Aleksey Kladov | 2019-12-21 | 6 | -46/+126 | |
| | | | | | This reverts commit cdc9d682b066b110e0a44e5f8f1c574b38c16ba9, reversing changes made to 90ef070db3dce0a7acb9cd11d0b0d72de13c9d79. | |||||
* | Privatize LocalImportID | Aleksey Kladov | 2019-12-21 | 3 | -11/+8 | |
| | ||||||
* | Remove import source map | Aleksey Kladov | 2019-12-21 | 3 | -68/+13 | |
| | ||||||
* | Don't track imports | Aleksey Kladov | 2019-12-21 | 2 | -48/+26 | |
| |