Files
SAPFOR/Sapfor/_src/SageAnalysisTool/dependence.h
2025-03-25 20:39:29 +03:00

20 lines
403 B
C

#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;