about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/mir
AgeCommit message (Expand)AuthorLines
2023-10-02subtyping_projectionsouz-a-1/+7
2023-10-02MIRI -> MiriRalf Jung-1/+1
2023-10-01Auto merge of #116281 - Nadrieril:eager-const-eval, r=cjgillotbors-1/+10
2023-10-01Move `eval_bits` optimization upstreamNadrieril-1/+10
2023-09-30Auto merge of #116254 - WaffleLapkin:nicen-traversal, r=cjgillotbors-72/+45
2023-09-30dont call mir.post_mono_checks in codegenRalf Jung-44/+1
2023-09-29Remove deleted docs + better link together MIR traversing docsMaybe Waffle-2/+37
2023-09-28Use `and_then` instead of while let chain to clarify `iter` scopeMaybe Waffle-1/+1
2023-09-28Remove unnecessary `&mut/ref mut` pairMaybe Waffle-1/+1
2023-09-28Don't resolve basic block data in `Postorder`Maybe Waffle-7/+6
2023-09-28`(&mut iter)` -> `iter.by_ref()`Maybe Waffle-1/+1
2023-09-28Simplify `Postorder::next`Maybe Waffle-6/+4
2023-09-28Remove `ReversePostorder` altogetherMaybe Waffle-58/+0
2023-09-28Remove outdated commentMaybe Waffle-2/+1
2023-09-28Add a mir validation check to prevent OpaqueCast after analysis passes finishOli Scherer-0/+1
2023-09-28Rollup merge of #116211 - matthiaskrgr:clippy3, r=compiler-errorsMatthias Krüger-2/+2
2023-09-27fix clippy::{redundant_guards, useless_format}Matthias Krüger-2/+2
2023-09-27Auto merge of #109597 - cjgillot:gvn, r=oli-obkbors-1/+1
2023-09-24Remove span from BrAnon.Camille GILLOT-2/+1
2023-09-24Add global value numbering pass.Camille GILLOT-1/+1
2023-09-23Auto merge of #116052 - oli-obk:ceci_nest_pas_une_query, r=WaffleLapkinbors-1/+1
2023-09-22Auto merge of #115696 - RalfJung:closure-ty-print, r=oli-obkbors-3/+3
2023-09-22Add a way to decouple the implementation and the declaration of a TyCtxt method.Oli Scherer-1/+1
2023-09-21adjust how closure/generator types and rvalues are printedRalf Jung-3/+3
2023-09-21Auto merge of #114399 - Zalathar:no-renumber, r=jackh726bors-10/+0
2023-09-21Rollup merge of #115972 - RalfJung:const-consistency, r=oli-obkGuillaume Gomez-134/+124
2023-09-21coverage: Don't bother renumbering expressions on the Rust sideZalathar-10/+0
2023-09-21rename mir::Constant -> mir::ConstOperand, mir::ConstKind -> mir::ConstRalf Jung-123/+118
2023-09-20Auto merge of #115870 - RalfJung:const-value-slice, r=oli-obkbors-9/+18
2023-09-20Auto merge of #115827 - eduardosm:miri-sse-reduce-code-dup, r=RalfJungbors-4/+18
2023-09-20the Const::eval_bits methods don't need to be given the TyRalf Jung-11/+6
2023-09-19adjust constValue::Slice to work for arbitrary slice typesRalf Jung-9/+18
2023-09-19comment on the difference between mir::ConstantKind::Unevaluated and mir::Con...Ralf Jung-0/+5
2023-09-19move ConstValue into mirRalf Jung-169/+169
2023-09-19organize mir pretty.rs and move more things into it; move statement-related t...Ralf Jung-1371/+1393
2023-09-19use pretty_print_const_value from MIR constant 'extra' printingRalf Jung-127/+133
2023-09-19move some MIR const pretty-printing into pretty.rsRalf Jung-177/+161
2023-09-19more MIR const types to separate fileRalf Jung-409/+422
2023-09-18Auto merge of #115748 - RalfJung:post-mono, r=oli-obkbors-19/+93
2023-09-18Remove more unused `Lift` impls.Nicholas Nethercote-4/+4
2023-09-18Remove unused `Lift` derives.Nicholas Nethercote-4/+4
2023-09-16miri: reduce code duplication in SSE/SSE2 bin_op_* functionsEduardo Sánchez Muñoz-4/+8
2023-09-14don't point at const usage site for resolution-time errorsRalf Jung-17/+41
2023-09-14move required_consts check to general post-mono-check functionRalf Jung-10/+60
2023-09-14Auto merge of #115804 - RalfJung:valtree-to-const-val, r=oli-obkbors-17/+17
2023-09-14Auto merge of #115817 - fee1-dead-contrib:fix-codegen, r=oli-obkbors-3/+5
2023-09-14fix clippy (and MIR printing) handling of ConstValue::Indirect slicesRalf Jung-26/+62
2023-09-14don't force all slice-typed ConstValue to be ConstValue::SliceRalf Jung-18/+7
2023-09-14treat host effect params as erased generics in codegenDeadbeef-3/+5
2023-09-14found another place where we can eval() a const, and go through valtreesRalf Jung-1/+5