1 #include <featureTests.h>
2 #ifdef ROSE_ENABLE_SOURCE_ANALYSIS
4 #ifndef PARTITIONED_ANALYSIS_H
5 #define PARTITIONED_ANALYSIS_H
9 #include "genericDataflowCommon.h"
10 #include "variables.h"
12 #include "analysisCommon.h"
13 #include "functionState.h"
14 #include "latticeFull.h"
17 #include "VirtualCFGIterator.h"
18 #include "LogicalCond.h"
19 #include "printAnalysisStates.h"
45 std::set<IntraPartitionDataflow*> splitSet;
50 this->master = master;
51 splitSet.insert(master);
56 splitSet.insert(child);
59 std::string str(std::string indent=
"")
61 std::ostringstream oss;
63 oss << indent <<
"[partSplit:\n";
64 oss << indent <<
" splitSet = <";
65 for(std::set<IntraPartitionDataflow*>::iterator it=splitSet.begin(); it!=splitSet.end(); )
69 if(it!=splitSet.end()) oss <<
", ";
72 oss << indent <<
" master = "<< master <<
"]\n";
81 std::set<IntraPartitionDataflow*> activeParts;
87 std::set<IntraPartitionDataflow*> joinParts;
94 std::map<IntraPartitionDataflow*, std::list<partSplit*> > parts2splits;
98 std::map<IntraPartitionDataflow*, IntraPartitionDataflowCheckpoint*> parts2chkpts;
126 std::set<IntraPartitionDataflow*> split(
IntraPartitionDataflow* origA, std::vector<IntraPartitionDataflowCheckpoint*> partitionChkpts,
146 const std::map<IntraPartitionDataflow*, IntraPartitionDataflowCheckpoint*>& parts2chkpts)=0;
165 this->srcAnalysis = srcAnalysis;
166 this->tgtAnalysis = tgtAnalysis;
171 state.cloneAnalysisState(srcAnalysis, tgtAnalysis);
180 std::set<Analysis*> unionSet;
185 std::set<Analysis*>& unionSet,
Analysis* master)
187 for(std::set<Analysis*>::iterator it = unionSet.begin(); it!=unionSet.end(); it++)
188 { this->unionSet.insert(*it); }
190 this->master = master;
199 std::set<IntraPartitionDataflow*> tgtA;
209 for(std::set<IntraPartitionDataflow*>::iterator it = tgtA.begin(); it!=tgtA.end(); it++)
226 parent = that.parent;
227 partitionCond = that.partitionCond;
232 this->parent = parent;
233 partitionCond = NULL;
238 delete partitionCond;
265 virtual bool runAnalysis(
const Function& func,
NodeState* fState,
bool& splitPart,
280 const std::vector<Lattice*>& dfInfo,
const std::vector<NodeFact*>& facts,
290 std::set<DataflowNode> joinNodes;
304 dfChkpt(that.dfChkpt), func(that.func)
306 this->joinNodes = that.joinNodes;
310 this->curNode = NULL;
312 this->partitionCond = that.partitionCond;
313 this->partitionIndex = that.partitionIndex;
314 this->fState = that.fState;
319 printable* partitionCond,
int partitionIndex,
321 dfChkpt(dfChkpt), func(func)
323 this->joinNodes = joinNodes;
327 this->curNode = NULL;
329 this->partitionCond = partitionCond;
330 this->partitionIndex = partitionIndex;
331 this->fState = fState;
341 std::string str(std::string indent=
"")
343 std::ostringstream outs;
344 outs << indent <<
"[IntraPartitionDataflowCheckpoint : \n";
345 outs << indent <<
" dfChkpt = \n"<<dfChkpt.str(indent+
" ")<<
"\n";
347 outs << indent <<
" curNode = <"<<curNode->getNode()->
class_name()<<
" | "<<curNode->getNode()->
unparseToString()<<
" | "<< curNode->getIndex() <<
">\n";
349 outs << indent <<
" curNode = NULL\n";
351 if(joinNodes.size()==0)
352 outs << indent <<
" joinNodes = None\n";
355 outs << indent <<
" joinNodes = \n";
356 for(std::set<DataflowNode>::iterator it=joinNodes.begin(); it!=joinNodes.end(); it++)
357 { outs << indent <<
" <"<<(*it).getNode()->class_name()<<
" | "<<(*it).getNode()->unparseToString()<<
">\n"; }
360 outs << indent <<
" partitionCond = \n"<<partitionCond->str(indent+
" ")<<
"\n";
362 if(partitionIndex>=0)
363 outs << indent <<
" partitionIndex = descendant "<<partitionIndex<<
"]";
365 outs << indent <<
" partitionIndex = all descendants ("<<partitionIndex<<
")]";
403 typedef enum {noSplit, splitNew, splitParent} splitType;
413 splitType& splitAnalysis, std::vector</*LogicalCond*/printable*>& splitConditions,
bool& joinNode)=0;
418 bool runAnalysis(
const Function& func,
NodeState* fState,
bool analyzeDueToCallers, std::set<Function> calleesUpdated);
431 typedef enum {retFalse, cont, normal} partitionTranferRet;
433 partitionTranferRet partitionTranfer(
435 const std::vector<Lattice*>& dfInfoBelow,
bool& splitPart, std::set<DataflowNode>& joinNodes,
440 bool propagateFWStateToNextNode(
441 const std::vector<Lattice*>& curNodeState,
DataflowNode curDFNode,
int nodeIndex,
442 const std::vector<Lattice*>& nextNodeState,
DataflowNode nextDFNode);