SoS.mesa Agewmetrhtos
Copyright Ó 1985, 1986, 1987 by Xerox Corporation. All rights reserved.
Giordano Bruno Beretta, October 17, 1985 4:37:14 pm PDT
gbb January 9, 1987 12:55:29 pm PST
Bertrand Serlet October 26, 1986 9:36:48 pm PST
DIRECTORY
CD USING [Design, Number, Orientation, Position, Rect],
CDBasics USING [empty],
Core USING [CellType, Wire],
CoreGeometry USING [Decoration],
Rope USING [ROPE],
SoSTNT USING [TNT];
DRC
CheckDesignRules:
PUBLIC
PROC [cell: Core.CellType, design:
CD.Design ←
NIL, abortFlag:
REF
BOOL ←
NIL, attributes: CoreGeometry.Decoration]
RETURNS [quantity:
CARDINAL ← 1];
cell and its subcells are verified, except the cells with property $DoNotDRC <> NIL. Design rule violations are flagged in the Core cell using the property DRV (Design Rule Violation) with key DRVkey = $SoSError. The property DRV is put only on cells having at least one violation.
If a design is specified and the ChipNDale cell containing the violation can be accessed, an error rectangle is inserted at the proper location.
The keys to retrieve the geometry from the Core objects are passed as parameters due to their frequent change.
- cdObjKey is used to attach the error rectangle in the ChipNDale design. cdObjKey can be any value if ChipNDale flagging is not needed.
- attributes is the key to retrieve location and orientation of subcells and geometry of the wires; it is mandatory and error coreInconsistent will be raised if location and orientation prove to be wrong.
The abortFlag is tested periodically. If it is TRUE SoS aborts.
The return parameter quantity contains the number of errors found. Jumping out counts 1.
coreInconsistent: ERROR [reason: Rope.ROPE, torch: REF ANY];
Access to violations
DRV: TYPE = REF DesignRuleViolation;
DRVkey: ATOM;
DesignRuleViolation: TYPE = RECORD [count: INT ← 0, places: LIST OF ErrorRect];
ErrorRect: TYPE = RECORD [r: CD.Rect, msg: Rope.ROPE];
Types for writing own DRC procedures
State: TYPE = REF StateRec;
StateRec: TYPE = RECORD [design: CD.Design,
abort: REF BOOL,
nt: SoSTNT.TNT, -- neighbourhood table
maxSeparation: CD.Number ← 200, -- a large number
globalErrorCount: CARDINAL,
wireCreationCount: CARDINAL ← 1, -- for debugging
cdObjKey: ATOM, -- key of ChipNDale object
attributes: CoreGeometry.Decoration]; -- key of geometry and transformations
CellHullProc:
TYPE =
PROC [self: Core.CellType, state: State]
RETURNS [h:
CD.Rect ← CDBasics.empty];
Computes the bounding box of a cell.
Attached as property $SoSHull to Core classes and/or objects.
CheckCell:
TYPE =
PROC [self: Core.CellType, state: State, actual: Core.Wire, loc:
CD.Position, orient:
CD.Orientation];
Design rule checks a Core cell.
Must remove existing error information and check the intenal geometry. It has to perform both the binding and the propagation of the binding, making sure the Core data structure is not altered.
Attached as property $SoSAnalysis to Core classes and/or objects.
MaterialToCellProc:
TYPE =
PROC [self: Core.CellType, state: State, actual, wire: Core.Wire, father: Core.CellType, materialLoc, cellLoc:
CD.Position, materialOrient, cellOrient:
CD.Orientation];
Checks a rectangle of material against all rectangles of material in a cell. It has to perform both the binding and the propagation of the binding, making sure the Core data structure is not altered.
Attached as property $SoSmc to Core classes and/or objects.
CellToCellProc:
TYPE =
PROC [self: Core.CellType, state: State, otherCell: Core.CellType, selfActual, otherActual: Core.Wire, father: Core.CellType, selfLoc, otherLoc:
CD.Position, selfOrient, otherOrient:
CD.Orientation];
Checks all rectangles of material in a cell against those in another cell. It has to perform both the binding and the propagation of the binding, making sure the Core data structure is not altered.
Attached as property $SoScc to Core classes and/or objects.
END.