blob: 17d938741c763a230d98d693e24f3cd3e1a59230 [file] [log] [blame]
import java.io.*;
import java.util.Iterator;
import org.apache.bcel.classfile.*;
import org.apache.bcel.generic.*;
import org.apache.bcel.Repository;
import org.apache.bcel.util.InstructionFinder;
/**
* Remove NOPs from given class
*
* @version $Id$
* @author <A HREF="http://www.berlin.de/~markus.dahm/">M. Dahm</A>
*/
public class Peephole {
public static void main(String[] argv) {
try {
/* Load the class from CLASSPATH.
*/
JavaClass clazz = Repository.lookupClass(argv[0]);
Method[] methods = clazz.getMethods();
ConstantPoolGen cp = new ConstantPoolGen(clazz.getConstantPool());
for(int i=0; i < methods.length; i++) {
if(!(methods[i].isAbstract() || methods[i].isNative())) {
MethodGen mg = new MethodGen(methods[i],
clazz.getClassName(), cp);
Method stripped = removeNOPs(mg);
if(stripped != null) // Any NOPs stripped?
methods[i] = stripped; // Overwrite with stripped method
}
}
/* Dump the class to <class name>_.class
*/
clazz.setConstantPool(cp.getFinalConstantPool());
clazz.dump(clazz.getClassName() + "_.class");
} catch(Exception e) { e.printStackTrace(); }
}
private static final Method removeNOPs(MethodGen mg) {
InstructionList il = mg.getInstructionList();
InstructionFinder f = new InstructionFinder(il);
String pat = "NOP+"; // Find at least one NOP
InstructionHandle next = null;
int count = 0;
for(Iterator e = f.search(pat); e.hasNext(); ) {
InstructionHandle[] match = (InstructionHandle[])e.next();
InstructionHandle first = match[0];
InstructionHandle last = match[match.length - 1];
/* Some nasty Java compilers may add NOP at end of method.
*/
if((next = last.getNext()) == null)
break;
count += match.length;
/* Delete NOPs and redirect any references to them to the following
* (non-nop) instruction.
*/
try {
il.delete(first, last);
} catch(TargetLostException e2) {
InstructionHandle[] targets = e2.getTargets();
for(int i=0; i < targets.length; i++) {
InstructionTargeter[] targeters = targets[i].getTargeters();
for(int j=0; j < targeters.length; j++)
targeters[j].updateTarget(targets[i], next);
}
}
}
Method m = null;
if(count > 0) {
System.out.println("Removed " + count + " NOP instructions from method " +
mg.getName());
m = mg.getMethod();
}
il.dispose(); // Reuse instruction handles
return m;
}
}