aarch64: Add support for the fmls instruction (#5895)
This commit adds lowerings to the AArch64 backend for the `fmls` instruction which is intended to be leveraged in the relaxed-simd proposal for WebAssembly. This should hopefully allow for a teeny-bit-more efficient codegen for this operator instead of using the `fmla` instruction plus a negation instruction.
This commit is contained in:
@@ -852,7 +852,7 @@
|
||||
(rd WritableReg)
|
||||
;; Offset in range -2^20 .. 2^20.
|
||||
(off i32))
|
||||
|
||||
|
||||
;; Compute the address (using a PC-relative offset) of a 4KB page.
|
||||
(Adrp
|
||||
(rd WritableReg)
|
||||
@@ -1401,6 +1401,8 @@
|
||||
(Bsl)
|
||||
;; Floating-point fused multiply-add vectors
|
||||
(Fmla)
|
||||
;; Floating-point fused multiply-subtract vectors
|
||||
(Fmls)
|
||||
))
|
||||
|
||||
;; A Vector miscellaneous operation with two registers.
|
||||
|
||||
Reference in New Issue
Block a user