use of com.jopdesign.timing.jop.WCETInstruction in project jop by jop-devel.
the class Report method generateBytecodeTable.
private void generateBytecodeTable() throws IOException {
File file = config.getReportFile("Bytecode WCET Table.txt");
FileWriter fw = new FileWriter(file);
// FIXME: generate proper timing table
JOPConfig jopConfig = new JOPConfig(project.getConfig());
fw.append(new WCETInstruction(jopConfig.rws(), jopConfig.wws()).toWCAString());
fw.close();
this.addPage("input/bytecodetable", file.getName());
}
Aggregations