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

📄 variables.java

📁 j2me 混淆包,用于混淆j2me的原代码用的
💻 JAVA
字号:
/* $Id: Variables.java,v 1.6 2004/11/20 15:41:24 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.evaluation;import proguard.optimize.evaluation.value.*;/** * This class represents a local variable frame that contains <code>Value</code> * objects. Values are generalizations of all values that have been stored in * the respective variables. * * @author Eric Lafortune */class Variables{    protected Value[] values;    protected int     size;    /**     * Creates a new Variables object with a given maximum number of variables.     */    public Variables(int size)    {        this.values = new Value[size];        this.size   = size;    }    /**     * Creates a Variables object that is a copy of the given Variables object.     */    public Variables(Variables variables)    {        // Create the values array.        this(variables.size);        // Copy the values.        initialize(variables);    }    /**     * Resets this Variables object, so that it can be reused.     */    public void reset(int size)    {        // Is the values array large enough?        if (size > values.length)        {            // Create a new one.            values = new Value[size];        }        else        {            // Clear the variables.            for (int index = 0; index < values.length; index++)            {                values[index] = null;            }        }        this.size = size;    }    /**     * Initializes the values of this Variables object with the values of the     * given Variables object. The other object may have fewer values, in which     * case the remaining values are left unchanged.     */    public void initialize(Variables other)    {        if (this.size < other.size)        {            throw new IllegalArgumentException("Variable frame is too small ["+this.size+"] compared to other frame ["+other.size+"]");        }        // Copy the values.        System.arraycopy(other.values, 0, this.values, 0, other.size);    }    /**     * Generalizes the values of this Variables object with the values of the     * given Variables object. In case of conflicts, the other Variables     * object gets precedence.     * @return whether the generalization has made any difference.     */    public boolean generalize(Variables other)    {        if (this.size != other.size)        {            throw new IllegalArgumentException("Variable frames have different sizes ["+this.size+"] and ["+other.size+"]");        }        boolean changed = false;        for (int index = 0; index < size; index++)        {            Value otherValue = other.values[index];            if (otherValue != null)            {                Value thisValue  = this.values[index];                // Occasionally, two values of different types might be                // present in the same variable in a variable frame                // (corresponding to two local variables that share the                // same index), at some point outside of their scopes.                // The new value gets precedence.                if (thisValue != null &&                    thisValue.computationalType() == otherValue.computationalType())                {                    otherValue = thisValue.generalize(otherValue);                    changed = changed || !otherValue.equals(thisValue);                }                values[index] = otherValue;            }        }        return changed;    }    /**     * Returns the number of variables.     */    public int size()    {        return size;    }    /**     * Stores the given Value at the given variable index.     */    public void store(int index, Value value)    {        if (index < 0 ||            index >= size)        {            throw new IndexOutOfBoundsException("Variable index ["+index+"] out of bounds ["+size+"]");        }        // Store the value.        values[index] = value;    }    /**     * Loads the Value from the variable with the given index.     */    public Value load(int index)    {        if (index < 0 ||            index >= size)        {            throw new IndexOutOfBoundsException("Variable index ["+index+"] out of bounds ["+size+"]");        }        return values[index];    }    // Load methods that provide convenient casts to the expected value types.    /**     * Loads the IntegerValue from the variable with the given index.     */    public IntegerValue iload(int index)    {        return load(index).integerValue();    }    /**     * Loads the LongValue from the variable with the given index.     */    public LongValue lload(int index)    {        return load(index).longValue();    }    /**     * Loads the FloatValue from the variable with the given index.     */    public FloatValue fload(int index)    {        return load(index).floatValue();    }    /**     * Loads the DoubleValue from the variable with the given index.     */    public DoubleValue dload(int index)    {        return load(index).doubleValue();    }    /**     * Loads the ReferenceValue from the variable with the given index.     */    public ReferenceValue aload(int index)    {        return load(index).referenceValue();    }    /**     * Loads the InstructionOffsetValue from the variable with the given index.     */    public InstructionOffsetValue oload(int index)    {        return load(index).instructionOffsetValue();    }    // Implementations for Object.    public boolean equals(Object object)    {        if (this.getClass() != object.getClass())        {            return false;        }        Variables other = (Variables)object;        if (this.size != other.size)        {            return false;        }        for (int index = 0; index < size; index++)        {            Value thisValue  = this.values[index];            Value otherValue = other.values[index];            // Occasionally, two values of different types might be            // present in the same variable in a variable frame            // (corresponding to two local variables that share the            // same index), at some point outside of their scopes.            // We'll ignore these.            if (thisValue  != null &&                otherValue != null &&                thisValue.computationalType() == otherValue.computationalType() &&                !thisValue.equals(otherValue))            {                return false;            }        }        return true;    }    public int hashCode()    {        int hashCode = size;        for (int index = 0; index < size; index++)        {            Value value = values[index];            if (value != null)            {                hashCode ^= value.hashCode();            }        }        return hashCode;    }    public String toString()    {        StringBuffer buffer = new StringBuffer();        for (int index = 0; index < size; index++)        {            Value value = values[index];            buffer = buffer.append('[')                           .append(value == null ? "empty" : value.toString())                           .append(']');        }        return buffer.toString();    }}

⌨️ 快捷键说明

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