From b0a63cc711e75f650b005ffaff6a3d5196613764 Mon Sep 17 00:00:00 2001 From: ALEXks Date: Tue, 9 Apr 2024 16:50:47 +0300 Subject: [PATCH] added new directives --- dvm/fdvm/trunk/fdvm/acc_analyzer.cpp | 2 +- dvm/fdvm/trunk/include/dvm_tag.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dvm/fdvm/trunk/fdvm/acc_analyzer.cpp b/dvm/fdvm/trunk/fdvm/acc_analyzer.cpp index e39d1d9..428c0c9 100644 --- a/dvm/fdvm/trunk/fdvm/acc_analyzer.cpp +++ b/dvm/fdvm/trunk/fdvm/acc_analyzer.cpp @@ -81,7 +81,7 @@ static inline bool ifVarIsLoopSymb(SgStatement *stmt, const string symb) } -template void fillPrivatesFromComment(Statement *st, std::set &privates); +template void fillPrivatesFromComment(Statement *st, std::set &privates, int type = -1); inline void Warning(const char *s, const wchar_t *s1, const char *t, int num, SgStatement *stmt) { diff --git a/dvm/fdvm/trunk/include/dvm_tag.h b/dvm/fdvm/trunk/include/dvm_tag.h index 55f3f68..204699a 100644 --- a/dvm/fdvm/trunk/include/dvm_tag.h +++ b/dvm/fdvm/trunk/include/dvm_tag.h @@ -152,3 +152,6 @@ #define SPF_PARAMETER_OP 969 /* SAPFOR */ #define SPF_CODE_COVERAGE_OP 970 /* SAPFOR */ #define SPF_UNROLL_OP 971 /* SAPFOR */ +#define SPF_COVER_OP 972 /* SAPFOR */ +#define SPF_MERGE_OP 973 /* SAPFOR */ +#define SPF_PROCESS_PRIVATE_OP 974 /* SAPFOR */