Skip to content
Snippets Groups Projects
Commit b7ddf590 authored by Prakalp Srivastava's avatar Prakalp Srivastava
Browse files

Commit the correct BuildDFG with multiple launch support

parent 70c26257
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ struct BuildDFG : public ModulePass { ...@@ -30,6 +30,7 @@ struct BuildDFG : public ModulePass {
private: private:
// Member variables // Member variables
DFInternalNode *Root; DFInternalNode *Root;
std::vector<DFInternalNode*> Roots;
HandleToDFNode HandleToDFNodeMap; // This map associates the i8* pointer HandleToDFNode HandleToDFNodeMap; // This map associates the i8* pointer
// with the DFNode structure that it // with the DFNode structure that it
...@@ -60,6 +61,7 @@ public: ...@@ -60,6 +61,7 @@ public:
//TODO: Maybe make these fields const //TODO: Maybe make these fields const
DFInternalNode *getRoot() const; DFInternalNode *getRoot() const;
std::vector<DFInternalNode*> &getRoots();
HandleToDFNode &getHandleToDFNodeMap(); HandleToDFNode &getHandleToDFNodeMap();
HandleToDFEdge &getHandleToDFEdgeMap(); HandleToDFEdge &getHandleToDFEdgeMap();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment