soot.jimple.toolkits.thread.mhp.CompactSequentNodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
package soot.jimple.toolkits.thread.mhp;
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 1997 - 2018 Raja Vallée-Rai and others
* %%
* 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.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;
import java.util.Set;
import soot.toolkits.scalar.FlowSet;
import soot.util.Chain;
// *** USE AT YOUR OWN RISK ***
// May Happen in Parallel (MHP) analysis by Lin Li.
// This code should be treated as beta-quality code.
// It was written in 2003, but not incorporated into Soot until 2006.
// As such, it may contain incorrect assumptions about the usage
// of certain Soot classes.
// Some portions of this MHP analysis have been quality-checked, and are
// now used by the Transactions toolkit.
//
// -Richard L. Halpert, 2006-11-30
public class CompactSequentNodes {
long compactNodes = 0;
long add = 0;
public CompactSequentNodes(PegGraph pg) {
Chain mainPegChain = pg.getMainPegChain();
compactGraph(mainPegChain, pg);
compactStartChain(pg);
// PegToDotFile printer = new PegToDotFile(pg, false, "sequence");
System.err.println("compact seq. node: " + compactNodes);
System.err.println("number of compacting seq. nodes: " + add);
}
private void compactGraph(Chain chain, PegGraph peg) {
Set canNotBeCompacted = peg.getCanNotBeCompacted();
List> list = computeSequentNodes(chain, peg);
// printSeq(list);
Iterator> it = list.iterator();
while (it.hasNext()) {
List s = it.next();
if (!checkIfContainsElemsCanNotBeCompacted(s, canNotBeCompacted)) {
add++;
compact(s, chain, peg);
}
}
}
private void compactStartChain(PegGraph graph) {
Set maps = graph.getStartToThread().entrySet();
for (Iterator iter = maps.iterator(); iter.hasNext();) {
Map.Entry entry = (Map.Entry) iter.next();
List runMethodChainList = (List) entry.getValue();
Iterator it = runMethodChainList.iterator();
while (it.hasNext()) {
Chain chain = (Chain) it.next();
compactGraph(chain, graph);
}
}
}
private List> computeSequentNodes(Chain chain, PegGraph pg) {
Set