All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.electric.database.id.CellUsage Maven / Gradle / Ivy

/* -*- tab-width: 4 -*-
 *
 * Electric(tm) VLSI Design System
 *
 * File: CellUsage.java
 * Written by: Dmitry Nadezhin, Sun Microsystems.
 *
 * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
 *
 * Electric(tm) is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * Electric(tm) is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Electric(tm); see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, Mass 02111-1307, USA.
 */
package com.sun.electric.database.id;

import com.sun.electric.database.hierarchy.Cell;
import com.sun.electric.database.hierarchy.EDatabase;

/**
 * Immutable class to represent a possible edge in a Cell call graph.
 * Vertices of the edge are CellIds of parent cell and proto subcell.
 * This possible edge can be an edge in one thread, and not an edge in another thread.
 */
public final class CellUsage {

    /** Empty CellUsage array for initialization. */
    public static final CellUsage[] NULL_ARRAY = {};
    /** CellId of the parent Cell */
    public final CellId parentId;
    /** CellId of the (prototype) subCell */
    public final CellId protoId;
    // ---------------------- private data ----------------------------------
    public final int indexInParent;

    // --------------------- private and protected methods ---------------------
    /**
     * The constructor.
     */
    CellUsage(CellId parentId, CellId protoId, int indexInParent) {
        // initialize this object
        this.parentId = parentId;
        this.protoId = protoId;
        this.indexInParent = indexInParent;
    }

    // ------------------------ public methods -------------------------------
    /**
     * Method to return the prototype of this NodeUsage.
     * @return the prototype of this NodeUsage in this thread.
     */
    public Cell getProto(EDatabase database) {
        return database.getCell(protoId);
    }

    /**
     * Method to return the Cell that contains this Geometric object.
     * @return the Cell that contains this Geometric object in this thread.
     */
    public Cell getParent(EDatabase database) {
        return database.getCell(parentId);
    }

    /**
     * Returns a printable version of this CellUsage.
     * @return a printable version of this CellUsage.
     */
    public String toString() {
        return "CellUsage of " + protoId + " in " + parentId;
    }

    /**
     * Checks invariants in this CellUsage.
     * @exception AssertionError if invariants are not valid
     */
    void check() {
        // Check that this CellUsage is properly owned by its parentId.
        assert this == parentId.getUsageIn(indexInParent);

        // Check that this CellUsage is properly inserted in the hash.
        // If this is true for all CellUsages in parentId.usagesId then
        // all CellUsages in parentId.usagesIn have distinct protoIds.
        assert this == parentId.getUsageIn(protoId, false);

        // Check that protoId.usagesOf contains exactly one CellUsage with my protoId,
        // and it's me.
        int count = 0;
        for (int i = 0, protoNumOf = protoId.numUsagesOf(); i < protoNumOf; i++) {
            CellUsage u = protoId.getUsageOf(i);
            if (u.parentId == parentId) {
                assert u == this;
                count++;
            }
        }
        assert count == 1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy