| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-03-05 | Add a new test to reach const_limit setting, although with wrong WARNINGs yet | Christoph Schmidler | -1/+1 | |
| rename feature to const_eval_limit | ||||
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -2/+2 | |
| 2020-02-19 | Split query stats into its own file | John Kåre Alsaker | -2/+2 | |
| 2020-02-16 | Other crates. | Camille GILLOT | -1/+1 | |
| 2020-02-06 | Remove the `Forest` type | John Kåre Alsaker | -6/+6 | |
| 2020-02-04 | remove redundant imports (clippy::single_component_path_imports) | Matthias Krüger | -4/+0 | |
| 2020-02-02 | Rollup merge of #68460 - sinkuu:emit_mir_buffered, r=Mark-Simulacrum | Yuki Okushi | -2/+2 | |
| Use BufWriter for emitting MIR I noticed that `--emit=mir` takes long time on a large crate. https://github.com/rust-lang/rust/pull/64344 seem to have fixed `-Zdump-mir`, but not `--emit=mir`. | ||||
| 2020-02-01 | {syntax -> rustc_ast_passes}::node_count | Mazdak Farrokhzad | -2/+1 | |
| 2020-02-01 | Use BufWriter | Shotaro Yamada | -2/+2 | |
| 2020-01-17 | Rollup merge of #67791 - Zoxc:lift-interning, r=eddyb | Dylan DPC | -3/+1 | |
| 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/+1 | |
| Move some queries from rustc::ty to librustc_ty. cc #65031 | ||||
| 2020-01-13 | Do not forget to provide queries. | Camille GILLOT | -0/+1 | |
| 2020-01-12 | Auto merge of #67901 - matthewjasper:split-mir-build, r=nagisa | bors | -0/+2 | |
| 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/+2 | |
| 2020-01-11 | Use Arena for interning | John Kåre Alsaker | -3/+1 | |
| 2020-01-11 | move rustc::lint::{context, passes} to rustc_lint. | Mazdak Farrokhzad | -6/+7 | |
| Also do some cleanup of the interface. | ||||
| 2020-01-11 | Rollup merge of #68043 - Zoxc:missing-timers, r=wesleywiser | Mazdak Farrokhzad | -14/+18 | |
| 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/+2 | |
| 2020-01-11 | buffered lint infra -> rustc_session | Mazdak Farrokhzad | -3/+2 | |
| 2020-01-09 | Tweak timers | John Kåre Alsaker | -25/+17 | |
| 2020-01-09 | Label unmarked time | John Kåre Alsaker | -31/+43 | |
| 2020-01-09 | Change -Z time event naming scheme and make them generic activities | John Kåre Alsaker | -66/+55 | |
| 2020-01-08 | Remove `-Z continue-parse-after-error` | Vadim Petrochenkov | -3/+0 | |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -7/+7 | |
| 2020-01-05 | Use self profile infrastructure for -Z time and -Z time-passes | John Kåre Alsaker | -53/+46 | |
| 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::symbol` imports. | Mazdak Farrokhzad | -1/+1 | |
| 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 | -2/+2 | |
| 2019-12-31 | Auto merge of #67764 - Centril:rollup-ycbq3os, r=Centril | bors | -3/+8 | |
| 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/+8 | |
| 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 | 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 | -10/+10 | |
| 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-22 | Format the world | Mark Rousskov | -178/+173 | |
| 2019-12-21 | Use Arena inside hir::Crate. | Camille GILLOT | -8/+9 | |
| 2019-12-06 | Rename to `then_some` and `then` | varkor | -1/+1 | |
| 2019-12-06 | Use `to_option_with` in several places | varkor | -1/+1 | |
| 2019-12-06 | Use `to_option` in various places | varkor | -7/+1 | |
| 2019-12-03 | Move early lint declarations to librustc_session | Mark Rousskov | -2/+1 | |
| 2019-12-01 | rustc_plugin: Some further cleanup | Vadim Petrochenkov | -2/+1 | |
| Remove a useless test | ||||
