Uses of Interface
org.jikesrvm.compilers.opt.util.TopSortInterface

Packages that use TopSortInterface
org.jikesrvm.compilers.opt.controlflow   
org.jikesrvm.compilers.opt.depgraph   
org.jikesrvm.compilers.opt.ir   
org.jikesrvm.compilers.opt.regalloc   
org.jikesrvm.compilers.opt.util   
 

Uses of TopSortInterface in org.jikesrvm.compilers.opt.controlflow
 

Classes in org.jikesrvm.compilers.opt.controlflow that implement TopSortInterface
 class AnnotatedLSTGraph
          Extends the functionality of a LSTGraph so that it comprises AnnotatedLSTNodes which have extra information in them.
 class LSTGraph
          Identify natural loops and builds the LST (Loop Structure Tree) Note: throws an exception if an irreducible loop is found (which I believe could only happen in Java from modified bytecode, because Java source code is structured enough to prevent irreducible loops.)
 

Uses of TopSortInterface in org.jikesrvm.compilers.opt.depgraph
 

Classes in org.jikesrvm.compilers.opt.depgraph that implement TopSortInterface
 class DepGraph
          Dependence Graph for a single basic block in the program.
 

Uses of TopSortInterface in org.jikesrvm.compilers.opt.ir
 

Classes in org.jikesrvm.compilers.opt.ir that implement TopSortInterface
 class ControlFlowGraph
          The Factored Control Flow Graph (FCFG).
 

Uses of TopSortInterface in org.jikesrvm.compilers.opt.regalloc
 

Classes in org.jikesrvm.compilers.opt.regalloc that implement TopSortInterface
(package private)  class CoalesceGraph
          This class represents a graph, where the nodes are registers the edge weights represent affinities between registers.
 

Uses of TopSortInterface in org.jikesrvm.compilers.opt.util
 

Classes in org.jikesrvm.compilers.opt.util that implement TopSortInterface
 class SpaceEffGraph
          SpaceEffGraph package implements a generic directed graph that can be a multigraph.
 

Methods in org.jikesrvm.compilers.opt.util with parameters of type TopSortInterface
static SortedGraphNode TopSort.buildTopological(TopSortInterface graph, boolean forward)