/* * ConstantPropagation.java - This file is part of the Jakstab project. * Copyright 2007-2015 Johannes Kinder <jk@jakstab.org> * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code 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 Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, see <http://www.gnu.org/licenses/>. */ package org.jakstab.analysis.explicit; import java.util.Collections; import java.util.Set; import org.jakstab.AnalysisProperties; import org.jakstab.analysis.*; import org.jakstab.cfa.CFAEdge; import org.jakstab.cfa.Location; import org.jakstab.cfa.StateTransformer; import org.jakstab.util.Logger; import org.jakstab.util.Pair; /** * @author Johannes Kinder */ public class ConstantPropagation implements ConfigurableProgramAnalysis { public static void register(AnalysisProperties p) { p.setShortHand('c'); p.setName("Constant Propagation"); p.setDescription("For each location, compute the variables and memory locations that have a constant value."); p.setExplicit(true); } @SuppressWarnings("unused") private final static Logger logger = Logger.getLogger(ConstantPropagation.class); public ConstantPropagation() { } @Override public AbstractState merge(AbstractState s1, AbstractState s2, Precision precision) { return CPAOperators.mergeJoin(s1, s2, precision); } @Override public boolean stop(AbstractState s, ReachedSet reached, Precision precision) { return CPAOperators.stopSep(s, reached, precision); } @Override public Set<AbstractState> post(AbstractState state, CFAEdge cFAEdge, Precision precision) { AbstractState successor = ((NumberValuation)state).abstractPost(cFAEdge.getTransformer(), precision); if (successor == null) return Collections.emptySet(); return Collections.singleton(successor); } @Override public AbstractState strengthen(AbstractState s, Iterable<AbstractState> otherStates, CFAEdge cfaEdge, Precision precision) { return s; } @Override public Pair<AbstractState, Precision> prec(AbstractState s, Precision precision, ReachedSet reached) { return Pair.create(s, precision); } @Override public AbstractState initStartState(Location location) { return NumberValuation.createInitialState(); } @Override public Precision initPrecision(Location location, StateTransformer transformer) { return null; } }