Uses of Class
byucc.jhdl.synth.graph.Graph

Packages that use Graph
byucc.jhdl.synth   
byucc.jhdl.synth.graph   
byucc.jhdl.synth.graph.parser   
 

Uses of Graph in byucc.jhdl.synth
 

Subclasses of Graph in byucc.jhdl.synth
 class ControlFlowGraph
          A graph representing control flow of a method.
 class DataFlowGraph
          A graph representing the dataflow of various signals and constants.
 

Constructors in byucc.jhdl.synth with parameters of type Graph
DFVertex(Graph g, java.lang.String name)
          Construct a new DFVertex of the given name within the given graph.
DFVertex(Graph g, java.lang.String name, Wire wire)
          Construct a new DFVertex of the given name and associated with the given wire, within the given graph.
CFVertex(Graph g, java.lang.String name)
          Construct a new CFVertex of the given name within the given graph.
 

Uses of Graph in byucc.jhdl.synth.graph
 

Subclasses of Graph in byucc.jhdl.synth.graph
 class DAG
          A directed Acyclic Graph (DAG).
 

Fields in byucc.jhdl.synth.graph declared as Graph
protected  Graph Vertex.parent
          The Graph object to which this vertex belongs.
 

Methods in byucc.jhdl.synth.graph that return Graph
 Graph Vertex.getParent()
          Get the Graph to which this Vertex belongs.
 

Methods in byucc.jhdl.synth.graph with parameters of type Graph
static void Graph.printGraph(Graph g)
          static method that cld used from outside to print a Graph
static void Graph.printGraph(Graph g, java.lang.String fname)
          a filename can be specified where the output shd go
static VertexVector DAG.topologicalSort(Graph g)
          The purpose of this method is to perform a sort on the vertices and validate that this is indeed a DAG.
protected static void DAG.localVisit(Graph g, Vertex v, VertexVector topo_sort)
           
 

Constructors in byucc.jhdl.synth.graph with parameters of type Graph
Vertex(Graph g)
          Construct a new unnamed Vertex belonging to the given graph.
Vertex(Graph g, java.lang.String name)
          Construct a new named Vertex belonging to the given graph.
 

Uses of Graph in byucc.jhdl.synth.graph.parser
 

Fields in byucc.jhdl.synth.graph.parser declared as Graph
protected  Graph GraphBuilder.g
           
 

Methods in byucc.jhdl.synth.graph.parser that return Graph
static Graph GraphBuilder.buildGraph(java.io.InputStream istream)
           
static Graph GraphBuilder.buildGraph(java.io.InputStream istream, Graph gr)
           
 Graph GraphBuilder.getGraph()
           
 

Methods in byucc.jhdl.synth.graph.parser with parameters of type Graph
static Graph GraphBuilder.buildGraph(java.io.InputStream istream, Graph gr)
           
 

Constructors in byucc.jhdl.synth.graph.parser with parameters of type Graph
GraphBuilder(Graph gr)
           
 



Copyright ? 2006 Brigham Young University, Configurable Computing Laboratory. All Rights Reserved.