All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.toolkits.graph.TrapUnitGraph Maven / Gradle / Ivy

package soot.toolkits.graph;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1999 Patrice Pominville, Raja Vallee-Rai
 * %%
 * This program 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 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 Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import soot.Body;
import soot.Timers;
import soot.Trap;
import soot.Unit;
import soot.options.Options;

/**
 * 

* Represents a CFG for a {@link Body} instance where the nodes are {@link Unit} instances, and where, in additional to * unexceptional control flow edges, edges are added from every trapped {@link Unit} to the {@link Trap}'s handler * Unit, regardless of whether the trapped Units may actually throw the exception caught by the * Trap. *

* *

* There are three distinctions between the exceptional edges added in TrapUnitGraph and the exceptional edges * added in {@link ExceptionalUnitGraph}: *

    *
  1. In ExceptionalUnitGraph, the edges to Traps are associated with Units which may * actually throw an exception which the Trap catches (according to the * {@link soot.toolkits.exceptions.ThrowAnalysis ThrowAnalysis} used in the construction of the graph). In * TrapUnitGraph, there are edges from every trapped Unit to the Trap, regardless of * whether it can throw an exception caught by the Trap.
  2. *
  3. In ExceptionalUnitGraph, when a Unit may throw an exception that is caught by a * Trap there are edges from every predecessor of the excepting Unit to the Trap's * handler. In TrapUnitGraph, edges are not added from the predecessors of excepting Units.
  4. *
  5. In ExceptionalUnitGraph, when a Unit may throw an exception that is caught by a * Trap, there may be no edge from the excepting Unit itself to the Trap (depending on * the possibility of side effects and the setting of the omitExceptingUnitEdges parameter). In * TrapUnitGraph, there is always an edge from the excepting Unit to the Trap.
  6. *
*/ public class TrapUnitGraph extends UnitGraph { /** * Constructs the graph from a given Body instance. * * @param the * Body instance from which the graph is built. */ public TrapUnitGraph(Body body) { super(body); int size = unitChain.size(); if (Options.v().time()) { Timers.v().graphTimer.start(); } unitToSuccs = new HashMap>(size * 2 + 1, 0.7f); unitToPreds = new HashMap>(size * 2 + 1, 0.7f); buildUnexceptionalEdges(unitToSuccs, unitToPreds); buildExceptionalEdges(unitToSuccs, unitToPreds); buildHeadsAndTails(); if (Options.v().time()) { Timers.v().graphTimer.end(); } soot.util.PhaseDumper.v().dumpGraph(this, body); } /** * Method to compute the edges corresponding to exceptional control flow. * * @param unitToSuccs * A Map from {@link Unit}s to {@link List}s of Units. This is an “out * parameter”; buildExceptionalEdges will add a mapping for every Unit within the * scope of one or more {@link Trap}s to a List of the handler units of those Traps. * * @param unitToPreds * A Map from Units to Lists of Units. This is an “out * parameter”; buildExceptionalEdges will add a mapping for every Trap handler to * all the Units within the scope of that Trap. */ protected void buildExceptionalEdges(Map> unitToSuccs, Map> unitToPreds) { for (Trap trap : body.getTraps()) { Unit first = trap.getBeginUnit(); Unit last = unitChain.getPredOf(trap.getEndUnit()); Unit catcher = trap.getHandlerUnit(); for (Iterator unitIt = unitChain.iterator(first, last); unitIt.hasNext();) { Unit trapped = unitIt.next(); addEdge(unitToSuccs, unitToPreds, trapped, catcher); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy