]> git.lizzy.rs Git - rust.git/history - src/optimize
Use cranelift's `Type::int` instead of doing the match myself
[rust.git] / src / optimize /
2021-07-07 bjorn3Merge commit '3a31c6d8272c14388a34622193baf553636fe470...
2021-05-12 borsAuto merge of #83610 - bjorn3:driver_cleanup, r=cjgillot
2021-04-30 Erin PowerSync rustc_codegen_cranelift 'ddd4ce25535cf71203ba37008...
2021-03-29 bjorn3Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1...
2021-03-08 borsAuto merge of #82727 - oli-obk:shrinkmem, r=pnkfelix
2021-03-05 bjorn3Merge commit '9a0c32934ebe376128230aa8da3275697b2053e7...
2020-12-27 bjorn3Merge commit 'dbee13661efa269cb4cd57bb4c6b99a19732b484...
2020-11-03 bjorn3Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d...
2020-10-15 bjorn3Fix a compilation error in debug mode
2020-10-15 bjorn3Fix warning
2020-09-23 bjorn3Document almost all modules
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-30 bjorn3Optimize SwitchInt for bools
2020-08-28 bjorn3Merge pull request #1079 from CohenArthur/fmt-master
2020-08-28 CohenArthuroptimize: Remove conditional compilation on instance
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-06-16 bjorn3Only call build_value_labels_ranges when necessary
2020-05-29 bjorn3Merge pull request #1022 from osa1/clif_dump_in_release...
2020-05-29 Ömer Sinan AğacanDump clif with --emit llvm-ir in release mode
2020-04-09 bjorn3Fix rustc::internals lint warnings
2020-04-09 bjorn3Enable the rust_2018_idioms and unused_lifetimes lints...
2020-03-27 bjorn3Limit publicness to crate where possible and remove...
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-02-01 bjorn3Don't mark unwind ebbs as cold
2020-01-25 bjorn3Disable the code_layout optimization
2020-01-22 bjorn3Make unused stack slots zero sized in stack2reg
2020-01-14 bjorn3Reduce visibility
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 bjorn3Disable stack2reg opt when optimizations are disabled
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