| Age | Commit message (Expand) | Author | Lines |
| 2020-05-02 | Rollup merge of #71738 - RalfJung:pointer-no-alloc-id, r=oli-obk | Ralf Jung | -16/+12 |
| 2020-05-02 | Rollup merge of #71712 - RalfJung:error-backtrace, r=oli-obk | Ralf Jung | -12/+10 |
| 2020-05-02 | Auto merge of #71776 - Dylan-DPC:rollup-k1iuuow, r=Dylan-DPC | bors | -848/+37 |
| 2020-05-01 | Rollup merge of #71758 - jackh726:chalk-remove, r=jackh726 | Dylan DPC | -846/+3 |
| 2020-05-01 | Rollup merge of #71018 - lcnr:custom-const-param, r=eddyb | Dylan DPC | -2/+34 |
| 2020-05-01 | Auto merge of #69808 - cjgillot:vtbl, r=pnkfelix | bors | -31/+8 |
| 2020-05-01 | Remove leftover chalk types | Jack Huey | -846/+3 |
| 2020-05-01 | Move the DepNode construction to librustc_query_system. | Camille GILLOT | -30/+7 |
| 2020-05-01 | fix Miri error message padding | Ralf Jung | -2/+2 |
| 2020-05-01 | Monomorphise load_from_disk_and_cache_in_memory. | Camille GILLOT | -1/+1 |
| 2020-05-01 | remove AllocId generalization of Pointer | Ralf Jung | -16/+12 |
| 2020-05-01 | use hex for invalid bool and char (consistently with validation) | Ralf Jung | -2/+6 |
| 2020-05-01 | rename InvalidIntPtrUsage | Ralf Jung | -40/+44 |
| 2020-05-01 | InterpError printing really is more Display than Debug | Ralf Jung | -30/+27 |
| 2020-05-01 | tweak InvalidIntPointerUsage message | Ralf Jung | -2/+2 |
| 2020-05-01 | Auto merge of #70674 - cjgillot:query-arena-all, r=matthewjasper | bors | -132/+99 |
| 2020-04-30 | Rollup merge of #71590 - RalfJung:mir-dump-pointers, r=oli-obk | Tyler Mandry | -10/+34 |
| 2020-04-30 | Rollup merge of #71465 - oli-obk:is_thread_local_cleanup, r=matthewjasper | Tyler Mandry | -4/+10 |
| 2020-04-30 | Rollup merge of #71449 - ecstatic-morse:free-region-cleanup, r=Mark-Simulacrum | Dylan DPC | -179/+0 |
| 2020-04-30 | Miri: port error backtraces to std::backtrace | Ralf Jung | -12/+10 |
| 2020-04-30 | handle ByRef in relate | Bastian Kauschke | -2/+34 |
| 2020-04-30 | Address review comments | Oliver Scherer | -4/+2 |
| 2020-04-30 | Highlight an error that can only happen in CTFE | Oliver Scherer | -1/+1 |
| 2020-04-30 | Add a convenience function for testing whether a static is `#[thread_local]` | Oliver Scherer | -0/+6 |
| 2020-04-30 | Separate miri/ctfe unsupported operations | Oliver Scherer | -0/+2 |
| 2020-04-29 | Auto merge of #67343 - ecstatic-morse:qualif-structural-match, r=pnkfelix | bors | -0/+1 |
| 2020-04-29 | Rollup merge of #71217 - estebank:tail-borrow-sugg, r=pnkfelix | Dylan DPC | -0/+3 |
| 2020-04-28 | Suggest `;` or assignment to drop borrows in tail exprs | Esteban Küber | -0/+3 |
| 2020-04-28 | Add `CustomEq` qualif | Dylan MacKenzie | -0/+1 |
| 2020-04-28 | Move a few queries to using an arena. | Camille GILLOT | -9/+13 |
| 2020-04-28 | Fix incremental compilation. | Camille GILLOT | -4/+6 |
| 2020-04-28 | Use the query system to allocate. | Camille GILLOT | -121/+73 |
| 2020-04-28 | Introduce ArenaStorage. | Camille GILLOT | -2/+3 |
| 2020-04-28 | Allow the QueryCache to specify storage. | Camille GILLOT | -3/+11 |
| 2020-04-27 | Accept `LocalDefId` as key for `check_impl_item_well_formed` query | marmeladema | -1/+3 |
| 2020-04-27 | Accept `LocalDefId` as key for `check_trait_item_well_formed` query | marmeladema | -1/+3 |
| 2020-04-27 | Accept `LocalDefId` as key for `check_item_well_formed` query | marmeladema | -1/+3 |
| 2020-04-27 | Change return type of `entry_fn` query to return a `LocalDefId` | marmeladema | -3/+3 |
| 2020-04-27 | Accept `LocalDefId` as key for `check_mod_privacy` query | marmeladema | -2/+2 |
| 2020-04-27 | Accept `LocalDefId` as key for `lint_mod` query | marmeladema | -2/+2 |
| 2020-04-27 | Accept `LocalDefId` as key for `mir_validated` query | marmeladema | -1/+2 |
| 2020-04-27 | Accept `LocalDefId` as key for `mir_borrowck` query | marmeladema | -5/+4 |
| 2020-04-27 | Return a `FxHashSet<LocalDefId>` from `mir_keys` query | marmeladema | -2/+3 |
| 2020-04-27 | Accept `LocalDefId` as keyt for `names_imported_by_glob_use` | marmeladema | -10/+10 |
| 2020-04-27 | Use `LocalDefId` for `type_param_predicates` query | marmeladema | -2/+13 |
| 2020-04-27 | Use `LocalDefId` in `mir_built` query | marmeladema | -1/+1 |
| 2020-04-27 | Use `LocalDefId` in `unsafety_check_result` query | marmeladema | -3/+3 |
| 2020-04-27 | Use `LocalDefId` in `typeck_tables_of` and `used_trait_imports` queries | marmeladema | -8/+10 |
| 2020-04-27 | keep 'pointer' terminology around | Ralf Jung | -1/+4 |
| 2020-04-27 | Auto merge of #71268 - estebank:devectorize, r=eddyb | bors | -7/+5 |