Files
SAPFOR/src/PrivateAnalyzer/private_arrays_search.h

13 lines
351 B
C
Raw Normal View History

2025-03-31 02:50:30 +03:00
#pragma once
2025-05-30 12:45:05 +03:00
#include <vector>
#include <map>
#include <set>
2026-04-27 16:18:43 +03:00
#include <set>
2025-05-19 20:50:35 +03:00
2025-05-27 02:25:39 +03:00
#include "range_structures.h"
2025-06-04 13:08:38 +03:00
#include "graph_loops.h"
2025-09-23 08:21:05 +03:00
#include "CFGraph/CFGraph.h"
2025-03-31 02:50:30 +03:00
2026-04-19 20:29:23 +03:00
void findPrivateArrays(std::map<std::string, std::vector<LoopGraph*>>& loopGraph, std::map<FuncInfo*, std::vector<SAPFOR::BasicBlock*>>& FullIR, std::set<SgStatement*>& insertedPrivates);