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

boomerang.poi.PointOfIndirection Maven / Gradle / Ivy

There is a newer version: 3.2.2
Show newest version
/**
 * ***************************************************************************** Copyright (c) 2018
 * Fraunhofer IEM, Paderborn, Germany. This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * 

SPDX-License-Identifier: EPL-2.0 * *

Contributors: Johannes Spaeth - initial API and implementation * ***************************************************************************** */ package boomerang.poi; import boomerang.ForwardQuery; import boomerang.Query; import boomerang.scene.ControlFlowGraph.Edge; import com.google.common.collect.Lists; import com.google.common.collect.Sets; import java.util.Set; public abstract class PointOfIndirection { private Set actualBaseAllocations = Sets.newHashSet(); private Set flowAllocations = Sets.newHashSet(); public abstract void execute(ForwardQuery baseAllocation, Query flowAllocation); public void addBaseAllocation(ForwardQuery baseAllocation) { if (actualBaseAllocations.add(baseAllocation)) { for (Query flowAllocation : Lists.newArrayList(flowAllocations)) { execute(baseAllocation, flowAllocation); } } } public void addFlowAllocation(Query flowAllocation) { if (flowAllocations.add(flowAllocation)) { for (ForwardQuery baseAllocation : Lists.newArrayList(actualBaseAllocations)) { execute(baseAllocation, flowAllocation); } } } public abstract Edge getCfgEdge(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy