blob: 9ff707c966aa8afc4379f631ba5e854ab1f20480 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Nokia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nokia - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.edc.symbols;
/**
* Interface representing a variable value located at an address specified
* as [register + offset].
* <p>
* This may refer to a register that is saved inside a caller's stack frame
* and not necessarily to a current living register.
*/
public interface IRegisterOffsetVariableLocation extends IRegisterVariableLocation {
/**
* Get the offset from the register containing the variable value
*
* @return the offset in bytes
*/
long getOffset();
}