1 #include <featureTests.h>
2 #ifdef ROSE_ENABLE_SOURCE_ANALYSIS
4 #ifndef INT_ARITH_LOGICAL
5 #define INT_ARITH_LOGICAL
11 #include "nodeState.h"
12 #include "variables.h"
13 #include "spearWrap.h"
14 #include "printAnalysisStates.h"
42 typedef enum {eq=SpearOp::Equal, le=SpearOp::SgnLTE} cmpOps;
45 typedef enum {andOp=SpearOp::AndOp, orOp=SpearOp::OrOp, notOp=SpearOp::NotOp} logOps;
50 typedef enum {eLeaf, lNode} elt;
51 virtual elt elType()=0;
53 typedef enum {isTrue, exprKnown, isFalse} infContent;
54 virtual infContent getLevel()=0;
58 virtual bool setToTrue()=0;
62 virtual bool setToFalse()=0;
66 virtual bool notUpd()=0;
75 bool operator<(
exprLeafOrNode& that) {
return (*
this != that) && (*
this <= that); }
76 bool operator>=(
exprLeafOrNode& that) {
return (*
this == that) && !(*
this <= that); }
77 bool operator>(
exprLeafOrNode& that) {
return (*
this != that) && (*
this >= that); }
82 virtual std::string str(std::string indent=
"")=0;
105 exprLeafOrNode::infContent level;
107 std::list<SpearAbstractVar*> vars;
108 SpearAbstractVar* outVar;
110 bool varsExprInitialized;
132 infContent getLevel();
135 void computeVarsExpr();
141 const std::list<SpearAbstractVar*>& getVars();
144 SpearAbstractVar* getOutVar();
147 const std::string& getExpr();
152 std::string str(std::string indent=
"");
153 std::string str(std::string indent=
"")
const;
154 std::string genStr(std::string indent=
"")
const;
156 elt elType(){
return exprLeafOrNode::eLeaf; }
169 bool andExprs(
const exprLeaf& that,
bool &modified);
171 bool andExprsTest(
const exprLeaf& that);
178 bool orExprs(
const exprLeaf& that,
bool &modified);
180 bool orExprsTest(
const exprLeaf& that);
193 std::list<exprLeafOrNode*> children;
195 exprLeafOrNode::infContent level;
197 bool varsExprInitialized;
198 std::list<SpearAbstractVar*> vars;
199 SpearAbstractVar* outVar;
212 logicNode(logOps logOp,
const std::list<exprLeafOrNode*>& children);
235 infContent getLevel();
239 const std::list<SpearAbstractVar*>& getVars();
242 SpearAbstractVar* getOutVar();
245 const std::string& getExpr();
250 std::string str(std::string indent=
"");
251 std::string str(std::string indent=
"")
const;
252 std::string genStr(std::string indent=
"")
const;
255 void computeVarsExpr();
258 elt elType(){
return exprLeafOrNode::lNode; }
276 void genChildrenConj(std::list<exprLeafOrNode*>& newChildren, std::list<exprLeafOrNode*> newConjOrig,
277 std::list<exprLeafOrNode*>::const_iterator curChild);
290 bool replaceVar(
varID var,
int p,
int q,
int r);
297 bool removeVar(
varID var);
303 void insertNewChildOr(std::list<exprLeafOrNode*>& newChildren,
exprLeafOrNode* newTerm);
306 bool eqChildren(std::list<exprLeafOrNode*>& one, std::list<exprLeafOrNode*>& two);
363 void initialize(
bool value);
372 bool meetUpdate(
Lattice* that);
374 bool operator==(
Lattice* that);
379 std::string str(std::string indent=
"");
403 bool removeVar(
varID var);
415 SpearVar outputSpearExpr(
exprLeaf* otherExpr, std::ofstream &os,
bool createProposition);
418 static bool runSpear(std::string inputFile);
423 bool isImplied(cmpOps cmp,
int a,
varID x,
int b,
varID y,
int c);
430 bool mayConsistent(cmpOps cmp,
int a,
varID x,
int b,
varID y,
int c);
434 bool assign(
int a,
varID x,
int b,
varID y,
int c);
454 this->expr = that.expr;
459 std::string str(std::string indent=
"");
485 void runIntArithLogicalPlacer(
bool printStates);