Files
dolphin/Source
Sintendo 2d3c7fca8d Jit64: boolX - Optimize or for size
OR allows for a more compact representation for constants that can be
represented by a signed 8-bit integer, while MOV does not. By letting
MOV handle the larger constants we can occasionally save a byte.

Before:
45 8B F5             mov         r14d,r13d
41 81 CE 00 80 01 00 or          r14d,18000h

After:
41 BE 00 80 01 00    mov         r14d,18000h
45 0B F5             or          r14d,r13d
2021-01-28 23:16:48 +01:00
..
2021-01-28 23:16:48 +01:00
2020-12-27 06:38:02 -05:00
2021-01-09 22:26:55 -08:00
2020-05-13 20:53:10 +02:00