fix: check that iteration variable in for-each loop not used outside (#708)

This commit is contained in:
Skylot
2019-07-17 15:10:47 +03:00
parent aad2d24c58
commit 24dc68652e
2 changed files with 59 additions and 0 deletions
@@ -256,6 +256,13 @@ public class LoopRegionVisitor extends AbstractVisitor implements IRegionVisitor
if (iterVar == null) {
return false;
}
if (!usedOnlyInLoop(mth, loopRegion, iterVar)) {
return false;
}
if (!assignOnlyInLoop(mth, loopRegion, iterVar)) {
return false;
}
if (nextCall.contains(AFlag.WRAPPED)) {
InsnArg wrapArg = BlockUtils.searchWrappedInsnParent(mth, nextCall);
if (wrapArg != null && wrapArg.getParentInsn() != null) {
@@ -0,0 +1,52 @@
package jadx.tests.integration.loops;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import org.junit.jupiter.api.Test;
import jadx.core.dex.nodes.ClassNode;
import jadx.tests.api.IntegrationTest;
import static jadx.tests.api.utils.JadxMatchers.containsOne;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.not;
public class TestLoopDetection5 extends IntegrationTest {
public static class TestCls {
public String test(String str) {
Iterator<String> it = getStrings().iterator();
String otherStr = null;
while (it.hasNext()) {
otherStr = it.next();
if (otherStr.equalsIgnoreCase(str)) {
break;
}
}
return otherStr;
}
private List<String> getStrings() {
return Arrays.asList("str", "otherStr", "STR", "OTHERSTR");
}
public void check() {
assertThat(test("OTHERSTR"), is("otherStr"));
}
}
@Test
public void test() {
noDebugInfo();
ClassNode cls = getClassNode(TestCls.class);
String code = cls.getCode().toString();
assertThat(code, not(containsString("for (")));
assertThat(code, containsOne("it.next();"));
}
}