Class CodeLocation


  • public class CodeLocation
    extends java.lang.Object
    Represents a location in the bytecode.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int location
      The absolution location in the bytecode stream.
      private StackFrame stackFrame
      The stack frame at the given bytecode location
    • Constructor Summary

      Constructors 
      Constructor Description
      CodeLocation​(int location, StackFrame stackFrame)  
    • Field Detail

      • location

        private final int location
        The absolution location in the bytecode stream. This will always point to a valid jump location
      • stackFrame

        private final StackFrame stackFrame
        The stack frame at the given bytecode location
    • Constructor Detail

      • CodeLocation

        CodeLocation​(int location,
                     StackFrame stackFrame)
    • Method Detail

      • getLocation

        int getLocation()