Optimize live point computation

This is just replicating the previous algorithm, but taking advantage of the
bitset structures to optimize into tighter and better optimized loops.
Particularly advantageous on enormous MIR blocks, which are relatively rare in
practice.
This commit is contained in:
Mark Rousskov 2021-11-01 10:04:01 -04:00
parent ff0e14829e
commit 03afb61b53
5 changed files with 278 additions and 29 deletions

View file

@ -3,7 +3,9 @@
#![feature(extend_one)]
#![feature(iter_zip)]
#![feature(min_specialization)]
#![feature(step_trait)]
#![feature(test)]
#![feature(let_else)]
pub mod bit_set;
pub mod vec;