x64 backend: add lowerings with load-op-store fusion. (#4071)
x64 backend: add lowerings with load-op-store fusion. These lowerings use the `OP [mem], reg` forms (or in AT&T syntax, `OP %reg, (mem)`) -- i.e., x86 instructions that load from memory, perform an ALU operation, and store the result, all in one instruction. Using these instruction forms, we can merge three CLIF ops together: a load, an arithmetic operation, and a store.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
src/clif.isle 443b34b797fc8ace
|
||||
src/prelude.isle d8a93eb727abd7f4
|
||||
src/isa/x64/inst.isle 2fa48b8183f9d5cb
|
||||
src/isa/x64/lower.isle b7fe1c95c21edbe4
|
||||
src/isa/x64/inst.isle 6dcba190988a695
|
||||
src/isa/x64/lower.isle b95161bdf07b9365
|
||||
|
||||
1162
cranelift/codegen/src/isa/x64/lower/isle/generated_code.rs
generated
1162
cranelift/codegen/src/isa/x64/lower/isle/generated_code.rs
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user