Uses of Class
org.jikesrvm.compilers.opt.liveness.LiveSetElement

Packages that use LiveSetElement
org.jikesrvm.compilers.opt.liveness   
 

Uses of LiveSetElement in org.jikesrvm.compilers.opt.liveness
 

Fields in org.jikesrvm.compilers.opt.liveness declared as LiveSetElement
private  LiveSetElement LiveSetEnumerator.current
          the current element on this list
private  LiveSetElement LiveSet.first
          The beginning of the list
private  LiveSetElement LiveSetElement.next
          The next field
 

Methods in org.jikesrvm.compilers.opt.liveness that return LiveSetElement
private  LiveSetElement LiveSet.createAndAddToCurrentList(RegisterOperand register, LiveSetElement prevElement)
          Copy the newElement into a new object and add it to the list after prevElement.
 LiveSetElement LiveSetElement.getNext()
          Returns the next element on this list
private  LiveSetElement LiveSet.getNextPtr(LiveSetElement ptr)
          Inspects the passed ptr, if it is nonnull it returns its next field otherwise, it returns "first"
 

Methods in org.jikesrvm.compilers.opt.liveness with parameters of type LiveSetElement
private  LiveSetElement LiveSet.createAndAddToCurrentList(RegisterOperand register, LiveSetElement prevElement)
          Copy the newElement into a new object and add it to the list after prevElement.
private  LiveSetElement LiveSet.getNextPtr(LiveSetElement ptr)
          Inspects the passed ptr, if it is nonnull it returns its next field otherwise, it returns "first"
 void LiveSetElement.setNext(LiveSetElement newNext)
          Sets the next element field
 

Constructors in org.jikesrvm.compilers.opt.liveness with parameters of type LiveSetElement
LiveSetEnumerator(LiveSetElement list)
          The constructor