bug fix: don't remove "ifeq nextByAddr", replace it with pop instead

only allow String and primitive constants


git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@643 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 05c7842853
commit 19d9836e05
  1. 58
      jode/jode/obfuscator/ConstantAnalyzer.java

@ -149,7 +149,8 @@ public class ConstantAnalyzer implements Opcodes, CodeAnalyzer {
} }
public ConstantAnalyzerInfo(int numLocals, public ConstantAnalyzerInfo(int numLocals,
boolean isStatic, MethodType mt) { boolean isStatic, String methodTypeSig) {
MethodType mt = Type.tMethod(methodTypeSig);
locals = new ConstantAnalyzerValue[numLocals]; locals = new ConstantAnalyzerValue[numLocals];
stack = new ConstantAnalyzerValue[0]; stack = new ConstantAnalyzerValue[0];
int slot = 0; int slot = 0;
@ -992,15 +993,23 @@ public class ConstantAnalyzer implements Opcodes, CodeAnalyzer {
clsValue = info.getStack(size); clsValue = info.getStack(size);
cls = clsValue.value; cls = clsValue.value;
if (cls == ConstantAnalyzerValue.VOLATILE if (cls == ConstantAnalyzerValue.VOLATILE
|| cls == null) || cls == null
|| !cls.getClass().getName().equals(ref.getClazz()))
constant = false; constant = false;
} }
if (mt.getReturnType() == Type.tVoid) { Type retType = mt.getReturnType();
if (retType == Type.tVoid) {
handleReference(ref, opcode == opc_invokevirtual handleReference(ref, opcode == opc_invokevirtual
|| opcode == opc_invokeinterface); || opcode == opc_invokeinterface);
mergeInfo(instr.nextByAddr, info.pop(size)); mergeInfo(instr.nextByAddr, info.pop(size));
break; break;
} }
if (constant
&& retType != Type.tString
&& retType.getTypeSignature().length() != 1) {
/* This is not a valid constant type */
constant = false;
}
Object methodResult = null; Object methodResult = null;
if (constant) { if (constant) {
try { try {
@ -1050,16 +1059,16 @@ public class ConstantAnalyzer implements Opcodes, CodeAnalyzer {
break; break;
} }
case opc_arraylength: { case opc_arraylength: {
ConstantAnalyzerValue array = info.getStack(1); // ConstantAnalyzerValue array = info.getStack(1);
if (array.value != ConstantAnalyzerValue.VOLATILE // if (array.value != ConstantAnalyzerValue.VOLATILE
&& array.value != null) { // && array.value != null) {
shortInfo.flags |= CONSTANT; // shortInfo.flags |= CONSTANT;
shortInfo.constant = new Integer(Array.getLength(array.value)); // shortInfo.constant = new Integer(Array.getLength(array.value));
result = new ConstantAnalyzerValue(shortInfo.constant); // result = new ConstantAnalyzerValue(shortInfo.constant);
result.addConstantListener(shortInfo); // result.addConstantListener(shortInfo);
array.addConstantListener(result); // array.addConstantListener(result);
} else // } else
result = unknownValue[0]; result = unknownValue[0];
mergeInfo(instr.nextByAddr, info.poppush(1, result)); mergeInfo(instr.nextByAddr, info.poppush(1, result));
break; break;
} }
@ -1252,6 +1261,9 @@ public class ConstantAnalyzer implements Opcodes, CodeAnalyzer {
instr.opcode = opc_pop2; instr.opcode = opc_pop2;
else else
instr.opcode = opc_pop; instr.opcode = opc_pop;
if (Obfuscator.verboseLevel > 2)
Obfuscator.err.println
(m + ": Replacing " + instr + " with goto " + pc.addr);
instr.alwaysJumps = false; instr.alwaysJumps = false;
instr.succs[0].removePredecessor(instr); instr.succs[0].removePredecessor(instr);
instr.succs = null; instr.succs = null;
@ -1287,17 +1299,29 @@ public class ConstantAnalyzer implements Opcodes, CodeAnalyzer {
/* Next instruction can't be reached logically */ /* Next instruction can't be reached logically */
instr.nextByAddr.removeInstruction(); instr.nextByAddr.removeInstruction();
} }
/* fall through */ if (instr.succs[0] == instr.nextByAddr)
instr.removeInstruction();
break;
case opc_ifeq: case opc_ifne: case opc_ifeq: case opc_ifne:
case opc_iflt: case opc_ifge: case opc_iflt: case opc_ifge:
case opc_ifgt: case opc_ifle: case opc_ifgt: case opc_ifle:
case opc_ifnull: case opc_ifnonnull:
if (instr.succs[0] == instr.nextByAddr) {
instr.opcode = opc_pop;
instr.succs[0].removePredecessor(instr);
instr.succs = null;
}
break;
case opc_if_icmpeq: case opc_if_icmpne: case opc_if_icmpeq: case opc_if_icmpne:
case opc_if_icmplt: case opc_if_icmpge: case opc_if_icmplt: case opc_if_icmpge:
case opc_if_icmpgt: case opc_if_icmple: case opc_if_icmpgt: case opc_if_icmple:
case opc_if_acmpeq: case opc_if_acmpne: case opc_if_acmpeq: case opc_if_acmpne:
case opc_ifnull: case opc_ifnonnull: if (instr.succs[0] == instr.nextByAddr) {
if (instr.succs[0] == instr.nextByAddr) instr.opcode = opc_pop2;
instr.removeInstruction(); instr.succs[0].removePredecessor(instr);
instr.succs = null;
}
break; break;
case opc_putstatic: case opc_putstatic:

Loading…
Cancel
Save