| Age | Commit message (Expand) | Author | Lines |
| 2019-12-03 | Move duration_to_secs_str to rustc_session | Mark Rousskov | -9/+1 |
| 2019-12-03 | Move cgu_reuse_tracker to librustc_session | Mark Rousskov | -136/+1 |
| 2019-12-03 | Introduce rustc_session crate | Mark Rousskov | -0/+1 |
| 2019-12-03 | Decouple CguReuseTracker from Session | Mark Rousskov | -4/+3 |
| 2019-12-03 | Use FxHash* from data structures not nodemap | Mark Rousskov | -1/+1 |
| 2019-12-03 | rustc: add docs to FnAbi::{of_fn_ptr,of_instance} and InstanceDef::Virtual. | Eduard-Mihai Burtescu | -1/+16 |
| 2019-12-03 | rustc: move Instance::fn_sig to ty::layout and privatize it. | Eduard-Mihai Burtescu | -66/+72 |
| 2019-12-03 | rustc_target: add abi::call::Conv::Rust distinct from Conv::C. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-12-03 | rustc: take a PolyFnSig instead of an FnSig in FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -7/+8 |
| 2019-12-03 | rustc: rename FnAbi::new to FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-12-03 | rustc: compute FnAbi's for virtual calls through FnAbi::of_instance. | Eduard-Mihai Burtescu | -12/+8 |
| 2019-12-03 | rustc: use ReifyShim for reifying Virtual call instances. | Eduard-Mihai Burtescu | -12/+20 |
| 2019-12-03 | rustc: expose the mir::Body reference lifetime from mir::ReadOnlyBodyCache (#... | Eduard-Mihai Burtescu | -10/+2 |
| 2019-12-03 | rustc: combine Instance::fn_sig_noadjust and Instance::fn_sig. | Eduard-Mihai Burtescu | -17/+15 |
| 2019-12-03 | Rollup merge of #66941 - CAD97:nord, r=Dylan-DPC | Mazdak Farrokhzad | -1/+0 |
| 2019-12-03 | Rollup merge of #66935 - petrochenkov:attrtok2, r=Centril | Mazdak Farrokhzad | -2/+12 |
| 2019-12-03 | Rollup merge of #66651 - Areredify:on-unimplemented-scope, r=davidtwco | Mazdak Farrokhzad | -14/+49 |
| 2019-12-03 | Update measureme crate to 0.5.0. | Michael Woerister | -1/+1 |
| 2019-12-03 | const fns can read constants that invoke unstable const fns | Oliver Scherer | -1/+1 |
| 2019-12-03 | Explain the difference between the two whitelists | Oliver Scherer | -0/+9 |
| 2019-12-03 | Move all intrinsic whitelists into the constness check file | Oliver Scherer | -0/+35 |
| 2019-12-03 | Check intrinsics for callability in const fns | Mahmut Bulut | -3/+67 |
| 2019-12-02 | syntax: Use `ast::MacArgs` for macro definitions | Vadim Petrochenkov | -1/+1 |
| 2019-12-02 | syntax: Use `ast::MacArgs` for attributes | Vadim Petrochenkov | -1/+11 |
| 2019-12-02 | rustc: allow non-empty ParamEnv's in global trait select/eval caches. | Eduard-Mihai Burtescu | -8/+4 |
| 2019-12-02 | rustc: include ParamEnv in global trait select/eval cache keys. | Eduard-Mihai Burtescu | -16/+19 |
| 2019-12-02 | Auto merge of #64736 - Nashenas88:mir_predecessors_cache_cleanup, r=oli-obk | bors | -141/+326 |
| 2019-12-02 | Use new HashStable proc macro | Paul Daniel Faria | -6/+1 |
| 2019-12-02 | Fix type errors created during rebasing | Paul Daniel Faria | -8/+1 |
| 2019-12-02 | Remove unchecked inline attribute, remove unused functions, make chache mod p... | Paul Daniel Faria | -48/+26 |
| 2019-12-02 | Remove inline attributes that hadn't been profiled, unexport Cache since it n... | Paul Daniel Faria | -17/+1 |
| 2019-12-02 | Compute predecessors in mir_build query and use existing cache for generating... | Paul Daniel Faria | -10/+0 |
| 2019-12-02 | Remove HasLocalDecls impl from BodyCache's, properly reborrow to Body, rename... | Paul Daniel Faria | -33/+21 |
| 2019-12-02 | Remove BodyCache.body and rely on Deref as much as possible for ReadOnlyBodyC... | Paul Daniel Faria | -18/+18 |
| 2019-12-02 | Fix tidy errors | Paul Daniel Faria | -3/+10 |
| 2019-12-02 | Fix remaining compilation issues | Paul Daniel Faria | -10/+44 |
| 2019-12-02 | Simplify BodyCache impl and fix all remaining type errors in librustc_mir (li... | Paul Daniel Faria | -137/+113 |
| 2019-12-02 | Add predecessors fn to ReadOnlyBodyCache, fix more Body -> (ReadOnly)BodyCach... | Paul Daniel Faria | -2/+6 |
| 2019-12-02 | Add read_only fn to BodyCache<&mut...> impl, fix more Body -> (ReadOnly)BodyC... | Paul Daniel Faria | -0/+9 |
| 2019-12-02 | Fix a large number of Body -> (ReadOnly)BodyCache type errors, add predecesso... | Paul Daniel Faria | -21/+43 |
| 2019-12-02 | Account for new maybe_sideeffect helper that requires predecessors | Paul Daniel Faria | -54/+128 |
| 2019-12-02 | Improved BodyCache body impl so it only returns a sharable ref, add new body_... | Paul Daniel Faria | -6/+16 |
| 2019-12-02 | Simplify Cache wrapper to single type, impl Deref on it, fix all compilation ... | Paul Daniel Faria | -52/+60 |
| 2019-12-02 | Move predecessor cache outside of Body, use wrapper types to manage Cache and... | Paul Daniel Faria | -150/+258 |
| 2019-12-02 | Move predecessors cache back to its own type | Paul Daniel Faria | -12/+58 |
| 2019-12-02 | Add back cache invalidation to basic_blocks_and_local_decls_mut | Paul Daniel Faria | -1/+3 |
| 2019-12-02 | Address excessive line length that was triggering warning during linting | Paul Daniel Faria | -1/+5 |
| 2019-12-02 | Move predecessors cache invalidation back to basic_blocks_mut, add a couple m... | Paul Daniel Faria | -55/+17 |
| 2019-12-02 | Ensure predecessors are recomputed at critical points, fixes panics | Paul Daniel Faria | -17/+18 |
| 2019-12-02 | Address linting errors caught by CI | Paul Daniel Faria | -2/+4 |