index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
compiler
/
rustc_mir_transform
/
src
/
jump_threading.rs
Age
Commit message (
Expand
)
Author
Lines
2025-09-26
Handle self-loops too.
Camille Gillot
-3
/
+5
2025-09-26
JumpThreading: Avoid computing dominators to identify loop headers.
Camille Gillot
-17
/
+23
2025-06-27
Add InterpCx::layout_of with tracing, shadowing LayoutOf
Stypox
-1
/
+0
2025-06-15
Only traverse reachable blocks in JumpThreading.
Camille GILLOT
-1
/
+1
2025-06-05
Update `InterpCx::project_field` to take `FieldIdx`
Scott McMurray
-1
/
+1
2025-05-03
Auto merge of #140464 - oli-obk:successors-mut-perf, r=petrochenkov
bors
-2
/
+2
2025-04-29
Auto merge of #140023 - cjgillot:arena-try-alloc, r=BoxyUwU
bors
-10
/
+2
2025-04-29
Use a closure instead of three chained iterators
Oli Scherer
-2
/
+2
2025-04-19
Introduce Arena::try_alloc_from_iter.
Camille GILLOT
-10
/
+2
2025-04-18
Remove early exits from JumpThreading.
Camille GILLOT
-71
/
+64
2025-04-13
JumpThreading: Bail out on interp errors
clubby789
-67
/
+91
2025-04-13
JumpThreading: Re-enable and fix Not ops on non-booleans
clubby789
-18
/
+11
2025-02-22
Greatly simplify lifetime captures in edition 2024
Michael Goulet
-2
/
+2
2025-02-22
Fix binding mode problems
Michael Goulet
-1
/
+1
2025-01-23
Disable non-required MIR opts with `optimize(none)`
clubby789
-0
/
+4
2025-01-11
rename `BitSet` to `DenseBitSet`
Rémy Rakic
-4
/
+4
2024-12-18
Variants::Single: do not use invalid VariantIdx for uninhabited enums
Ralf Jung
-24
/
+7
2024-11-20
reduce false positives of tail-expr-drop-order from consumed values
Ding Xiang Fei
-0
/
+1
2024-11-19
`InterpCx` store `TypingEnv` instead of a `ParamEnv`
lcnr
-1
/
+1
2024-11-18
use `TypingEnv` when no `infcx` is available
lcnr
-7
/
+7
2024-11-03
compiler: Directly use rustc_abi in mir_transform
Jubilee Young
-1
/
+1
2024-10-03
Disable jump threading UnOp::Not for non-bool
Michael Goulet
-0
/
+8
2024-10-01
make InterpResult a dedicated type to avoid accidentally discarding the error
Ralf Jung
-27
/
+17
2024-09-30
panic when an interpreter error gets unintentionally discarded
Ralf Jung
-17
/
+36
2024-09-28
try to get rid of mir::Const::normalize
Ralf Jung
-3
/
+1
2024-09-22
Reformat using the new identifier sorting from rustfmt
Michael Goulet
-1
/
+1
2024-09-13
Rename and reorder lots of lifetimes.
Nicholas Nethercote
-2
/
+2
2024-09-10
Remove references from some structs.
Nicholas Nethercote
-22
/
+20
2024-09-09
Reduce visibilities, and add `warn(unreachable_pub)`.
Nicholas Nethercote
-1
/
+1
2024-09-03
Move `MirPass` to `rustc_mir_transform`.
Nicholas Nethercote
-1
/
+1
2024-08-31
Rollup merge of #129767 - nnethercote:rm-extern-crate-tracing-4, r=jieyouxu
Matthias Krüger
-0
/
+1
2024-08-30
Remove `#[macro_use] extern crate tracing` from `rustc_mir_transform`.
Nicholas Nethercote
-0
/
+1
2024-08-30
Remove `Option<!>` return types.
Nicholas Nethercote
-54
/
+56
2024-07-27
Disable jump threading of float equality
Nilstrieb
-0
/
+7
2024-07-13
Create mapped places upon seeing them in the body.
Camille GILLOT
-1
/
+1
2024-07-07
Support tail calls in mir via `TerminatorKind::TailCall`
Maybe Waffle
-0
/
+1
2024-07-01
Make jump threading state sparse.
Camille GILLOT
-5
/
+14
2024-06-29
Move entry point to a method.
Camille GILLOT
-37
/
+42
2024-06-29
Avoid cloning state when possible.
Camille GILLOT
-6
/
+8
2024-05-27
interpret: get rid of 'mir lifetime everywhere
Ralf Jung
-1
/
+1
2024-05-13
Remove `extern crate rustc_middle` from `rustc_mir_transform`.
Nicholas Nethercote
-0
/
+1
2024-03-22
Rollup merge of #122784 - jswrenn:tag_for_variant, r=compiler-errors
Matthias Krüger
-1
/
+1
2024-03-22
Add `tag_for_variant` query
Jack Wrenn
-1
/
+1
2024-03-18
Avoid various uses of `Option<Span>` in favor of using `DUMMY_SP` in the few ...
Oli Scherer
-1
/
+1
2024-03-14
preserve span when evaluating mir::ConstOperand
Ralf Jung
-1
/
+2
2024-02-15
Skip coroutines in jump threading to avoid query cycles
Tomasz Miąsko
-0
/
+6
2024-02-09
Enable by default.
Camille GILLOT
-1
/
+1
2024-01-23
Do not thread through Assert terminator.
Camille GILLOT
-15
/
+2
2024-01-18
Extract process_assign.
Camille GILLOT
-89
/
+79
2024-01-18
Extract process_constant.
Camille GILLOT
-34
/
+44
[next]