/* * Copyright (c) 2009, IETR/INSA of Rennes * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the IETR/INSA of Rennes nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ package net.sf.orcc.ir.impl; import java.util.ArrayList; import java.util.List; import net.sf.orcc.ir.Expression; import net.sf.orcc.ir.IrFactory; import net.sf.orcc.ir.IrPackage; import net.sf.orcc.ir.Type; import net.sf.orcc.ir.TypeList; import net.sf.orcc.ir.util.ExpressionEvaluator; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.util.EcoreUtil; /** * This class defines a List type. * * @author Matthieu Wipliez * @author Jerome Gorin * */ public class TypeListImpl extends TypeImpl implements TypeList { /** * The cached value of the '{@link #getSizeExpr() <em>Size Expr</em>}' containment reference. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #getSizeExpr() * @generated * @ordered */ protected Expression sizeExpr; /** * The cached value of the '{@link #getType() <em>Type</em>}' containment reference. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected Type type; /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ protected TypeListImpl() { super(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public NotificationChain basicSetSizeExpr(Expression newSizeExpr, NotificationChain msgs) { Expression oldSizeExpr = sizeExpr; sizeExpr = newSizeExpr; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, IrPackage.TYPE_LIST__SIZE_EXPR, oldSizeExpr, newSizeExpr); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public NotificationChain basicSetType(Type newType, NotificationChain msgs) { Type oldType = type; type = newType; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, IrPackage.TYPE_LIST__TYPE, oldType, newType); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case IrPackage.TYPE_LIST__SIZE_EXPR: return getSizeExpr(); case IrPackage.TYPE_LIST__TYPE: return getType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case IrPackage.TYPE_LIST__SIZE_EXPR: return basicSetSizeExpr(null, msgs); case IrPackage.TYPE_LIST__TYPE: return basicSetType(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case IrPackage.TYPE_LIST__SIZE_EXPR: return sizeExpr != null; case IrPackage.TYPE_LIST__TYPE: return type != null; } return super.eIsSet(featureID); } @Override public boolean equals(Object obj) { if (obj instanceof TypeList) { TypeList list = (TypeList) obj; return this.getSize() == list.getSize() && type.equals(list.getType()); } else { return false; } } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case IrPackage.TYPE_LIST__SIZE_EXPR: setSizeExpr((Expression) newValue); return; case IrPackage.TYPE_LIST__TYPE: setType((Type) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return IrPackage.Literals.TYPE_LIST; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case IrPackage.TYPE_LIST__SIZE_EXPR: setSizeExpr((Expression) null); return; case IrPackage.TYPE_LIST__TYPE: setType((Type) null); return; } super.eUnset(featureID); } @Override public List<Integer> getDimensions() { List<Integer> dimensions = new ArrayList<Integer>(); dimensions.add(getSize()); dimensions.addAll(getType().getDimensions()); return dimensions; } public List<Expression> getDimensionsExpr() { List<Expression> dimensions = new ArrayList<Expression>(); dimensions.add(EcoreUtil.copy(getSizeExpr())); dimensions.addAll(getType().getDimensionsExpr()); return dimensions; } @Override public Type getInnermostType() { if (type.isList()) { return ((TypeList) type).getInnermostType(); } return type; } @Override public int getSize() { if (sizeExpr == null) { // Size depends on a actor parameter. return -1; } else { // Evaluate the expression. return new ExpressionEvaluator().evaluateAsInteger(sizeExpr); } } @Override public Expression getSizeExpr() { return sizeExpr; } @Override public int getSizeInBits() { return getSize() * getType().getSizeInBits(); } @Override public List<Integer> getSizeIterator() { int s = getSize(); List<Integer> list = new ArrayList<Integer>(s); for (int i = 0; i < s; i++) { list.add(i); } return list; } @Override public Type getType() { return type; } @Override public boolean isList() { return true; } @Override public void setSize(int newSize) { setSizeExpr(IrFactory.eINSTANCE.createExprInt(newSize)); } @Override public void setSizeExpr(Expression newSizeExpr) { if (newSizeExpr != sizeExpr) { NotificationChain msgs = null; if (sizeExpr != null) msgs = ((InternalEObject) sizeExpr) .eInverseRemove(this, EOPPOSITE_FEATURE_BASE - IrPackage.TYPE_LIST__SIZE_EXPR, null, msgs); if (newSizeExpr != null) msgs = ((InternalEObject) newSizeExpr) .eInverseAdd(this, EOPPOSITE_FEATURE_BASE - IrPackage.TYPE_LIST__SIZE_EXPR, null, msgs); msgs = basicSetSizeExpr(newSizeExpr, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, IrPackage.TYPE_LIST__SIZE_EXPR, newSizeExpr, newSizeExpr)); } @Override public void setType(Type newType) { if (newType != type) { NotificationChain msgs = null; if (type != null) msgs = ((InternalEObject) type).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - IrPackage.TYPE_LIST__TYPE, null, msgs); if (newType != null) msgs = ((InternalEObject) newType).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - IrPackage.TYPE_LIST__TYPE, null, msgs); msgs = basicSetType(newType, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, IrPackage.TYPE_LIST__TYPE, newType, newType)); } @Override public String toString() { return "List(type:" + getType() + ", size=" + getSize() + ")"; } }