Files
SAPFOR/src/PrivateAnalyzer/private_arrays_search.h
2026-05-01 12:56:32 +03:00

15 lines
586 B
C++

#pragma once
#include <vector>
#include <map>
#include <set>
#include "range_structures.h"
#include "graph_loops.h"
#include "CFGraph/CFGraph.h"
int findPrivateArrays(std::map<std::string, std::vector<LoopGraph*>>& loopGraph, std::map<FuncInfo*,
std::vector<SAPFOR::BasicBlock*>>& FullIR, std::set<SgStatement*>& insertedPrivates,
std::map<std::string, std::vector<Messages>>& SPF_messages,
const std::map<std::tuple<int, std::string, std::string>, std::pair<DIST::Array*, DIST::ArrayAccessInfo*>>& declaredArrays);