1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-03 07:29:37 +00:00

Optimized logic for speed

This commit is contained in:
Flight_Control 2023-04-01 07:00:58 +02:00
parent fb77d7629d
commit 7e5b2caa37

View File

@ -143,9 +143,7 @@ public abstract class Pass4MemoryCoalesce extends Pass2Base {
// Check the both registers have the same type
if(!register1.getType().equals(register2.getType()))
return false;
if(register1.toString().startsWith("mem"))
return false;
if(register2.toString().startsWith("mem"))
if(register1.getType() == Registers.RegisterType.MAIN_MEM)
return false;
// Check the both registers have the same size
if(register1.getBytes() != register2.getBytes())