pascal.taie.analysis.graph.flowgraph.ObjectFlowGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tai-e Show documentation
Show all versions of tai-e Show documentation
An easy-to-learn/use static analysis framework for Java
The newest version!
/*
* Tai-e: A Static Analysis Framework for Java
*
* Copyright (C) 2022 Tian Tan
* Copyright (C) 2022 Yue Li
*
* This file is part of Tai-e.
*
* Tai-e 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 3
* of the License, or (at your option) any later version.
*
* Tai-e 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 Tai-e. If not, see .
*/
package pascal.taie.analysis.graph.flowgraph;
import pascal.taie.analysis.graph.callgraph.CallGraph;
import pascal.taie.analysis.graph.callgraph.CallKind;
import pascal.taie.analysis.pta.core.cs.element.ArrayIndex;
import pascal.taie.analysis.pta.core.cs.element.CSVar;
import pascal.taie.analysis.pta.core.cs.element.InstanceField;
import pascal.taie.analysis.pta.core.cs.element.Pointer;
import pascal.taie.analysis.pta.core.cs.element.StaticField;
import pascal.taie.analysis.pta.core.solver.PointerFlowEdge;
import pascal.taie.analysis.pta.core.solver.PointerFlowGraph;
import pascal.taie.ir.exp.InvokeInstanceExp;
import pascal.taie.ir.exp.Var;
import pascal.taie.ir.stmt.Invoke;
import pascal.taie.language.classes.JMethod;
import pascal.taie.util.Indexer;
import pascal.taie.util.collection.IndexMap;
import pascal.taie.util.collection.Maps;
import pascal.taie.util.collection.MultiMap;
import pascal.taie.util.collection.Views;
import pascal.taie.util.graph.Graph;
import java.util.Set;
public class ObjectFlowGraph extends NodeManager
implements Graph, Indexer {
private final MultiMap inEdges = Maps.newMultiMap(
new IndexMap<>(this, 4096));
private final MultiMap outEdges = Maps.newMultiMap(
new IndexMap<>(this, 4096));
public ObjectFlowGraph(PointerFlowGraph pfg,
CallGraph callGraph) {
pfg.pointers().forEach(pointer -> {
toNode(pointer); // ensure every pointer has a corresponding node
pfg.getOutEdgesOf(pointer).forEach(this::addPointerFlowEdge);
});
// This-passing edges are absent on PFG, so we iterate call graph edges
// to complement this kind of edges.
callGraph.edges()
.forEach(e -> {
// Currently ignore OTHER (e.g., reflective) call edges
if (e.getKind() != CallKind.OTHER &&
e.getCallSite().getInvokeExp() instanceof
InvokeInstanceExp invokeExp) {
Var base = invokeExp.getBase();
Var thisVar = e.getCallee().getIR().getThis();
addFlowEdge(new BasicFlowEdge(
FlowKind.THIS_PASSING,
getOrCreateVarNode(base),
getOrCreateVarNode(thisVar)));
}
});
}
private void addPointerFlowEdge(PointerFlowEdge edge) {
FlowKind kind = edge.kind();
Node source = toNode(edge.source());
Node target = toNode(edge.target());
FlowEdge flowEdge = switch (kind) {
case OTHER -> new OtherFlowEdge(edge.getInfo(), source, target, edge);
default -> new BasicFlowEdge(kind, source, target);
};
addFlowEdge(flowEdge);
}
private void addFlowEdge(FlowEdge flowEdge) {
outEdges.put(flowEdge.source(), flowEdge);
inEdges.put(flowEdge.target(), flowEdge);
}
/**
* Converts given pointer to a node in this OFG.
*/
private Node toNode(Pointer pointer) {
if (pointer instanceof CSVar csVar) {
return getOrCreateVarNode(csVar.getVar());
} else if (pointer instanceof InstanceField iField) {
return getOrCreateInstanceFieldNode(
iField.getBase().getObject(), iField.getField());
} else if (pointer instanceof ArrayIndex arrayIndex) {
return getOrCreateArrayIndexNode(
arrayIndex.getArray().getObject());
} else {
return getOrCreateStaticFieldNode(
((StaticField) pointer).getField());
}
}
@Override
public Set getPredsOf(Node node) {
return Views.toMappedSet(getInEdgesOf(node), FlowEdge::source);
}
@Override
public Set getInEdgesOf(Node node) {
return inEdges.get(node);
}
@Override
public Set getSuccsOf(Node node) {
return Views.toMappedSet(getOutEdgesOf(node), FlowEdge::target);
}
@Override
public Set getOutEdgesOf(Node node) {
return outEdges.get(node);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy