]> git.lizzy.rs Git - rust.git/history - src/optimize/stack2reg.rs
Build with `-Cpanic=unwind` by default
[rust.git] / src / optimize / stack2reg.rs
2021-03-29 bjorn3Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1...
2021-03-26 bjorn3Sync from rust 4137088d9da94f693b287f35e2b17782c0b1a283
2021-03-17 bjorn3Sync from rust 04ae50179a802d1d18bb780baa85f55864f56616
2021-03-09 bjorn3Sync from rust 4b9f5cc4c10a161047475cb9bbe02c4fda57fb07
2021-03-08 borsAuto merge of #82727 - oli-obk:shrinkmem, r=pnkfelix
2021-03-06 bjorn3Add clif comments when in release mode
2021-03-05 bjorn3Merge commit '9a0c32934ebe376128230aa8da3275697b2053e7...
2021-03-05 bjorn3Rustfmt
2020-11-03 bjorn3Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d...
2020-10-28 bjorn3Fix many clippy warnings
2020-10-15 bjorn3Fix a compilation error in debug mode
2020-10-15 bjorn3Fix warning
2020-09-15 bjorn3Remove hashbrown usage
2020-09-03 bjorn3Merge pull request #1080 from mbrubeck/deps
2020-09-03 Matt BrubeckUpdate to hashbrown 0.9
2020-08-28 bjorn3Merge pull request #1079 from CohenArthur/fmt-master
2020-08-28 CohenArthurfmt: Run cargo fmt since it is available
2020-08-23 bjorn3Merge pull request #1078 from CohenArthur/remove-clone...
2020-08-23 CohenArthurstack2reg: Switch to hashbrown::HashSet
2020-08-23 CohenArthurstack2reg: Drain instead of only iterating
2020-08-23 CohenArthurstack2reg: Remove clone() using filters
2020-08-23 CohenArthurstack2reg: Remove self in remove_unused_stack_addr...
2020-08-23 CohenArthurstack2reg: Re-add clone() to stop CI
2020-08-23 CohenArthurremove_unused_stack_addr_and_stack_load: Remove clone()
2020-04-09 bjorn3Fix rustc::internals lint warnings
2020-04-09 bjorn3Enable the rust_2018_idioms and unused_lifetimes lints...
2020-03-24 bjorn3Fix warnings
2020-03-20 bjorn3Add clif ir comments for stack2reg opt
2020-02-22 bjorn3Silence some warnings
2020-02-14 bjorn3Update Cranelift for basic blocks
2020-01-22 bjorn3Make unused stack slots zero sized in stack2reg
2020-01-11 bjorn3Move all cold code to the end of the function
2020-01-04 bjorn3Merge pull request #853 from bjorn3/opt_stack2reg
2020-01-04 bjorn3Add documentation about the UB of the stack2reg optimiz...
2019-12-31 bjorn3Fix some warnings
2019-12-31 bjorn3Don't print debug messages in release mode
2019-12-31 bjorn3Remove unnecessary check from temporal_order
2019-12-31 bjorn3Support store to load forwarding for different types...
2019-12-31 bjorn3Fix potential_stores_for_load
2019-12-31 bjorn3Return use domtree.dominates in temporal_order
2019-12-31 bjorn3Add functions to remove loads stores etc
2019-12-31 bjorn3Extract potential_stores_for_load and potential_loads_o...
2019-12-31 bjorn3Let remove_unused_stack_addr_and_stack_load take Optimi...
2019-12-31 bjorn3Add OptimizeContext
2019-12-31 bjorn3Remove stack_store without following stack_load
2019-12-31 bjorn3Fix temporal_order argument order for store to load...
2019-12-31 bjorn3Extract temporal_order function
2019-12-31 bjorn3Fix compilation
2019-12-31 bjorn3Check for cross-ebb temporal overlap between loads...
2019-12-31 bjorn3Run dead stack_store removal after stack_store to stack...
2019-12-31 bjorn3[WIP] Implement basic stack store to load forwarding
2019-12-31 bjorn3Refactor stack_store removal
2019-12-31 bjorn3Extract remove_unused_stack_addr_and_stack_load
2019-12-31 bjorn3Group by stack slot earlier
2019-12-31 bjorn3Merge stack_{addr,load}_insts_users
2019-12-31 bjorn3Use BTreeSet and BTreeMap instead of SecondaryMap
2019-12-31 bjorn3Record users of stack_addr and stack_load return values
2019-12-31 bjorn3Outline combine_stack_addr_with_load_store and remove...
2019-12-31 bjorn3Re-order some code
2019-12-31 bjorn3[WIP] Add stack2reg optimization pass