view src/share/tools/IdealGraphVisualizer/Data/src/at/ssw/visualizer/model/cfg/IRInstruction.java @ 4486:f3cc08cb211d

Imported data model from c1visualizer.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 30 Jan 2012 23:11:38 +0100
parents
children
line wrap: on
line source

package at.ssw.visualizer.model.cfg;

import java.util.Collection;

/**
 *
 * @author Christian Wimmer
 */
public interface IRInstruction {
    public static String HIR_NAME = "tid";
    public static String HIR_TEXT = "instruction";
    public static String HIR_OPERAND = "result";

    public static String LIR_NUMBER = "nr";
    public static String LIR_TEXT = "instruction";

    public Collection<String> getNames();
    public String getValue(String name);
}