1 #include <featureTests.h>
2 #ifdef ROSE_ENABLE_SOURCE_ANALYSIS
7 #include "genericDataflowCommon.h"
8 #include "VirtualCFGIterator.h"
10 #include "CallGraphTraverse.h"
11 #include "analysisCommon.h"
14 #include "latticeFull.h"
15 #include "liveDeadVarAnalysis.h"
16 #include "printAnalysisStates.h"
17 #include "VariableStateTransfer.h"
23 extern int divAnalysisDebugLevel;
42 static const int bottom=1;
44 static const int valKnown=2;
46 static const int divKnown=3;
48 static const int top=4;
80 this->value = that.value;
83 this->level = that.level;
97 static bool matchDiv(
long value,
long div,
long rem);
112 bool meetUpdate(
Lattice* that);
117 bool operator==(
Lattice* that);
124 long getValue()
const;
127 short getLevel()
const;
135 bool set(
long value);
139 bool set(
long div,
long rem);
147 bool incr(
long increment);
151 bool mult(
long multiplier);
153 std::string str(std::string indent=
"");
159 void visitIntegerValue(T *sgn);
164 template <
typename T>
165 void transferArith(
SgBinaryOp *sgn, T transferOp);
166 void transferArith(
SgBinaryOp *sgn, TransferOp transferOp);
197 bool finish() {
return modified; }
205 static std::map<varID, Lattice*> constVars;
206 static bool constVars_init;
227 std::vector<Lattice*>& initLattices, std::vector<NodeFact*>& initFacts);
236 boost::shared_ptr<IntraDFTransferVisitor> getTransferVisitor(
const Function& func,
const DataflowNode& n,
237 NodeState& state,
const std::vector<Lattice*>& dfInfo)
238 {
return boost::shared_ptr<IntraDFTransferVisitor>(
new DivAnalysisTransfer(func, n, state, dfInfo)); }
242 void printDivAnalysisStates(
DivAnalysis* da, std::string indent=
"");