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

19 lines
437 B
C
Raw Normal View History

2023-09-14 19:43:13 +03:00
#pragma once
struct arrayAccess {
SgStatement *stmt;
SgExpression *var; // this is var;
int linear[MAXDIMARRAY][MAXNESTEDLOOP];
int isLinear[MAXDIMARRAY];
int cst[MAXNESTEDLOOP];
int nbdim;
int size;
int type;
int rw;
int scalar;
int level; // give the loop number
};
typedef struct arrayAccess *PT_ACCESSARRAY;