Uses of Class
org.jikesrvm.compilers.opt.regalloc.CoalesceGraph.Node

Packages that use CoalesceGraph.Node
org.jikesrvm.compilers.opt.regalloc   
 

Uses of CoalesceGraph.Node in org.jikesrvm.compilers.opt.regalloc
 

Fields in org.jikesrvm.compilers.opt.regalloc with type parameters of type CoalesceGraph.Node
(package private)  HashMap<Register,CoalesceGraph.Node> CoalesceGraph.nodeMap
          Mapping register -> Node
 

Methods in org.jikesrvm.compilers.opt.regalloc that return CoalesceGraph.Node
(package private)  CoalesceGraph.Node CoalesceGraph.findNode(Register r)
          Find the node corresponding to a regsiter.
private  CoalesceGraph.Node CoalesceGraph.findOrCreateNode(Register r)
          find or create a node in the graph corresponding to a register.
 

Methods in org.jikesrvm.compilers.opt.regalloc with parameters of type CoalesceGraph.Node
private  CoalesceGraph.Edge CoalesceGraph.findOrCreateEdge(CoalesceGraph.Node src, CoalesceGraph.Node dest)
          find or create an edge in the graph
 

Constructors in org.jikesrvm.compilers.opt.regalloc with parameters of type CoalesceGraph.Node
CoalesceGraph.Edge(CoalesceGraph.Node src, CoalesceGraph.Node dest)