another test

This commit is contained in:
Adam
2016-01-17 17:00:43 -05:00
parent a82a9ba4b9
commit c632beac50
2 changed files with 39 additions and 2 deletions

View File

@@ -2,6 +2,9 @@ package net.runelite.deob.attributes.code.instructions;
import net.runelite.deob.attributes.code.InstructionType;
import net.runelite.deob.attributes.code.Instructions;
import net.runelite.deob.attributes.code.instruction.types.PushConstantInstruction;
import net.runelite.deob.execution.InstructionContext;
import net.runelite.deob.execution.StackContext;
public class IfICmpNe extends If
{
@@ -10,4 +13,36 @@ public class IfICmpNe extends If
super(instructions, type, pc);
}
private static boolean isZero(StackContext s)
{
if (s.getPushed().getInstruction() instanceof PushConstantInstruction)
{
PushConstantInstruction pc = (PushConstantInstruction) s.getPushed().getInstruction();
Object o = pc.getConstant().getObject();
if (o instanceof Integer && (int) o == 0)
return true;
}
return false;
}
@Override
public boolean isSame(InstructionContext thisIc, InstructionContext otherIc)
{
if (super.isSame(thisIc, otherIc))
return true;
// check for other being ifne and this has a constant 0
if (otherIc.getInstruction() instanceof IfNe)
{
StackContext s1 = thisIc.getPops().get(0),
s2 = thisIc.getPops().get(1);
if (isZero(s1) || isZero(s2))
return true;
}
return false;
}
}