XXX WIP TOTALLYWRONG. pmes are stopping prematurely because returnTo is not being kept across frame dups. if I enable it, i get assert fails on frame.other.

This also always steps into invokestatics, for when two are invoked but not really the same function.
This commit is contained in:
Adam
2016-01-31 20:49:54 -05:00
parent 8e73f37eba
commit 9d3ba7e1cf
3 changed files with 133 additions and 61 deletions

View File

@@ -85,8 +85,8 @@ public class MapStaticTest
ClassGroup group1 = JarUtil.loadJar(new File(JAR1));
ClassGroup group2 = JarUtil.loadJar(new File(JAR2));
Method m1 = group1.findClass("class183").findMethod("method3685");
Method m2 = group2.findClass("class183").findMethod("method3560");
Method m1 = group1.findClass("client").findMethod("vmethod3096");
Method m2 = group2.findClass("client").findMethod("vmethod2975");
ParallelExecutorMapping mappings = MappingExecutorUtil.map(m1, m2);
@@ -114,7 +114,7 @@ public class MapStaticTest
map(all, new HashSet(), m1, m2);
}
@Test
//@Test
public void testAllDeep() throws IOException
{
ClassGroup group1 = JarUtil.loadJar(new File(JAR1));