Files
SAPFOR/Sapfor/_src/SageAnalysisTool/dependence.h

20 lines
403 B
C
Raw Normal View History

2023-09-14 19:43:13 +03:00
#pragma once
//
// for computing loop dependencies
//
struct datadep
{
SgStatement *loop;
int loopnum;
SgStatement *stmtin;
SgStatement *stmtout;
SgExpression *varin; // this is var;
SgExpression *varout; // this is var;
int typedep;
int kinddep;
int distance[MAXNESTEDLOOP];
};
typedef struct datadep *PT_DEPENDENCE;