Program Listing for File analysisCommon.h

Program Listing for File analysisCommon.h#

Return to documentation for file (src/midend/programAnalysis/genericDataflow/analysis/analysisCommon.h)

#include <featureTests.h>
#ifdef ROSE_ENABLE_SOURCE_ANALYSIS

#ifndef ANALYSIS_COMMON
#define ANALYSIS_COMMON

#include "genericDataflowCommon.h"
#include "cfgUtils.h"
#include "CallGraphTraverse.h"

// initializes the compiler analysis framework
void initAnalysis(SgProject* p);

// returns the SgProject object that represents our current project
//SgProject* getProject();

// returns the call graph of the current project
SgIncidenceDirectedGraph* getCallGraph();

#endif
#endif