2025-06-04 13:08:38 +03:00
|
|
|
#include "SgUtils.h"
|
|
|
|
|
#include "graph_loops.h"
|
2023-09-14 19:43:13 +03:00
|
|
|
#include "CFGraph.h"
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
|
void runPrivateVariableAnalysis(const std::map<std::string, std::vector<LoopGraph*>>& loopGraph,
|
|
|
|
|
const std::map<FuncInfo*, std::vector<SAPFOR::BasicBlock*>>& CFGraph_for_project,
|
|
|
|
|
const std::map<std::string, CommonBlock*>& commonBlocks,
|
|
|
|
|
std::map<std::string, std::vector<Messages>>& messages);
|