Class UseAddAll.LoopInfo

  • Enclosing class:
    UseAddAll

    static class UseAddAll.LoopInfo
    extends java.lang.Object
    represents a loop, and where an add was found in it
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int addPC  
      private int end  
      private int start  
    • Constructor Summary

      Constructors 
      Constructor Description
      LoopInfo​(int loopStart, int loopEnd)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) void foundAdd​(int pc)  
      (package private) int getAddPC()  
      (package private) int getEndPC()  
      (package private) int getStartPC()  
      (package private) boolean isInLoop​(int pc)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • start

        private final int start
      • end

        private final int end
      • addPC

        private int addPC
    • Constructor Detail

      • LoopInfo

        LoopInfo​(int loopStart,
                 int loopEnd)
    • Method Detail

      • isInLoop

        boolean isInLoop​(int pc)
      • foundAdd

        void foundAdd​(int pc)
      • getStartPC

        int getStartPC()
      • getEndPC

        int getEndPC()
      • getAddPC

        int getAddPC()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object