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

📄 frame.java

📁 A static analysis tool to find bugs in Java programs
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * Bytecode Analysis Framework * Copyright (C) 2003,2004 University of Maryland *  * 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 */package edu.umd.cs.findbugs.ba;import java.util.ArrayList;import java.util.BitSet;import java.util.Collection;import java.util.Collections;import org.apache.bcel.Constants;import org.apache.bcel.generic.ConstantPoolGen;import org.apache.bcel.generic.INVOKESTATIC;import org.apache.bcel.generic.Instruction;import org.apache.bcel.generic.InvokeInstruction;import org.apache.bcel.generic.StackConsumer;import edu.umd.cs.findbugs.SystemProperties;import edu.umd.cs.findbugs.ba.vna.ValueNumber;import static edu.umd.cs.findbugs.ba.Debug.*;/** * Generic class for representing a Java stack frame as a dataflow value. A * frame consists of "slots", which represent the local variables and values on * the Java operand stack. Slots 0 .. <code>getNumLocals() - 1</code> * represent the local variables. Slots <code>getNumLocals()</code> .. * <code>getNumSlots() - 1</code> represent the Java operand stack. <p/> * <p> * Frame is parametized by "ValueType", which is the type of value to be stored * in the Frame's slots. This type must form a lattice, according to the * abstract mergeValues() operation in the corresponding analysis class (which * should be derived from FrameDataflowAnalysis). When a Frame is constructed, * all of its slots will contain null. The analysis is responsible for * initializing created Frames with default values at the appropriate time. * Typically, only initEntryFact() will need to do this. <p/> * <p> * A Frame may have the special "TOP" value. Such frames serve as the identity * element for the meet operation operation. <p/> * <p> * A Frame may have the special "BOTTOM" value. The result of merging any frame * with BOTTOM is BOTTOM. *  * @author David Hovemeyer * @see FrameDataflowAnalysis */public abstract class Frame<ValueType> {	// //////////////////////////////////////////////////////////////////////////////////	// Instance variables	// //////////////////////////////////////////////////////////////////////////////////	private int lastUpdateTimestamp;	/**	 * Number of local variables in the method.	 */	private int numLocals;	/**	 * Array storing the values of local variables and operand stack slots.	 */	private ArrayList<ValueType> slotList;	/**	 * Flag marking this frame as a special "TOP" value. Such Frames serve as	 * the identity element when merging.	 */	private boolean isTop;	/**	 * Flag marking this frame as a special "BOTTOM" value. Such Frames arise	 * when merging two frames of different size.	 */	private boolean isBottom;	/**	 * Default number of stack slots to preallocate space for.	 */	private static final int DEFAULT_STACK_CAPACITY = 10;	// //////////////////////////////////////////////////////////////////////////////////	// Methods	// //////////////////////////////////////////////////////////////////////////////////	/**	 * Constructor. This version of the constructor is for subclasses for which	 * it is always safe to call getDefaultValue(), even when the object is not	 * fully initialized.	 * 	 * @param numLocals	 *            number of local variable slots in the method	 */	public Frame(int numLocals) {		this.numLocals = numLocals;		this.slotList = new ArrayList<ValueType>(numLocals				+ DEFAULT_STACK_CAPACITY);		for (int i = 0; i < numLocals; ++i)			slotList.add(null);	}	/**	 * Return whether or not this object the special "TOP" value for Frames.	 * Such Frames are the identity element of the meet operation.	 */	public boolean isTop() {		return isTop;	}	/**	 * Make this frame the special "TOP" value. Such Frames are the identity	 * element of the meet operation.	 */	public void setTop() {		isTop = true;		isBottom = false;		lastUpdateTimestamp = 0;	}	/**	 * Return whether or not this object is the special "BOTTOM" value for	 * Frames. Such Frames arise when merging two frames of different size.	 */	public boolean isBottom() {		return isBottom;	}	/**	 * Make this Frame the special "BOTTOM" value. Such Frames arise when	 * merging two frames of different size.	 */	public void setBottom() {		isBottom = true;		isTop = false;	}	/**	 * Set the Frame to be valid (neither TOP nor BOTTOM).	 */	public void setValid() {		isTop = isBottom = false;	}	/**	 * Is the frame valid (meaning it is not TOP or BOTTOM)?	 */	public boolean isValid() {		return !isTop() && !isBottom();	}	/**	 * Push a value onto the Java operand stack.	 * 	 * @param value	 *            the ValueType to push	 */	public void pushValue(ValueType value) {		if (VERIFY_INTEGRITY && value == null)			throw new IllegalArgumentException();		if (!isValid())			throw new IllegalStateException("accessing top or bottom frame");		slotList.add(value);	}	/**	 * Pop a value off of the Java operand stack.	 * 	 * @return the value that was popped	 * @throws DataflowAnalysisException	 *             if the Java operand stack is empty	 */	public ValueType popValue() throws DataflowAnalysisException {		if (!isValid())			throw new DataflowAnalysisException("accessing top or bottom frame");		if (slotList.size() == numLocals)			throw new DataflowAnalysisException("operand stack empty");		return slotList.remove(slotList.size() - 1);	}	/**	 * Get the value on the top of the Java operand stack.	 * 	 * @throws DataflowAnalysisException	 *             if the Java operand stack is empty	 */	public ValueType getTopValue() throws DataflowAnalysisException {		if (!isValid())			throw new DataflowAnalysisException("accessing top or bottom frame");		assert slotList.size() >= numLocals;		if (slotList.size() == numLocals)			throw new DataflowAnalysisException("operand stack is empty");		return slotList.get(slotList.size() - 1);	}	/**	 * Get the values on the top of the Java operand stack. The top stack item	 * is placed at the end of the array, so that to restore the values to the	 * stack, you would push them in the order they appear in the array.	 */	public void getTopStackWords(ValueType[] valueList)			throws DataflowAnalysisException {		int stackDepth = getStackDepth();		if (valueList.length > stackDepth)			throw new DataflowAnalysisException("not enough values on stack");		int numSlots = slotList.size();		for (int i = numSlots - valueList.length, j = 0; i < numSlots; ++i, ++j) {			valueList[j] = slotList.get(i);		}	}	/**	 * Get a value on the operand stack.	 * 	 * @param loc	 *            the stack location, counting downwards from the top (location	 *            0)	 */	public ValueType getStackValue(int loc) throws DataflowAnalysisException {		if (!isValid())			throw new DataflowAnalysisException(					"Accessing TOP or BOTTOM frame!");		int stackDepth = getStackDepth();		if (loc >= stackDepth)			throw new DataflowAnalysisException(					"not enough values on stack: access=" + loc + ", avail="							+ stackDepth);		return slotList.get(slotList.size() - (loc + 1));	}	/**	 * Get a the location in the frame of a value on the operand stack.	 * 	 * @param loc	 *            the stack location, counting downwards from the top (location	 *            0)	 */	public int getStackLocation(int loc) throws DataflowAnalysisException {		int stackDepth = getStackDepth();		if (loc >= stackDepth)			throw new DataflowAnalysisException(					"not enough values on stack: access=" + loc + ", avail="							+ stackDepth);		return slotList.size() - (loc + 1);	}	/**	 * Get the value corresponding to the object instance used in the given	 * instruction. This relies on the observation that in instructions which	 * use an object instance (such as getfield, invokevirtual, etc.), the	 * object instance is the first operand used by the instruction.	 * 	 * @param ins	 *            the instruction	 * @param cpg	 *            the ConstantPoolGen for the method	 */	public ValueType getInstance(Instruction ins, ConstantPoolGen cpg)			throws DataflowAnalysisException {		return getStackValue(getInstanceStackLocation(ins, cpg));	}	/**	 * Get the stack location (counting down from top of stack, starting at 0)	 * containing the object instance referred to by given instruction. This	 * relies on the observation that in instructions which use an object	 * instance (such as getfield, invokevirtual, etc.), the object instance is	 * the first operand used by the instruction.	 * 	 * <p>	 * The value returned may be passed to getStackValue(int).	 * </p>	 * 	 * @param ins	 *            the Instruction	 * @param cpg	 *            the ConstantPoolGen for the method	 * @return stack location (counting down from top of stack, starting at 0)	 *         containing the object instance	 * @throws DataflowAnalysisException	 */	public int getInstanceStackLocation(Instruction ins, ConstantPoolGen cpg)			throws DataflowAnalysisException {		int numConsumed = ins.consumeStack(cpg);		if (numConsumed == Constants.UNPREDICTABLE)			throw new DataflowAnalysisException(					"Unpredictable stack consumption in " + ins);		return numConsumed - 1;	}	/**	 * Get the slot the object instance referred to by given instruction is	 * located in.	 * 	 * @param ins	 *            the Instruction	 * @param cpg	 *            the ConstantPoolGen for the method	 * @return stack slot the object instance is in	 * @throws DataflowAnalysisException	 */	public int getInstanceSlot(Instruction ins, ConstantPoolGen cpg)			throws DataflowAnalysisException {		if (!isValid()) {			throw new DataflowAnalysisException("Accessing invalid frame at "					+ ins);		}		int numConsumed = ins.consumeStack(cpg);		if (numConsumed == Constants.UNPREDICTABLE)			throw new DataflowAnalysisException(					"Unpredictable stack consumption in " + ins);		if (numConsumed > getStackDepth())			throw new DataflowAnalysisException("Stack underflow " + ins);		return getNumSlots() - numConsumed;	}	/**	 * Get the number of arguments passed to given method invocation.

⌨️ 快捷键说明

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