about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/mir
AgeCommit message (Expand)AuthorLines
2024-11-19additional `TypingEnv` cleanupslcnr-4/+1
2024-11-19`InterpCx` store `TypingEnv` instead of a `ParamEnv`lcnr-15/+17
2024-11-19move `fn is_item_raw` to `TypingEnv`lcnr-3/+3
2024-11-19Auto merge of #133164 - RalfJung:promoted-oom, r=jieyouxubors-2/+13
2024-11-18interpret: do not ICE when a promoted fails with OOMRalf Jung-2/+13
2024-11-18use `TypingEnv` when no `infcx` is availablelcnr-59/+67
2024-11-17Auto merge of #132566 - saethlin:querify-mir-collection, r=cjgillotbors-15/+20
2024-11-12Handle infer vars in anon consts on stableBoxy-0/+3
2024-11-12Querify MonoItem collectionBen Kimock-15/+20
2024-11-12Consolidate type system const evaluation under `traits::evaluate_const`Boxy-11/+9
2024-11-10Rollup merge of #132675 - Zalathar:empty-spans, r=jieyouxuMatthias Krüger-8/+7
2024-11-09make return type of get_alloc_info a struct, and reduce some code duplication...Ralf Jung-3/+83
2024-11-08coverage: Remove unhelpful code for handling multiple files per functionZalathar-8/+7
2024-11-04ty::BrK -> ty::BoundRegionKind::KMichael Goulet-1/+4
2024-11-03compiler: Directly use rustc_abi in metadata and middleJubilee Young-13/+13
2024-11-01Show actual MIR when MIR building forgot to terminate blockbjorn3-22/+24
2024-10-31stop using `ParamEnv::reveal` while handling MIRlcnr-17/+14
2024-10-31`ConstCx` stop using `ParamEnv::reveal`lcnr-6/+17
2024-10-26Rollup merge of #132168 - fee1-dead-contrib:fxclean, r=compiler-errorsMatthias Krüger-4/+2
2024-10-26Effects cleanupDeadbeef-4/+2
2024-10-25tcx.is_const_fn doesn't work the way it is described, remove itRalf Jung-2/+2
2024-10-23fix a couple clippy:complexitysMatthias Krüger-2/+2
2024-10-23nightly feature tracking: get rid of the per-feature bool fieldsRalf Jung-1/+1
2024-10-21Auto merge of #130950 - compiler-errors:yeet-eval, r=BoxyUwUbors-5/+13
2024-10-19Rename normalize to normalize_internal, remove unnecessary usagesMichael Goulet-1/+1
2024-10-19Get rid of const eval_* and try_eval_* helpersMichael Goulet-5/+13
2024-10-19interpret errors: add map_err_kind, rename InterpError -> InterpErrorKindRalf Jung-36/+47
2024-10-14Remove `Engine::new_gen_kill`.Nicholas Nethercote-7/+0
2024-10-12mark InterpResult as must_useRalf Jung-0/+1
2024-10-08coverage. Adapt to mcdc mapping formats introduced by llvm 19zhuyunxing-31/+30
2024-10-08coverage. MCDC ConditionId start from 0 to keep with llvm 19zhuyunxing-13/+3
2024-10-06various fixes for `naked_asm!` implementationFolkert de Vries-4/+28
2024-10-05clarify semantics of ConstantIndex MIR projectionRalf Jung-2/+4
2024-10-01Rollup merge of #130885 - RalfJung:interp-error-discard, r=oli-obkJubilee-33/+220
2024-10-01make InterpResult a dedicated type to avoid accidentally discarding the errorRalf Jung-88/+220
2024-10-01Replace -Z default-hidden-visibility with -Z default-visibilityDavid Lattimore-0/+11
2024-09-30panic when an interpreter error gets unintentionally discardedRalf Jung-9/+64
2024-09-28tweak Const::identity_unevaluated name and docsRalf Jung-1/+3
2024-09-28try to get rid of mir::Const::normalizeRalf Jung-12/+0
2024-09-25Auto merge of #130803 - cuviper:file-buffered, r=joshtriplettbors-2/+2
2024-09-24Dogfood `feature(file_buffered)`Josh Stone-2/+2
2024-09-24update doc commentLukas Markeffsky-2/+4
2024-09-24be even more precise about "cast" vs "coercion"Lukas Markeffsky-5/+14
2024-09-24replace "cast" with "coercion" where applicableLukas Markeffsky-1/+3
2024-09-24unify dyn* coercions with other pointer coercionsLukas Markeffsky-3/+0
2024-09-23Check vtable projections for validity in miriMichael Goulet-16/+19
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-34/+34
2024-09-21Compute reachable locals as part of non_ssa_localsBen Kimock-83/+41
2024-09-21Don't alloca for unused localsBen Kimock-8/+111
2024-09-14Auto merge of #128543 - RalfJung:const-interior-mut, r=fee1-deadbors-4/+43