| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-17 | Rollup merge of #67791 - Zoxc:lift-interning, r=eddyb | Dylan DPC | -7/+2 | |
| Implement Lift using interners instead of in_arena r? @eddyb cc @cjgillot | ||||
| 2020-01-16 | Rollup merge of #67780 - cjgillot:passes-ty, r=Zoxc | Dylan DPC | -0/+2 | |
| Move some queries from rustc::ty to librustc_ty. cc #65031 | ||||
| 2020-01-15 | Rollup merge of #68141 - euclio:replace-bindings-with-winapi, r=alexcrichton | Yuki Okushi | -8/+9 | |
| use winapi for non-stdlib Windows bindings | ||||
| 2020-01-13 | Do not forget to provide queries. | Camille GILLOT | -0/+1 | |
| 2020-01-13 | Move to new crate rustc_ty. | Camille GILLOT | -0/+1 | |
| 2020-01-12 | Auto merge of #67901 - matthewjasper:split-mir-build, r=nagisa | bors | -0/+3 | |
| Split MIR building into its own crate This moves `rustc_mir::{build, hair, lints}` to `rustc_mir_build`. The new crate only has a `provide` function as it's public API. Based on #67898 cc @Centril @rust-lang/compiler r? @oli-obk | ||||
| 2020-01-12 | Split `rustc_mir::{build, hair, lints}` into their own crate | Matthew Jasper | -0/+3 | |
| 2020-01-11 | use winapi for non-stdlib Windows bindings | Andy Russell | -8/+9 | |
| 2020-01-11 | Use Arena for interning | John Kåre Alsaker | -7/+2 | |
| 2020-01-11 | fix ui-fulldeps & tests fallout | Mazdak Farrokhzad | -21/+21 | |
| 2020-01-11 | move rustc::lint::{context, passes} to rustc_lint. | Mazdak Farrokhzad | -11/+12 | |
| Also do some cleanup of the interface. | ||||
| 2020-01-11 | Rollup merge of #68043 - Zoxc:missing-timers, r=wesleywiser | Mazdak Farrokhzad | -20/+40 | |
| Add some missing timers Based on https://github.com/rust-lang/rust/pull/67988 r? @wesleywiser | ||||
| 2020-01-11 | {syntax -> rustc_ast_passes}::show_span | Mazdak Farrokhzad | -1/+1 | |
| 2020-01-11 | {syntax -> rustc_ast_passes}::feature_gate | Mazdak Farrokhzad | -1/+1 | |
| 2020-01-11 | ast_validation -> new crate rustc_ast_passes | Mazdak Farrokhzad | -2/+3 | |
| 2020-01-11 | buffered lint infra -> rustc_session | Mazdak Farrokhzad | -8/+10 | |
| 2020-01-10 | self-profile: Switch to new approach for event_id generation that enables ↵ | Michael Woerister | -4/+0 | |
| query-invocation-specific event_ids. | ||||
| 2020-01-09 | Tweak timers | John Kåre Alsaker | -26/+17 | |
| 2020-01-09 | Label unmarked time | John Kåre Alsaker | -37/+66 | |
| 2020-01-09 | Change -Z time event naming scheme and make them generic activities | John Kåre Alsaker | -67/+56 | |
| 2020-01-08 | Remove `-Z continue-parse-after-error` | Vadim Petrochenkov | -7/+0 | |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -14/+14 | |
| 2020-01-05 | Use self profile infrastructure for -Z time and -Z time-passes | John Kåre Alsaker | -55/+48 | |
| 2020-01-04 | move def_id to new rustc_hir crate | Mazdak Farrokhzad | -0/+15 | |
| 2020-01-04 | Auto merge of #67788 - cjgillot:delint-day, r=Zoxc | bors | -4/+3 | |
| Move early and late lint mechanisms to librustc_lint. As requested, split from #67737 r? @Zoxc | ||||
| 2020-01-02 | Normalize `syntax::edition` imports. | Mazdak Farrokhzad | -1/+1 | |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -4/+4 | |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -2/+2 | |
| 2020-01-01 | Move stability queries to librustc_passes. | Camille GILLOT | -3/+2 | |
| Contains: - check_mod_unstable_api_usage query; - stability_index query; - check_unused_or_stable features pass. | ||||
| 2020-01-01 | Move lint levels machanism in librustc_lint. | Camille GILLOT | -1/+0 | |
| 2020-01-01 | Move late lint machanism in librustc_lint. | Camille GILLOT | -1/+1 | |
| 2020-01-01 | Move early lint machanism in librustc_lint. | Camille GILLOT | -2/+2 | |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -17/+17 | |
| 2019-12-31 | Auto merge of #67764 - Centril:rollup-ycbq3os, r=Centril | bors | -3/+9 | |
| Rollup of 6 pull requests Successful merges: - #67574 (Extract `rustc_ast_lowering` crate from `rustc`) - #67685 (Constify Result) - #67702 (Add symbol normalization for proc_macro_server.) - #67730 (Cleanup pattern type checking, fix diagnostics bugs (+ improvements)) - #67744 (parser: reduce diversity in error handling mechanisms) - #67748 (Use function attribute "frame-pointer" instead of "no-frame-pointer-elim") Failed merges: r? @ghost | ||||
| 2019-12-31 | Rollup merge of #67574 - Centril:librustc_lowering, r=Mark-Simulacrum | Mazdak Farrokhzad | -3/+9 | |
| Extract `rustc_ast_lowering` crate from `rustc` Working towards https://github.com/rust-lang/rust/issues/65031. This PR moves `src/librustc/hir/lowering{/, .rs}` to its own crate (`librustc_ast_lowering`) which is very self-contained (only `fn lower_crate` and `trait Resolver` are exposed). r? @Mark-Simulacrum | ||||
| 2019-12-31 | librustc_ast_lowering: fix misc fallout. | Mazdak Farrokhzad | -3/+8 | |
| 2019-12-31 | librustc_ast_lowering: cargo changes. | Mazdak Farrokhzad | -0/+1 | |
| 2019-12-31 | Auto merge of #67699 - cjgillot:passes-resolve, r=Zoxc | bors | -2/+2 | |
| Move resolve_lifetimes query in librustc_resolve. Split out of #67688 r? @Zoxc | ||||
| 2019-12-31 | Rollup merge of #67697 - cjgillot:passes-scope-tree, r=Zoxc | Dylan DPC | -1/+0 | |
| Move the region_scope_tree query to librustc_passes. Split out of #67688. r? @Zoxc | ||||
| 2019-12-31 | Move resolve_lifetimes query in librustc_resolve. | Camille GILLOT | -2/+2 | |
| 2019-12-30 | Rename `libsyntax_ext` and `libsyntax_expand` in code | Vadim Petrochenkov | -12/+12 | |
| 2019-12-30 | Make things build again | Vadim Petrochenkov | -3/+3 | |
| 2019-12-30 | Move region_scope_tree query to librustc_passes. | Camille GILLOT | -1/+0 | |
| 2019-12-29 | Move reachable_set query in librustc_passes. | Camille GILLOT | -3/+1 | |
| 2019-12-25 | Store callbacks in global statics | Mark Rousskov | -4/+54 | |
| The callbacks have precisely two states: the default, and the one present throughout almost all of the rustc run (the filled in value which has access to TyCtxt). We used to store this as a thread local, and reset it on each thread to the non-default value. But this is somewhat wasteful, since there is no reason to set it globally -- while the callbacks themselves access TLS, they do not do so in a manner that fails in when we do not have TLS to work with. | ||||
| 2019-12-22 | Format the world | Mark Rousskov | -483/+410 | |
| 2019-12-21 | Use Arena inside hir::ImplItem. | Camille GILLOT | -1/+1 | |
| 2019-12-21 | Use Arena inside hir::TraitItem. | Camille GILLOT | -1/+1 | |
| 2019-12-21 | Use Arena inside hir::Item. | Camille GILLOT | -1/+1 | |
| 2019-12-21 | Use Arena inside hir::Crate. | Camille GILLOT | -11/+13 | |
