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

com.ibm.wala.analysis.pointers.HeapGraph Maven / Gradle / Ivy

/*
 * Copyright (c) 2002 - 2006 IBM Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 */
package com.ibm.wala.analysis.pointers;

import com.ibm.wala.ipa.callgraph.propagation.HeapModel;
import com.ibm.wala.ipa.callgraph.propagation.InstanceKey;
import com.ibm.wala.ipa.callgraph.propagation.PointerAnalysis;
import com.ibm.wala.ipa.callgraph.propagation.PointerKey;
import com.ibm.wala.util.graph.Graph;
import com.ibm.wala.util.graph.NumberedGraph;
import java.util.Collection;
import java.util.Set;

/**
 * A {@link Graph} view of a pointer analysis solution.
 *
 * 

Nodes in the Graph are {@link PointerKey}s and {@link InstanceKey}s. * *

There is an edge from a PointerKey P to an InstanceKey I iff the PointerAnalysis indicates * that P may point to I. * *

There is an edge from an InstanceKey I to a PointerKey P iff - P represents a field of an * object instance modeled by I, or - P represents the array contents of array instance I. */ public interface HeapGraph extends NumberedGraph { Collection getReachableInstances(Set roots); HeapModel getHeapModel(); PointerAnalysis getPointerAnalysis(); }