1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-04-05 03:37:43 +00:00

Merge pull request #25 from ZornsLemma/optimise_shl_1

Optimise "CB 1:SHL" to "DUP:ADD"
Almost anything that saves bytes is faster, except for MUL/DIV. Thanks!
This commit is contained in:
David Schmenk 2017-09-12 13:09:37 -07:00 committed by GitHub
commit e59d03984a

View File

@ -1053,6 +1053,13 @@ int crunch_seq(t_opseq **seq, int pass)
freeops = 1;
break;
}
if (opnext->code == BINARY_CODE(SHL_TOKEN))
{
op->code = DUP_CODE;
opnext->code = BINARY_CODE(ADD_TOKEN);
crunched = 1;
break;
}
}
switch (opnext->code)
{