diff --git a/src/dev/w1zzrd/asm/Combine.java b/src/dev/w1zzrd/asm/Combine.java index c8af418..9239107 100644 --- a/src/dev/w1zzrd/asm/Combine.java +++ b/src/dev/w1zzrd/asm/Combine.java @@ -12,20 +12,14 @@ import jdk.internal.org.objectweb.asm.Type; import jdk.internal.org.objectweb.asm.tree.*; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; - -import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.*; -import java.util.concurrent.ThreadLocalRandom; import java.util.stream.Collectors; import static jdk.internal.org.objectweb.asm.ClassWriter.COMPUTE_MAXS; public class Combine { - private static final String VAR_NAME_CHARS = "$_qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM"; - private static final String VAR_NAME_CHARS1 = "$_qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890"; - private final ArrayList graftSources = new ArrayList<>(); private final ClassNode target; @@ -302,18 +296,6 @@ public class Combine { node.name = source.getMethodTargetName(node); } - private static LabelNode findOrMakeEndLabel(List nodes) { - AbstractInsnNode last = nodes.get(nodes.size() - 1); - - if (last instanceof LabelNode) - return (LabelNode) last; - - LabelNode label = new LabelNode(); - - nodes.add(label); - return label; - } - protected static LabelNode findOrMakeEndLabel(InsnList nodes) { AbstractInsnNode last = nodes.getLast(); @@ -413,29 +395,6 @@ public class Combine { } } - private static List decomposeToList(InsnList insns) { - try { - // This should save us some overhead - Field elementData = ArrayList.class.getDeclaredField("elementData"); - elementData.setAccessible(true); - Field size = ArrayList.class.getDeclaredField("size"); - size.setAccessible(true); - - // Make arraylist and get array of instructions - ArrayList decomposed = new ArrayList<>(); - AbstractInsnNode[] nodes = insns.toArray(); - - // Copy instructions to arraylist - elementData.set(decomposed, nodes); - size.set(decomposed, nodes.length); - - return decomposed; - } catch (NoSuchFieldException | IllegalAccessException e) { - throw new RuntimeException(e); // Probably Java 9+ - } - } - - private static void adjustArgument(MethodNode node, LocalVariableNode varNode, boolean backward, boolean insert) { if (backward) { // Finds first label or creates it @@ -817,15 +776,6 @@ public class Combine { return Arrays.asList(node.instructions.toArray()); } - protected static InsnList coalesceInstructions(List nodes) { - InsnList insns = new InsnList(); - - for(AbstractInsnNode node : nodes) - insns.add(node); - - return insns; - } - protected static List getVarsOver(List varNodes, int minIndex) { return varNodes.stream().filter(it -> it.index >= minIndex).collect(Collectors.toList()); }