Switch Cranelift over to regalloc2. (#3989)
This PR switches Cranelift over to the new register allocator, regalloc2. See [this document](https://gist.github.com/cfallin/08553421a91f150254fe878f67301801) for a summary of the design changes. This switchover has implications for core VCode/MachInst types and the lowering pass. Overall, this change brings improvements to both compile time and speed of generated code (runtime), as reported in #3942: ``` Benchmark Compilation (wallclock) Execution (wallclock) blake3-scalar 25% faster 28% faster blake3-simd no diff no diff meshoptimizer 19% faster 17% faster pulldown-cmark 17% faster no diff bz2 15% faster no diff SpiderMonkey, 21% faster 2% faster fib(30) clang.wasm 42% faster N/A ```
This commit is contained in:
@@ -2137,31 +2137,31 @@
|
||||
;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(rule (lower (trap trap_code))
|
||||
(safepoint (trap_impl trap_code)))
|
||||
(side_effect (trap_impl trap_code)))
|
||||
|
||||
|
||||
;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(rule (lower (resumable_trap trap_code))
|
||||
(safepoint (trap_impl trap_code)))
|
||||
(side_effect (trap_impl trap_code)))
|
||||
|
||||
|
||||
;;;; Rules for `trapz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(rule (lower (trapz val trap_code))
|
||||
(safepoint (trap_if_bool (invert_bool (value_nonzero val)) trap_code)))
|
||||
(side_effect (trap_if_bool (invert_bool (value_nonzero val)) trap_code)))
|
||||
|
||||
|
||||
;;;; Rules for `trapnz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(rule (lower (trapnz val trap_code))
|
||||
(safepoint (trap_if_bool (value_nonzero val) trap_code)))
|
||||
(side_effect (trap_if_bool (value_nonzero val) trap_code)))
|
||||
|
||||
|
||||
;;;; Rules for `resumable_trapnz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(rule (lower (resumable_trapnz val trap_code))
|
||||
(safepoint (trap_if_bool (value_nonzero val) trap_code)))
|
||||
(side_effect (trap_if_bool (value_nonzero val) trap_code)))
|
||||
|
||||
|
||||
;;;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
@@ -2179,7 +2179,7 @@
|
||||
;; the desired comparison here; there is no separate `ifcmp` lowering.
|
||||
|
||||
(rule (lower (trapif int_cc (ifcmp x y) trap_code))
|
||||
(safepoint (trap_if_bool (icmp_val $false int_cc x y) trap_code)))
|
||||
(side_effect (trap_if_bool (icmp_val $false int_cc x y) trap_code)))
|
||||
|
||||
;; Recognize the case of `iadd_ifcout` feeding into `trapif`. Note that
|
||||
;; in the case, the `iadd_ifcout` is generated by a separate lowering
|
||||
|
||||
Reference in New Issue
Block a user