1 #include <featureTests.h>
2 #ifdef ROSE_ENABLE_SOURCE_ANALYSIS
7 #include "DataflowCFG.h"
25 bool isNonMutatingOperator(
SgNode* n);
28 bool isNonMutatingSubTree(
SgNode* n);
46 std::string getFileInfoString(
SgNode* n);
48 std::string getFileInfoString(
CFGNode n);
80 void createTmpVarInit(
SgType* varType, std::string newName,
bool byReference,
104 typedef void (*CFGTransform)(
SgNode *target,
SgNode* newNode,
void* data);
108 typedef enum {insBef, insAft, callback} modType;
124 std::string str() {
return ""; }
127 class insertRequest:
public modRequest{
135 this->type = type_arg;
136 this->newNode = newNode;
137 this->origNode = origNode;
140 SgNode* getTgtNode() {
return origNode; }
146 class transformRequest:
public modRequest{
147 CFGTransform callbackFunc;
153 transformRequest(CFGTransform callbackFunc,
SgNode *&target,
SgNode* newNode,
void* data)
155 this->type = callback;
156 this->target = target;
157 this->newNode = newNode;
158 this->callbackFunc = callbackFunc;
167 std::list<modRequest*> requests;
173 void beginTransaction();
181 void transform(CFGTransform callbackFunc,
SgNode* n,
SgNode* newNode,
void* data);
186 void commitTransaction();
200 void prependToScopeStmt(
SgNode *target,
SgNode *newNode,
void* data);
203 void appendToScopeStmt(
SgNode *target,
SgNode *newNode,
void* data);