| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-08-30 | mv compiler to compiler/ | mark | -227/+0 | |
| 2020-08-08 | Eliminate the `SessionGlobals` from `librustc_ast`. | Nicholas Nethercote | -1/+1 | |
| By moving `{known,used}_attrs` from `SessionGlobals` to `Session`. This means they are accessed via the `Session`, rather than via TLS. A few `Attr` methods and `librustc_ast` functions are now methods of `Session`. All of this required passing a `Session` to lots of functions that didn't already have one. Some of these functions also had arguments removed, because those arguments could be accessed directly via the `Session` argument. `contains_feature_attr()` was dead, and is removed. Some functions were moved from `librustc_ast` elsewhere because they now need to access `Session`, which isn't available in that crate. - `entry_point_type()` --> `librustc_builtin_macros` - `global_allocator_spans()` --> `librustc_metadata` - `is_proc_macro_attr()` --> `Session` | ||||
| 2020-07-05 | Use for<'tcx> fn pointers in Providers, instead of having Providers<'tcx>. | Eduard-Mihai Burtescu | -1/+1 | |
| 2020-06-28 | Use `LocalDefId` in HIR const-checker | Dylan MacKenzie | -4/+4 | |
| 2020-06-28 | Stop checking for `while` and `loop` in a const context | Dylan MacKenzie | -7/+6 | |
| 2020-06-28 | Require `allow_internal_unstable` in HIR const-checker | Dylan MacKenzie | -13/+50 | |
| 2020-06-28 | HIR const-checking | Dylan MacKenzie | -35/+10 | |
| 2020-06-27 | use LocalDefId in module checking | Bastian Kauschke | -2/+2 | |
| 2020-05-07 | Use `hir::ConstContext` instead of local enums | Dylan MacKenzie | -48/+7 | |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -2/+3 | |
| 2020-04-09 | Use `is_const_fn_raw` query for HIR const-checking | Dylan MacKenzie | -7/+7 | |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -3/+3 | |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -3/+3 | |
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -2/+2 | |
| 2020-03-14 | Index HIR after creating TyCtxt | John Kåre Alsaker | -4/+3 | |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -1/+1 | |
| 2020-02-29 | use .to_string() instead of format!() macro to create strings | Matthias Krüger | -1/+1 | |
| 2020-02-06 | Add a Hir wrapper type | John Kåre Alsaker | -1/+2 | |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 | |
| 2020-01-11 | simplify feature_err imports | Mazdak Farrokhzad | -1/+1 | |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -1/+1 | |
| 2020-01-08 | normalize rustc::hir::intravisit imports | Mazdak Farrokhzad | -1/+1 | |
| 2020-01-08 | intravisit: abstract over HIR Map | Mazdak Farrokhzad | -1/+3 | |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -2/+2 | |
| - remove syntax::{help!, span_help!, span_note!} - remove unused syntax::{struct_span_fatal, struct_span_err_or_warn!, span_err_or_warn!} - lintify check_for_bindings_named_same_as_variants + conflicting_repr_hints - inline syntax::{struct_span_warn!, diagnostic_used!} - stringify_error_code! -> error_code! & use it more. - find_plugin_registrar: de-fatalize an error - de-fatalize metadata errors - move type_error_struct! to rustc_typeck - struct_span_err! -> rustc_errors | ||||
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -7/+7 | |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -1/+1 | |
| 2019-12-26 | Fallout in other crates. | Camille GILLOT | -2/+2 | |
| 2019-12-25 | Feature gate or patterns in const contexts | Matthew Jasper | -5/+17 | |
| 2019-12-22 | Format the world | Mark Rousskov | -34/+24 | |
| 2019-12-21 | Use Arena inside hir::Body. | Camille GILLOT | -2/+2 | |
| 2019-12-20 | 1. ast::Mutability::{Mutable -> Mut, Immutable -> Not}. | Mazdak Farrokhzad | -2/+2 | |
| 2. mir::Mutability -> ast::Mutability. | ||||
| 2019-12-13 | Use better name for local containing required feature gates | Dylan MacKenzie | -5/+5 | |
| 2019-12-13 | Replace `Index` impl with `enabled` method | Dylan MacKenzie | -2/+2 | |
| 2019-12-13 | Apply suggestions from review | Dylan MacKenzie | -5/+5 | |
| 2019-12-13 | Improve comment | Dylan MacKenzie | -2/+2 | |
| 2019-12-13 | Restructue HIR const-checker to handle features with multiple gates | Dylan MacKenzie | -19/+68 | |
| 2019-11-30 | move GateIssue to rustc_feature & simplify emit_feature_err | Mazdak Farrokhzad | -8/+2 | |
| 2019-11-30 | introduce crate rustc_feature and move active, accepted, and removed to it | Mazdak Farrokhzad | -1/+2 | |
| 2019-11-21 | Suggest `const_if_match` on nightly | Dylan MacKenzie | -19/+70 | |
| 2019-11-21 | Hold a `TyCtxt` in the HIR const-checker | Dylan MacKenzie | -10/+7 | |
| 2019-11-21 | Add feature gate for const `if` and `match` | Dylan MacKenzie | -1/+1 | |
| 2019-11-14 | move E0744 to new error code | Guillaume Gomez | -0/+1 | |
| 2019-11-13 | Use `ast::Mutability` | Dylan MacKenzie | -2/+3 | |
| 2019-11-13 | Change control flow error to delay span bug | Dylan MacKenzie | -4/+5 | |
| 2019-11-13 | Small fixes to comments | Dylan MacKenzie | -4/+5 | |
| 2019-11-13 | Add HIR pass to check for `if`s and `loop`s in a `const` | Dylan MacKenzie | -0/+157 | |
| These high-level constructs get mapped to control-flow primitives by the time the MIR const-checker runs, making it hard to get the span for the erroneous expression. | ||||
