2023-09-14 19:43:13 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "dvm.h"
|
2025-06-04 13:08:38 +03:00
|
|
|
#include "errors.h"
|
2023-09-14 19:43:13 +03:00
|
|
|
#include "gcov_info.h"
|
|
|
|
|
#include "../CreateInterTree/CreateInterTree.h"
|
|
|
|
|
|
|
|
|
|
void parse_gcovfile(SgFile *file, const std::string &basefileName, std::map<int, Gcov_info> &gCovInfo, bool keep);
|
|
|
|
|
bool __gcov_doesThisLineExecuted(const std::string &file, const int line);
|
|
|
|
|
std::pair<int, int64_t> __gcov_GetExecuted(const std::string &file, const int line);
|
|
|
|
|
void parseTimesDvmStatisticFile(const std::string &file, std::map<std::string, std::vector<SpfInterval*>> &intervals);
|