about summary refs log tree commit diff
path: root/compiler/rustc_mir_transform/src
AgeCommit message (Expand)AuthorLines
2022-07-06fix a strange ConstProp ICERalf Jung-2/+10
2022-07-06interpret: remove LocalValue::Unallocated, add Operand::UninitRalf Jung-27/+40
2022-07-06Rollup merge of #98884 - davidtwco:translation-on-lints-derive, r=oli-obkDylan DPC-2/+1
2022-07-06Update TypeVisitor pathsAlan Egerton-4/+5
2022-07-05lint: `LintDiagnosticBuilder` into `rustc_errors`David Wood-2/+1
2022-07-05Auto merge of #98872 - JakobDegen:no-invalidate, r=davidtwcobors-6/+12
2022-07-03Add method to mutate MIR body without invalidating CFG caches.Jakob Degen-6/+12
2022-07-02Fix rust-call ICE in mir-inlinerMichael Goulet-5/+9
2022-07-02Auto merge of #97235 - nbdd0121:unwind, r=Amanieubors-6/+176
2022-07-02Auto merge of #91743 - cjgillot:enable_mir_inlining_inline_all, r=oli-obkbors-33/+69
2022-07-01cleanup mir visitor for `rustc::pass_by_value`lcnr-12/+12
2022-06-30Allow inlining `#[inline]` functions.Camille GILLOT-3/+3
2022-06-30Test enabling MIR inlinerWesley Wiser-10/+23
2022-06-30Do not error on the param_env during inlining.Camille GILLOT-8/+0
2022-06-30Skip inlining if there are normalization issues.Camille GILLOT-0/+40
2022-06-30Do not ICE when failing to resolve.Camille GILLOT-1/+1
2022-06-30Check history earlier.Camille GILLOT-14/+5
2022-06-28emit Retag for compound types with reference fieldsRalf Jung-5/+18
2022-06-21Auto merge of #95576 - DrMeepster:box_erasure, r=oli-obkbors-10/+270
2022-06-20Rollup merge of #98267 - compiler-errors:suggest-wildcard-arm, r=oli-obkMatthias Krüger-2/+2
2022-06-20Rollup merge of #98235 - liuw:mir-gen-drop-magic-value, r=davidtwcoMatthias Krüger-2/+6
2022-06-20Drop magic value 3 from codeWei Liu-2/+6
2022-06-19Use `Span::eq_ctxt` method instead of `.ctxt() == .ctxt()`Michael Goulet-2/+2
2022-06-19Rollup merge of #98165 - WaffleLapkin:once_things_renamings, r=m-ou-seMatthias Krüger-2/+2
2022-06-17Auto merge of #97863 - JakobDegen:bitset-choice, r=nnethercotebors-1/+2
2022-06-16Move/rename `lazy::Sync{OnceCell,Lazy}` to `sync::{Once,Lazy}Lock`Maybe Waffle-2/+2
2022-06-15fix box derefs in var debug infoDrMeepster-0/+31
2022-06-15condense duplicate code into seperate functionsDrMeepster-22/+45
2022-06-15fix typos & docsDrMeepster-6/+7
2022-06-15remove box derefs from codgenDrMeepster-10/+215
2022-06-14`BitSet` perf improvementsJakob Degen-1/+2
2022-06-14implement valtrees as the type-system representation for constant valuesb-naber-23/+20
2022-06-14Rename the `ConstS::val` field as `kind`.Nicholas Nethercote-5/+5
2022-06-12Auto merge of #98018 - scottmcm:miri-yeet, r=RalfJungbors-0/+1
2022-06-11Try out `yeet` in the MIR interpreterScott McMurray-0/+1
2022-06-12Remove duplicated implementations of borrowed locals analysisTomasz Miąsko-133/+8
2022-06-09Add a explanation about required panic strategy computationGary Guo-0/+21
2022-06-09Auto merge of #97740 - RalfJung:ctfe-cycle-spans, r=lcnrbors-10/+19
2022-06-08Rename `panic_strategy` query to `required_panic_strategy`Gary Guo-2/+4
2022-06-08Use is_fn_like instead of matching on DefKindGary Guo-12/+2
2022-06-08Handle panic runtime speciallyGary Guo-1/+5
2022-06-08Fix FFI-unwind unsoundness with mixed panic modeGary Guo-0/+153
2022-06-08Rollup merge of #97597 - tmiasko:simplify-locals-side-effects, r=RalfJung,Jak...Dylan DPC-3/+7
2022-06-07Preserve unused pointer to address castsTomasz Miąsko-3/+7
2022-06-07Remove `AlwaysLiveLocals` wrapper structTomasz Miąsko-5/+5
2022-06-05Auto merge of #97697 - WaffleLapkin:no_ref_vec, r=WaffleLapkinbors-19/+17
2022-06-04const_prop_lint: ensure we have up-to-date cur_span()Ralf Jung-10/+19
2022-06-04Rollup merge of #97696 - cjgillot:normalize-inline, r=compiler-errorsMatthias Krüger-10/+15
2022-06-03Do not ICE when failing to normalize during inlining.Camille GILLOT-10/+15
2022-06-03Replace `&Vec<_>`s with `&[_]`sMaybe Waffle-19/+17