| Age | Commit message (Expand) | Author | Lines |
| 2020-08-30 | mv compiler to compiler/ | mark | -418/+0 |
| 2020-08-17 | rust_ast::ast => rustc_ast | Ujjwal Sharma | -1/+1 |
| 2020-06-21 | Miri: replace many bug! by span_bug! | Ralf Jung | -8/+14 |
| 2020-04-15 | Make the necessary changes to support concurrency in Miri. | Vytautas Astrauskas | -2/+2 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -5/+2 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -6/+3 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -2/+2 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -8/+8 |
| 2020-03-27 | Rename TyLayout to TyAndLayout. | Ana-Maria Mihalache | -3/+3 |
| 2020-03-25 | miri: simplify shift operator overflow checking | Ralf Jung | -12/+13 |
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -3/+3 |
| 2020-03-03 | Rollup merge of #69565 - RalfJung:assert, r=eddyb | Dylan DPC | -1/+1 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -1/+1 |
| 2020-02-28 | miri engine: turn some debug_assert into assert | Ralf Jung | -1/+1 |
| 2020-02-10 | remove outdated comment | Ralf Jung | -1/+0 |
| 2020-02-09 | miri: equip unary_op with overflow detection | Ralf Jung | -9/+27 |
| 2020-02-09 | bring back extra check for int_min%-1 | Ralf Jung | -0/+11 |
| 2020-02-09 | miri: simplify singed operator overflow detection | Ralf Jung | -24/+14 |
| 2019-12-22 | Format the world | Mark Rousskov | -29/+45 |
| 2019-12-01 | Miri core engine: use throw_ub instead of throw_panic | Ralf Jung | -4/+4 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -2/+2 |
| 2019-08-17 | make both unary_op and binary_op fully typed, including a return type | Ralf Jung | -49/+74 |
| 2019-08-03 | Auto merge of #63234 - Centril:rollup-h9t731z, r=Centril | bors | -12/+8 |
| 2019-08-02 | dedup free-form Unsupported errors; add macros for free-form UB and Unsupport... | Ralf Jung | -12/+8 |
| 2019-08-02 | trailing full stops | Ralf Jung | -1/+1 |
| 2019-08-02 | add is_any_ptr type test; this also helps pacify tidy | Ralf Jung | -1/+1 |
| 2019-08-02 | operator: implement binary_op strictly by first checking the type, then dispa... | Ralf Jung | -20/+19 |
| 2019-07-30 | renaming throw_err_* to throw_* | Saleem Jaffer | -6/+6 |
| 2019-07-30 | renaming err to err_unsup | Saleem Jaffer | -2/+2 |
| 2019-07-30 | adding throw_ and err_ macros for InterpError | Saleem Jaffer | -6/+6 |
| 2019-07-29 | adding a err macro for each of the InterpError variants | Saleem Jaffer | -8/+8 |
| 2019-07-29 | fixing fallout due to InterpError refactor | Saleem Jaffer | -3/+3 |
| 2019-07-23 | renames EvalErrorPanic to PanicMessage | Saleem Jaffer | -5/+5 |
| 2019-07-23 | moving some variants from InterpError to EvalErrorPanic | Saleem Jaffer | -5/+5 |
| 2019-06-27 | rename InterpretCx -> InterpCx | Ralf Jung | -3/+3 |
| 2019-06-16 | Replace to_bits by force_bits and move size as parameter | Christian Poveda | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-09 | make floating point casts nicer with generics | Ralf Jung | -4/+8 |
| 2019-06-09 | make unary float negation slightly nicer | Ralf Jung | -5/+3 |
| 2019-06-09 | trait-ize binary_float_op | Ralf Jung | -44/+35 |
| 2019-06-08 | Scalar: only convert to/from soft-float types, not to/from hard-floats | Ralf Jung | -11/+9 |
| 2019-06-08 | rename EvalResult -> InterpResult and EvalError -> InterpErrorInfo | Ralf Jung | -9/+9 |
| 2019-03-30 | Remove redundant imports | Fabian Drinck | -2/+0 |
| 2019-03-26 | renames EvalContext to InterpretCx. | kenta7777 | -3/+3 |
| 2019-03-15 | rustc: remove fmt::{Debug,Display} from ty::TyKind. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-02-13 | make bin_op and unary_op APIs consistently work on ImmTy | Ralf Jung | -43/+30 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-11-05 | miri: binary_op_val -> binary_op_imm | Ralf Jung | -4/+4 |
| 2018-11-02 | Rename `Value` to `Immediate` for miri | Oliver Scherer | -9/+9 |
| 2018-10-10 | miri engine: basic support for pointer provenance tracking | Ralf Jung | -18/+18 |