Package org.candle.decompiler.intermediate.graph

Examples of org.candle.decompiler.intermediate.graph.IntermediateLabelProvider


    File a = new File(directory.getAbsolutePath()+File.separator+name);
    LOG.debug("Instruction Graph: "+a.getAbsolutePath());
    Writer x;
    try {
      x = new FileWriter(a);
      DOTExporter<AbstractIntermediate, IntermediateEdge> dot = new DOTExporter<AbstractIntermediate, IntermediateEdge>(new IntegerNameProvider<AbstractIntermediate>(), new IntermediateLabelProvider(), new IntermediateEdgeProvider(), new IntermediateVertexAttributeProvider(), new InstructionEdgeAttributeProvider());
      dot.export(x, igc.getGraph());
    } catch (IOException e) {
      e.printStackTrace();
    }
    LOG.debug("End Instruction Graph ======");
View Full Code Here

TOP

Related Classes of org.candle.decompiler.intermediate.graph.IntermediateLabelProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.