org.microemu.app.classloader.ChangeCallsClassVisitor Maven / Gradle / Ivy
/**
* MicroEmulator
* Copyright (C) 2006-2007 Bartek Teodorczyk
* Copyright (C) 2006-2007 Vlad Skarzhevskyy
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @version $Id: ChangeCallsClassVisitor.java 1140 2007-03-30 00:10:36Z vlads $
*/
package org.microemu.app.classloader;
import org.microemu.app.util.MIDletThread;
import org.objectweb.asm.ClassAdapter;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.MethodVisitor;
/**
* @author vlads
*
*/
public class ChangeCallsClassVisitor extends ClassAdapter {
InstrumentationConfig config;
public ChangeCallsClassVisitor(ClassVisitor cv, InstrumentationConfig config) {
super(cv);
this.config = config;
}
public void visit(final int version, final int access, final String name, final String signature, String superName, final String[] interfaces) {
if ((config.isEnhanceThreadCreation()) && (superName.equals("java/lang/Thread"))) {
superName = ChangeCallsMethodVisitor.codeName(MIDletThread.class);
}
super.visit(version, access, name, signature, superName, interfaces);
}
public MethodVisitor visitMethod(final int access, final String name, final String desc, final String signature, final String[] exceptions) {
return new ChangeCallsMethodVisitor(super.visitMethod(access, name, desc, signature, exceptions), config);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy