2023-09-14 19:43:13 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "dvm.h"
|
2025-06-04 13:08:38 +03:00
|
|
|
#include "graph_loops.h"
|
2023-09-14 19:43:13 +03:00
|
|
|
#include "../SageAnalysisTool/depGraph.h"
|
|
|
|
|
#include "../SageAnalysisTool/OmegaForSage/include/lang-interf.h"
|
|
|
|
|
#include "../DirectiveProcessing/directive_parser.h"
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
int combineLoops(SgFile *file, std::vector<LoopGraph*> &loopGraphs, std::vector<Messages> &messages,
|
|
|
|
|
const std::pair<std::string, int>& onPlace, const std::map<LoopGraph*, depGraph*>& depInfoForLoopGraph, int& countOfTransform);
|