use of com.jopdesign.wcet.jop.LinkerInfo in project jop by jop-devel.
the class WCETTool method initialize.
public void initialize(boolean loadLinkInfo, boolean initDFA) throws BadConfigurationException {
if (projectConfig.saveResults()) {
this.resultRecord = projectConfig.getResultFile();
if (!projectConfig.appendResults()) {
// TODO remove existing file if we do not append?
//resultRecord.delete();
recordMetric("problem", this.getProjectName());
if (projectConfig.addPerformanceResults()) {
recordMetric("date", new Date());
}
}
}
if (loadLinkInfo) {
linkerInfo = new LinkerInfo(this);
try {
linkerInfo.loadLinkInfo();
} catch (IOException e) {
throw new BadConfigurationException("Could not load link infos", e);
} catch (ClassNotFoundException e) {
throw new BadConfigurationException("Could not load link infos", e);
}
}
/* run dataflow analysis */
if (doDataflowAnalysis() && initDFA) {
topLevelLogger.info("Starting DFA analysis");
dataflowAnalysis();
topLevelLogger.info("DFA analysis finished");
}
if (!appInfo.hasCallGraph()) {
DefaultCallgraphBuilder callGraphBuilder;
/* build callgraph for the whole program */
if (doDataflowAnalysis()) {
// build the callgraph using DFA results
callGraphBuilder = new DFACallgraphBuilder(getDfaTool(), appInfo.getCallstringLength());
} else {
callGraphBuilder = new DefaultCallgraphBuilder();
}
// we do not want natives in the callgraph
callGraphBuilder.setSkipNatives(true);
appInfo.buildCallGraph(callGraphBuilder);
}
/* build callgraph for target method */
rebuildCallGraph();
if (projectConfig.doPreprocess()) {
WCETPreprocess.preprocess(appInfo);
}
dumpCallGraph("callgraph");
}
Aggregations