moved
This commit is contained in:
19
Sapfor/_src/SageAnalysisTool/dependence.h
Normal file
19
Sapfor/_src/SageAnalysisTool/dependence.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
Reference in New Issue
Block a user