Uses of Class
at.dms.kjc.flatgraph.StaticStreamGraph

Packages that use StaticStreamGraph
at.dms.kjc.cluster The cluster backend for StreamIt generates a set of threads that can be executed on a cluster of networked computers or a SMP. 
at.dms.kjc.flatgraph FlatNode basics 
at.dms.kjc.spacedynamic   
 

Uses of StaticStreamGraph in at.dms.kjc.cluster
 

Subclasses of StaticStreamGraph in at.dms.kjc.cluster
 class ClusterStaticStreamGraph
           
 

Uses of StaticStreamGraph in at.dms.kjc.flatgraph
 

Subclasses of StaticStreamGraph in at.dms.kjc.flatgraph
 class ScheduledStaticStreamGraph
          A StaticStreamGraph represents a subgraph of the application's StreamGraph where communication within the SSG is over static rate channels.
 

Fields in at.dms.kjc.flatgraph declared as StaticStreamGraph
protected  StaticStreamGraph[] StreamGraph.staticSubGraphs
          A list of all the static sub graphs *
 

Fields in at.dms.kjc.flatgraph with type parameters of type StaticStreamGraph
protected  List<StaticStreamGraph> StaticStreamGraph.nextSSGs
          SSGs that this SSG has edges to.
 HashMap<FlatNode,StaticStreamGraph> StreamGraph.parentMap
          map of flat nodes to parent ssg.
 

Methods in at.dms.kjc.flatgraph that return StaticStreamGraph
 StaticStreamGraph SSGEdge.getDownstream()
          the downstream SSG of edge
 StaticStreamGraph StreamGraph.getParentSSG(FlatNode node)
          get the parent SSG of
 StaticStreamGraph[] StreamGraph.getStaticSubGraphs()
          return the array of SSGs of this Stream Graph in no particular order
 StaticStreamGraph StreamGraph.getTopLevel()
          get the toplevel (source) SSG
 StaticStreamGraph SSGEdge.getUpstream()
          the upstream SSG of edge
protected  StaticStreamGraph StreamGraph.new_StaticStreamGraph(StreamGraph sg, FlatNode realTop)
          Use in place of "new StaticStreamGraph" for subclassing.
 

Methods in at.dms.kjc.flatgraph that return types with arguments of type StaticStreamGraph
 Map<FlatNode,StaticStreamGraph> StaticStreamGraph.getParentMap()
          returns a map of flatnodes to this SSG, so that others can remember the parent mapping of flat nodes.
 

Methods in at.dms.kjc.flatgraph with parameters of type StaticStreamGraph
static SSGEdge SSGEdge.createSSGEdge(StaticStreamGraph fromSSG, StaticStreamGraph toSSG, int from, int to)
          Create a new SSGEdge, or return an existing one with the same parameters.
 void StreamGraphVisitor.visitStaticStreamGraph(StaticStreamGraph ssg)
           
 

Method parameters in at.dms.kjc.flatgraph with type arguments of type StaticStreamGraph
 void StaticStreamGraph.accept(StreamGraphVisitor s, HashSet<StaticStreamGraph> visited, boolean newHash)
          accept a stream graph visitor *
 void ScheduledStaticStreamGraph.accept(StreamGraphVisitor s, HashSet<StaticStreamGraph> visited, boolean newHash)
          accept a stream graph visitor
 

Uses of StaticStreamGraph in at.dms.kjc.spacedynamic
 

Subclasses of StaticStreamGraph in at.dms.kjc.spacedynamic
 class SpdStaticStreamGraph
          A StaticStreamGraph represents a subgraph of the application's StreamGraph where communication within the SSG is over static rate channels.