summary refs log tree commit diff
path: root/compiler/rustc_index/src/bit_set
AgeCommit message (Collapse)AuthorLines
2021-11-03Optimize live point computationMark Rousskov-0/+95
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.
2021-08-26FormattingWill Crichton-6/+6
2021-08-26Fix failing testWill Crichton-7/+7
2021-08-26Add comments and unit tests for new SparseBitMatrix methodsWill Crichton-0/+66
2021-08-26Compile failureWill Crichton-1/+1
2021-08-26Compilation failure in testsWill Crichton-6/+6
2021-08-26Fix sparse intersect bug, add more sparse / dense testsWill Crichton-1/+12
2021-08-25Add unit tests for BitSet intersect/subtractWill Crichton-1/+12
2021-02-02Add additional benchmarks to bit_setkadmin-0/+34
2020-08-30mv compiler to compiler/mark-0/+366