⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sideeffectinstructionchecker.java

📁 j2me 混淆包,用于混淆j2me的原代码用的
💻 JAVA
字号:
/* $Id: SideEffectInstructionChecker.java,v 1.8 2004/12/11 20:10:10 eric Exp $ * * ProGuard -- shrinking, optimization, and obfuscation of Java class files. * * Copyright (c) 2002-2004 Eric Lafortune (eric@graphics.cornell.edu) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program 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 General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package proguard.optimize;import proguard.classfile.*;import proguard.classfile.attribute.*;import proguard.classfile.instruction.*;import proguard.classfile.visitor.*;/** * This class can tell whether an instruction has any side effects. Return * instructions can be included or not. * * @see WriteOnlyFieldMarker * @see NoSideEffectMethodMarker * @see SideEffectMethodMarker * @author Eric Lafortune */public class SideEffectInstructionChecker  implements InstructionVisitor,             CpInfoVisitor,             MemberInfoVisitor{    private boolean includeReturnInstructions;    // Parameters and values for visitor methods.    private boolean hasSideEffects;    private boolean virtual;    public SideEffectInstructionChecker(boolean includeReturnInstructions)    {        this.includeReturnInstructions = includeReturnInstructions;    }    public boolean hasSideEffects(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, Instruction instruction)    {        hasSideEffects = false;        instruction.accept(classFile, methodInfo,  codeAttrInfo, offset, this);        return hasSideEffects;    }    // Implementations for InstructionVisitor.    public void visitBranchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, BranchInstruction branchInstruction) {}    public void visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction) {}    public void visitLookUpSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) {}    public void visitSimpleInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, SimpleInstruction simpleInstruction)    {        byte opcode = simpleInstruction.opcode;        // Check for instructions that might cause side effects.        if (opcode == InstructionConstants.OP_IASTORE      ||            opcode == InstructionConstants.OP_LASTORE      ||            opcode == InstructionConstants.OP_FASTORE      ||            opcode == InstructionConstants.OP_DASTORE      ||            opcode == InstructionConstants.OP_AASTORE      ||            opcode == InstructionConstants.OP_BASTORE      ||            opcode == InstructionConstants.OP_CASTORE      ||            opcode == InstructionConstants.OP_SASTORE      ||            opcode == InstructionConstants.OP_ATHROW       ||            opcode == InstructionConstants.OP_MONITORENTER ||            opcode == InstructionConstants.OP_MONITOREXIT  ||            (includeReturnInstructions &&             (opcode == InstructionConstants.OP_IRETURN ||              opcode == InstructionConstants.OP_LRETURN ||              opcode == InstructionConstants.OP_FRETURN ||              opcode == InstructionConstants.OP_DRETURN ||              opcode == InstructionConstants.OP_ARETURN ||              opcode == InstructionConstants.OP_RETURN))) {            // These instructions always cause a side effect.            hasSideEffects = true;        }    }    public void visitVariableInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, VariableInstruction variableInstruction)    {        byte opcode = variableInstruction.opcode;        // Check for instructions that might cause side effects.        if (includeReturnInstructions &&            opcode == InstructionConstants.OP_RET)        {            hasSideEffects = true;        }    }    public void visitCpInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, CpInstruction cpInstruction)    {        byte opcode = cpInstruction.opcode;        // Check for instructions that might cause side effects.        if      (opcode == InstructionConstants.OP_PUTSTATIC     ||                 opcode == InstructionConstants.OP_PUTFIELD)        {            // Check if the field is write-only.            classFile.constantPoolEntryAccept(cpInstruction.cpIndex, this);        }        else if (opcode == InstructionConstants.OP_INVOKESPECIAL ||                 opcode == InstructionConstants.OP_INVOKESTATIC)        {            // Check if the invoked method is causing any side effects.            virtual = false;            classFile.constantPoolEntryAccept(cpInstruction.cpIndex, this);        }        else if (opcode == InstructionConstants.OP_INVOKEVIRTUAL ||                 opcode == InstructionConstants.OP_INVOKEINTERFACE)        {            // Check if the invoked method is causing any side effects.            virtual = true;            classFile.constantPoolEntryAccept(cpInstruction.cpIndex, this);        }    }    // Implementations for CpInfoVisitor.    public void visitIntegerCpInfo(ClassFile classFile, IntegerCpInfo integerCpInfo) {}    public void visitLongCpInfo(ClassFile classFile, LongCpInfo longCpInfo) {}    public void visitFloatCpInfo(ClassFile classFile, FloatCpInfo floatCpInfo) {}    public void visitDoubleCpInfo(ClassFile classFile, DoubleCpInfo doubleCpInfo) {}    public void visitStringCpInfo(ClassFile classFile, StringCpInfo stringCpInfo) {}    public void visitUtf8CpInfo(ClassFile classFile, Utf8CpInfo utf8CpInfo) {}    public void visitClassCpInfo(ClassFile classFile, ClassCpInfo classCpInfo) {}    public void visitNameAndTypeCpInfo(ClassFile classFile, NameAndTypeCpInfo nameAndTypeCpInfo) {}    public void visitFieldrefCpInfo(ClassFile classFile, FieldrefCpInfo fieldrefCpInfo)    {        hasSideEffects = !WriteOnlyFieldMarker.isWriteOnly(fieldrefCpInfo.referencedMemberInfo);    }    public void visitInterfaceMethodrefCpInfo(ClassFile classFile, InterfaceMethodrefCpInfo interfaceMethodrefCpInfo)    {        // Do we have a reference to the interface method?        if (interfaceMethodrefCpInfo.referencedMemberInfo == null)        {            // We'll have to assume the unknown interface method has side effects.            hasSideEffects = true;        }        else        {            // First check the referenced interface method itself.            interfaceMethodrefCpInfo.referencedMemberInfoAccept(this);            // If the result isn't conclusive, check up and down the hierarchy.            if (!hasSideEffects)            {                String name = interfaceMethodrefCpInfo.getName(classFile);                String type = interfaceMethodrefCpInfo.getType(classFile);                // Check all implementations of the method.                // First go to  all concrete classes of the interface.                // From there, travel up and down the class hierarchy to check                // the method.                //                // This way, we're also catching retro-fitted interfaces, where                // a class's implementation of an interface method is hiding                // higher up its class hierarchy.                interfaceMethodrefCpInfo.referencedClassAccept(                    new ConcreteClassFileDownTraveler(                    new ClassFileHierarchyTraveler(true, true, false, true,                    new NamedMethodVisitor(name, type, this))));            }        }    }    public void visitMethodrefCpInfo(ClassFile classFile, MethodrefCpInfo methodrefCpInfo)    {        // Do we have a reference to the method?        if (methodrefCpInfo.referencedMemberInfo == null)        {            // We'll have to assume the unknown method has side effects.            hasSideEffects = true;        }        else        {            // First check the referenced method itself.            methodrefCpInfo.referencedMemberInfoAccept(this);            // If the result isn't conclusive, check down the hierarchy.            if (!hasSideEffects &&                virtual)            {                String name = methodrefCpInfo.getName(classFile);                String type = methodrefCpInfo.getType(classFile);                // Check all overriding implementations of the method,                // down the class hierarchy.                methodrefCpInfo.referencedClassAccept(                    new ClassFileHierarchyTraveler(false, false, false, true,                    new NamedMethodVisitor(name, type, this)));            }        }    }    // Implementations for MemberInfoVisitor.    public void visitProgramFieldInfo(ProgramClassFile programClassFile, ProgramFieldInfo programFieldInfo) {}    public void visitProgramMethodInfo(ProgramClassFile programClassFile, ProgramMethodInfo programMethodInfo)    {        hasSideEffects = hasSideEffects ||                         SideEffectMethodMarker.hasSideEffects(programMethodInfo);    }    public void visitLibraryFieldInfo(LibraryClassFile libraryClassFile, LibraryFieldInfo libraryFieldInfo) {}    public void visitLibraryMethodInfo(LibraryClassFile libraryClassFile, LibraryMethodInfo libraryMethodInfo)    {        hasSideEffects = hasSideEffects ||                         !NoSideEffectMethodMarker.hasNoSideEffects(libraryMethodInfo);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -