Class VariableLocation

    • Constructor Detail

      • VariableLocation

        public VariableLocation()
        Default constructor needed for restoring a variable location from XML.
      • VariableLocation

        public VariableLocation​(Program program,
                                Address locationAddr,
                                Variable var,
                                int index,
                                int charOffset)
        Create a new VariableLocation.
        Parameters:
        the - program of the location
        locationAddr - the address of the listing location (i.e., referent code unit)
        var - the variable associated with this location.
      • VariableLocation

        public VariableLocation​(Program program,
                                Variable var,
                                int index,
                                int charOffset)
        Create a new VariableLocation.
        Parameters:
        the - program of the location
        var - the variable associated with this location.
    • Method Detail

      • getVariable

        public Variable getVariable()
        Get the variable associated with this variable location
        Returns:
        associated function variable
      • isLocationFor

        public boolean isLocationFor​(Variable var)
        Checks to see if this location is for the indicated variable.
        Parameters:
        var - the variable
        Returns:
        true if this location is for the specified variable.
      • isParameter

        public boolean isParameter()
      • isReturn

        public boolean isReturn()
      • equals

        public boolean equals​(java.lang.Object object)
        Overrides:
        equals in class FunctionLocation
        See Also:
        Object.equals(java.lang.Object)
      • saveState

        public void saveState​(SaveState obj)
        Description copied from class: FunctionLocation
        Save this function location to the given save state object.
        Overrides:
        saveState in class FunctionLocation
        Parameters:
        obj - the save state object for saving the location
      • isValid

        public boolean isValid​(Program p)
        Description copied from class: ProgramLocation
        Returns true if this location represents a valid location in the given program
        Overrides:
        isValid in class FunctionLocation
        Parameters:
        p - the program to test if this location is valid.
        Returns:
        true if this location represents a valid location in the given program