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

📄 controlflowgraph.java

📁 该开源工具主要用于class文件的操作
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
package org.apache.bcel.verifier.structurals;/* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2001 The Apache Software Foundation.  All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. * * 3. The end-user documentation included with the redistribution, *    if any, must include the following acknowledgment: *       "This product includes software developed by the *        Apache Software Foundation (http://www.apache.org/)." *    Alternately, this acknowledgment may appear in the software itself, *    if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" and *    "Apache BCEL" must not be used to endorse or promote products *    derived from this software without prior written permission. For *    written permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", *    "Apache BCEL", nor may "Apache" appear in their name, without *    prior written permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation.  For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */import org.apache.bcel.generic.*;import org.apache.bcel.verifier.VerifierFactory;import org.apache.bcel.verifier.exc.*;import java.util.*;/** * This class represents a control flow graph of a method. * * @version $Id: ControlFlowGraph.java,v 1.1.1.1 2001/10/29 20:00:37 jvanzyl Exp $ * @author <A HREF="http://www.inf.fu-berlin.de/~ehaase"/>Enver Haase</A> */public class ControlFlowGraph{	/**	 * Objects of this class represent a node in a ControlFlowGraph.	 * These nodes are instructions, not basic blocks.	 */	private class InstructionContextImpl implements InstructionContext{		/**		 * The TAG field is here for external temporary flagging, such		 * as graph colouring.		 *		 * @see #getTag()		 * @see #setTag(int)		 */		private int TAG;		/**		 * The InstructionHandle this InstructionContext is wrapped around.		 */		private InstructionHandle instruction;		/**		 * The 'incoming' execution Frames.		 */		private HashMap inFrames;	// key: the last-executed JSR		/**		 * The 'outgoing' execution Frames.		 */		private HashMap outFrames; // key: the last-executed JSR 		/**		 * The 'execution predecessors' - a list of type InstructionContext 		 * of those instances that have been execute()d before in that order.		 */		private ArrayList executionPredecessors = null; // Type: InstructionContext			/**		 * Creates an InstructionHandleImpl object from an InstructionHandle.		 * Creation of one per InstructionHandle suffices. Don't create more.		 */		public InstructionContextImpl(InstructionHandle inst){			if (inst == null) throw new AssertionViolatedException("Cannot instantiate InstructionContextImpl from NULL.");					instruction = inst;			inFrames = new java.util.HashMap();			outFrames = new java.util.HashMap();		}		/* Satisfies InstructionContext.getTag(). */		public int getTag(){			return TAG;		}		/* Satisfies InstructionContext.setTag(int). */		public void setTag(int tag){			TAG = tag;		}		/**		 * Returns the exception handlers of this instruction.		 */		public ExceptionHandler[] getExceptionHandlers(){			return exceptionhandlers.getExceptionHandlers(getInstruction());		}		/**		 * Returns a clone of the "outgoing" frame situation with respect to the given ExecutionChain.		 */			public Frame getOutFrame(ArrayList execChain){			executionPredecessors = execChain;			Frame org;			InstructionContext jsr = lastExecutionJSR();			org = (Frame) outFrames.get(jsr);			if (org == null){				throw new AssertionViolatedException("outFrame not set! This:\n"+this+"\nExecutionChain: "+getExecutionChain()+"\nOutFrames: '"+outFrames+"'.");			}			return org.getClone();		}		/**		 * "Merges in" (vmspec2, page 146) the "incoming" frame situation;		 * executes the instructions symbolically		 * and therefore calculates the "outgoing" frame situation.		 * Returns: True iff the "incoming" frame situation changed after		 * merging with "inFrame".		 * The execPreds ArrayList must contain the InstructionContext		 * objects executed so far in the correct order. This is just		 * one execution path [out of many]. This is needed to correctly		 * "merge" in the special case of a RET's successor.		 * <B>The InstConstraintVisitor and ExecutionVisitor instances		 * must be set up correctly.</B>		 * @return true - if and only if the "outgoing" frame situation		 * changed from the one before execute()ing.		 */		public boolean execute(Frame inFrame, ArrayList execPreds, InstConstraintVisitor icv, ExecutionVisitor ev){			executionPredecessors = (ArrayList) execPreds.clone();			//sanity check			if ( (lastExecutionJSR() == null) && (subroutines.subroutineOf(getInstruction()) != subroutines.getTopLevel() ) ){				throw new AssertionViolatedException("Huh?! Am I '"+this+"' part of a subroutine or not?");			}			if ( (lastExecutionJSR() != null) && (subroutines.subroutineOf(getInstruction()) == subroutines.getTopLevel() ) ){				throw new AssertionViolatedException("Huh?! Am I '"+this+"' part of a subroutine or not?");			}			Frame inF = (Frame) inFrames.get(lastExecutionJSR());			if (inF == null){// no incoming frame was set, so set it.				inFrames.put(lastExecutionJSR(), inFrame);				inF = inFrame;			}			else{// if there was an "old" inFrame				if (inF.equals(inFrame)){ //shortcut: no need to merge equal frames.					return false;				}				if (! mergeInFrames(inFrame)){					return false;				}			}						// Now we're sure the inFrame has changed!						// new inFrame is already merged in, see above.					Frame workingFrame = inF.getClone();			try{				// This verifies the InstructionConstraint for the current				// instruction, but does not modify the workingFrame object.//InstConstraintVisitor icv = InstConstraintVisitor.getInstance(VerifierFactory.getVerifier(method_gen.getClassName()));				icv.setFrame(workingFrame);				getInstruction().accept(icv);			}			catch(StructuralCodeConstraintException ce){				ce.extendMessage("","\nInstructionHandle: "+getInstruction()+"\n");				ce.extendMessage("","\nExecution Frame:\n"+workingFrame);				extendMessageWithFlow(ce);				throw ce;			}			// This executes the Instruction.			// Therefore the workingFrame object is modified.//ExecutionVisitor ev = ExecutionVisitor.getInstance(VerifierFactory.getVerifier(method_gen.getClassName()));			ev.setFrame(workingFrame);			getInstruction().accept(ev);			//getInstruction().accept(ExecutionVisitor.withFrame(workingFrame));			outFrames.put(lastExecutionJSR(), workingFrame);			return true;	// new inFrame was different from old inFrame so merging them										// yielded a different this.inFrame.		}		/**		 * Returns a simple String representation of this InstructionContext.		 */		public String toString(){		//TODO: Put information in the brackets, e.g.		//      Is this an ExceptionHandler? Is this a RET? Is this the start of		//      a subroutine?			String ret = getInstruction().toString(false)+"\t[InstructionContext]";			return ret;		}

⌨️ 快捷键说明

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