Skip to content

Better arm immediate handling

Andreas Klebinger requested to merge wip/andreask/arm_immediates into master
Aarch64 NCG: Use encoded immediates for literals.

Try to generate

    instr x2, <imm>

instead of

    mov x1, lit
    instr x2, x1

When possible. This get's rid if quite a few redundant
mov instructions.
Edited by Andreas Klebinger

Merge request reports