about summary refs log tree commit diff
path: root/tests/mir-opt/pre-codegen/slice_iter.range_loop.PreCodegen.after.panic-unwind.mir
AgeCommit message (Collapse)AuthorLines
2025-05-21Add some track_caller info to precondition panicsBen Kimock-1/+1
2025-03-12Allow more top-down inlining for single-BB calleesScott McMurray-14/+16
This means that things like `<usize as Step>::forward_unchecked` and `<PartialOrd for f32>::le` will inline even if we've already done a bunch of inlining to find the calls to them.
2025-01-27Reapply "Auto merge of #133734 - scottmcm:lower-indexing-to-ptrmetadata, ↵Michael Goulet-16/+14
r=davidtwco,RalfJung" This reverts commit 122a55bb442bd1995df9cf9b36e6f65ed3ef4a1d.
2025-01-18Revert "Auto merge of #133734 - scottmcm:lower-indexing-to-ptrmetadata, ↵Rémy Rakic-14/+16
r=davidtwco,RalfJung" This reverts commit b57d93d8b9525fa261404b4cd9c0670eeb1264b8, reversing changes made to 0aeaa5eb22180fdf12a8489e63c4daa18da6f236.
2024-12-03Bounds-check with PtrMetadata instead of Len in MIRScott McMurray-16/+14
2024-08-18Bless *all* the mir-opt testsScott McMurray-10/+10
2024-06-20Replace `NormalizeArrayLen` with `GVN`Scott McMurray-1/+1
GVN is actually on in release, and covers all the same things (or more), with `LowerSliceLen` changed to produce `PtrMetadata`.
2024-05-31Revert "Auto merge of #115105 - cjgillot:dest-prop-default, r=oli-obk"Camille GILLOT-25/+31
This reverts commit cfb730450f847bb622243eaaab15e77e58d91767, reversing changes made to 91c0823ee63e793d990bb9fed898dc95b5d6db51.
2024-05-29Enable DestinationPropagation by default.Camille GILLOT-31/+25
2024-04-18At debuginfo=0, don't inline debuginfo when inliningScott McMurray-74/+49
2024-04-03Remove MIR unsafe checkMatthew Jasper-3/+1
This also remove safety information from MIR.
2024-02-09Enable by default.Camille GILLOT-67/+46
2024-01-11Sandwich MIR optimizations between DSE.Camille GILLOT-1/+1
2023-12-24Enable GVN by default.Camille GILLOT-1/+5
2023-11-26Update std::simd usage and test outputsCaleb Zulawski-1/+1
2023-10-06Preserve DebugInfo in DeadStoreElimination.Camille GILLOT-64/+67
2023-09-01update tests that are ignored by debugDing Xiang Fei-2/+4
2023-08-24make MIR less verboseRalf Jung-1/+1
2023-08-24bless more mir-opt tests by handRalf Jung-1/+1
2023-08-17Bless mir-opt tests.Camille GILLOT-57/+71
2023-07-10Call super for debuginfo.Camille GILLOT-65/+57
2023-07-10Enable by default.Camille GILLOT-64/+55
2023-06-23Bless testsGary Guo-1/+1
2023-06-15Remove comments from mir-opt MIR dumpsBen Kimock-101/+95
2023-06-12bless mir-optPietro Albini-0/+161
To reproduce the changes in this commit locally: - Run `./x test tidy` and remove all the output files not associated with a test file anymore, as reported by tidy. - Run `./x test tests/mir-opt --bless` to generate the new outputs.