Files
SAPFOR/Sapfor/_src/SageAnalysisTool/arrayRef.h
2025-03-12 12:37:19 +03:00

19 lines
437 B
C

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