about summary refs log tree commit diff
path: root/compiler/rustc_mir_transform/src/pass_manager.rs
AgeCommit message (Expand)AuthorLines
2024-09-12Rollup merge of #130101 - RalfJung:const-cleanup, r=fee1-deadMatthias Krüger-3/+3
2024-09-09Reduce visibilities, and add `warn(unreachable_pub)`.Nicholas Nethercote-6/+1
2024-09-08add FIXME(const-hack)Ralf Jung-3/+3
2024-09-03Clarify a comment.Nicholas Nethercote-1/+2
2024-09-03Reduce visibility of `MirPass` and related things.Nicholas Nethercote-10/+10
2024-09-03Move `MirPass` to `rustc_mir_transform`.Nicholas Nethercote-2/+81
2024-08-30Remove `#[macro_use] extern crate tracing` from `rustc_mir_transform`.Nicholas Nethercote-0/+1
2024-08-26Stop using a special inner body for the coroutine by-move body for async clos...Michael Goulet-6/+0
2024-07-29Reformat `use` declarations.Nicholas Nethercote-1/+2
2024-03-19Only split by-ref/by-move futures for async closuresMichael Goulet-3/+0
2024-02-07Rollup merge of #120733 - klensy:trait-const-fn, r=oli-obkGuillaume Boisseau-10/+2
2024-02-07MirPass: make name more constklensy-10/+2
2024-02-06Fix drop shim for AsyncFnOnce closure, AsyncFnMut shim for AsyncFn closureMichael Goulet-4/+7
2024-02-06Construct body for by-move coroutine closure outputMichael Goulet-0/+6
2024-01-21Make MIR pass name a compile-time constant.Camille GILLOT-2/+14
2024-01-04Fix validation and linting of injected MIRTomasz Miąsko-3/+9
2023-12-28Don't validate / lint MIR before each passTomasz Miąsko-6/+0
2023-12-21Add pass to identify undefined or erroneous behaviourTomasz Miąsko-1/+11
2023-11-21Fix `clippy::needless_borrow` in the compilerNilstrieb-3/+3
2023-10-18Only check in a single place if a pass is enabled.Camille GILLOT-12/+21
2023-09-13Generate MIR pass names for profiling on the fly and pass the body DefId as a...John Kåre Alsaker-4/+10
2023-09-10Remove `verbose_generic_activity_with_arg`John Kåre Alsaker-1/+4
2023-07-25inline format!() args from rustc_codegen_llvm to the end (4)Matthias Krüger-2/+2
2023-05-15Profile MIR passes.Camille GILLOT-4/+4
2022-12-02Use zero based indexing for pass_countOli Scherer-0/+2
2022-12-02Remove an impl and replace its only use with a method callOli Scherer-1/+1
2022-12-01Create `format_args` as late as possibleOli Scherer-13/+2
2022-12-01Remove needless `Cow`Oli Scherer-10/+4
2022-12-01Don't go through the formatting infrastructure just to get the name of a phaseOli Scherer-1/+1
2022-11-08Add support for custom MIR parsingJakob Degen-35/+38
2022-10-23Split phase change from `MirPass`Jakob Degen-33/+56
2022-09-07Fix typo in pass_manager.rsIkko Ashimine-2/+2
2022-08-30Simplify pass manager's `run_passes` logicJakob Degen-29/+19
2022-08-30Refactor MIR phasesJakob Degen-4/+23
2022-07-13Rename `debugging_opts` to `unstable_opts`Joshua Nelson-2/+2
2022-04-16Address nitsJakob Degen-3/+3
2022-04-16Add support for MIR opt unit testsJakob Degen-4/+17
2022-03-23Clarify which kinds of MIR are allowed during which phases.Jakob Degen-1/+1
2021-12-07Remove `in_band_lifetimes` from `rustc_mir_transform`Scott McMurray-5/+5
2021-12-02Don't "simplify" during optimizations if optimizations are disabledDylan MacKenzie-0/+23
2021-12-02Implement a pass managerDylan MacKenzie-0/+121