| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -10/+10 | |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -17/+17 | |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -2/+2 | |
| 2020-03-25 | Auto merge of #70297 - nnethercote:clean-up-debugging-options, ↵ | bors | -6/+4 | |
| r=michaelwoerister Clean up debugging options I found various sub-optimal things when I was looking at option handling. | ||||
| 2020-03-24 | Remove `-Z incremental-queries`. | Nicholas Nethercote | -6/+4 | |
| Because it uses `parse_bool` and defaults to true, it is actually impossible to set it to false. And it hasn't been experimental for some time now. | ||||
| 2020-03-23 | Put extract_def_id back on DepNode. | Camille GILLOT | -2/+2 | |
| 2020-03-23 | Fallout in other crates. | Camille GILLOT | -3/+3 | |
| 2020-03-21 | Rollup merge of #70092 - eddyb:hir-items-are-just-nodes, r=Zoxc | Mazdak Farrokhzad | -2/+2 | |
| hir: replace "items" terminology with "nodes" where appropriate. The newly added `HirOwnerItems` confused me before I realized that "items" there actually referred to HIR nodes, not `hir:Item` or "item-like" (which we should IMO replace with "owner"). I suspect the naming had something to do with `ItemLocalId`'s use of "item". That is, `ItemLocalId` could be interpreted to mean one of two things: * `IntraItemNodeId` i.e. `IntraOwnerNodeId` * this is IMO correct, and I'd even like to rename it, but I didn't want to throw that into this PR * `IntraOwnerItemId` * this is what `HirOwnerItems` would seem to imply r? @Zoxc cc @michaelwoerister @nikomatsakis | ||||
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -2/+1 | |
| 2020-03-19 | hir: replace "items" terminology with "nodes" where appropriate. | Eduard-Mihai Burtescu | -2/+2 | |
| 2020-03-18 | Rollup merge of #69920 - Centril:hir-cleanup, r=Zoxc | Mazdak Farrokhzad | -5/+5 | |
| Remove some imports to the rustc crate - When we have `NestedVisitorMap::None`, we use `type Map = dyn intravisit::Map<'v>;` instead of the actual map. This doesn't actually result in dynamic dispatch (in the future we may want to use an associated type default to simplify the code). - Use `rustc_session::` imports instead of `rustc::{session, lint}`. r? @Zoxc | ||||
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -5/+5 | |
| 2020-03-15 | More Method->Fn renaming | Mark Mansi | -1/+1 | |
| 2020-03-14 | Replace `HirBody` with `hir_owner_items` in tests | John Kåre Alsaker | -2/+3 | |
| 2020-03-14 | Index HIR after creating TyCtxt | John Kåre Alsaker | -4/+4 | |
| 2020-03-14 | Remove `Hir` and `HirBody` dep nodes | John Kåre Alsaker | -3/+2 | |
| 2020-03-14 | Update `visit_item_likes_in_module` | John Kåre Alsaker | -1/+1 | |
| 2020-03-14 | Update `krate_attrs` and `get_module` | John Kåre Alsaker | -2/+2 | |
| 2020-03-14 | Rollup merge of #69809 - matthiaskrgr:lifetimes, r=eddyb | Yuki Okushi | -2/+2 | |
| remove lifetimes that can be elided (clippy::needless_lifetimes) | ||||
| 2020-03-12 | remove lifetimes that can be elided (clippy::needless_lifetimes) | Matthias Krüger | -2/+2 | |
| 2020-03-12 | Rollup merge of #69747 - spastorino:rename-rustc-guide, r=pietroalbini | Mazdak Farrokhzad | -2/+2 | |
| Rename rustc guide This is in preparation for https://github.com/rust-lang/rustc-guide/issues/470 Needs to be merged after we actually rename the guide. Have used this to rename: `git grep -l 'rustc_guide' | xargs sed -i 's/rustc_guide/rustc_dev_guide/g'` `git grep -l 'rustc-guide' | xargs sed -i 's/rustc-guide/rustc-dev-guide/g'` `git grep -l 'rustc guide' | xargs sed -i 's/rustc guide/rustc dev guide/g'` | ||||
| 2020-03-12 | Rollup merge of #69674 - mark-i-m:assoc-fn, r=matthewjasper | Mazdak Farrokhzad | -1/+1 | |
| Rename DefKind::Method and TraitItemKind::Method r? @eddyb, @Centril, or @matthewjasper cc #69498 #60163 | ||||
| 2020-03-10 | rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.org | Santiago Pastorino | -1/+1 | |
| 2020-03-10 | Rename rustc guide to rustc dev guide | Santiago Pastorino | -2/+2 | |
| 2020-03-10 | Rename rustc-guide to rustc-dev-guide | Santiago Pastorino | -1/+1 | |
| 2020-03-05 | Use more efficient &&str to String conversion (clippy::inefficient_to_string) | Matthias Krüger | -1/+2 | |
| 2020-03-03 | rename TraitItemKind::Method -> Fn | Mark Mansi | -1/+1 | |
| 2020-03-03 | use question mark operator in a few places. | Matthias Krüger | -3/+1 | |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -5/+5 | |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -1/+1 | |
| 2020-02-28 | Rollup merge of #69541 - dotdash:format, r=Mark-Simulacrum | Mazdak Farrokhzad | -8/+2 | |
| Remove unneeded calls to format!() | ||||
| 2020-02-27 | Remove unneeded calls to format!() | Björn Steinbrink | -8/+2 | |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -4/+4 | |
| 2020-02-19 | Make is_object_safe a method. | Camille GILLOT | -1/+1 | |
| 2020-02-11 | Rollup merge of #66498 - bjorn3:less_feature_flags, r=Dylan-DPC | Dylan DPC | -1/+0 | |
| Remove unused feature gates I think many of the remaining unstable things can be easily be replaced with stable things. I have kept the `#![feature(nll)]` even though it is only necessary in `libstd`, to make regressions of it harder. | ||||
| 2020-02-07 | Remove unused feature gate from librustc_incremental | bjorn3 | -1/+0 | |
| 2020-02-04 | fix couple of perf related clipyp warnings | Matthias Krüger | -2/+1 | |
| librustc: don't clone a type that is copy librustc_incremental: use faster vector initialization librustc_typeck: don't clone a type that is copy librustdoc: don't create a vector where a slice will do | ||||
| 2020-02-01 | Use BufWriter | Shotaro Yamada | -2/+2 | |
| 2020-01-17 | Use named fields for `hir::ItemKind::Impl` | Dylan MacKenzie | -1/+1 | |
| 2020-01-16 | don't clone types that are copy | Matthias Krüger | -1/+1 | |
| found via clippy | ||||
| 2020-01-09 | Label unmarked time | John Kåre Alsaker | -0/+6 | |
| 2020-01-09 | Change -Z time event naming scheme and make them generic activities | John Kåre Alsaker | -7/+8 | |
| 2020-01-08 | normalize rustc::hir::intravisit imports | Mazdak Farrokhzad | -2/+2 | |
| 2020-01-08 | intravisit: abstract over HIR Map | Mazdak Farrokhzad | -2/+8 | |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -8/+9 | |
| 2020-01-05 | Use self profile infrastructure for -Z time and -Z time-passes | John Kåre Alsaker | -46/+31 | |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -3/+5 | |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -3/+3 | |
| 2019-12-30 | Make things build again | Vadim Petrochenkov | -1/+1 | |
| 2019-12-22 | Format the world | Mark Rousskov | -743/+736 | |
