Package kilim

Class State

  • Direct Known Subclasses:
    Task.ArgState

    public class State
    extends java.lang.Object
    State is the super class for customized State objects generated by ClassWeaver. For example, a customized state object may look like this:
     public final class kilim.S_O2I3 extends kilim.State{
       public java.lang.Object f0, f1;
       public int f2, f3, f4;
       public kilim.S_O2I3();
     }
     
    This customized class contains slots for two objects and three integers (its name is indicative of this aspect) and is used as a canonical class to store any activation frame that needs to store two objects and three ints.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int pc  
      java.lang.Object self  
    • Constructor Summary

      Constructors 
      Constructor Description
      State()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • pc

        public int pc
      • self

        public java.lang.Object self
    • Constructor Detail

      • State

        public State()