LichenDataOps.Mesa
Last tweaked by Mike Spreitzer on August 26, 1988 2:29:47 pm PDT
DIRECTORY IO, AbSets, LichenDataStructure;
LichenDataOps: CEDAR DEFINITIONS
=
BEGIN OPEN Sets:AbSets, LichenDataStructure;
CreateDesign: PROC [names: Set--of ROPE--] RETURNS [Design];
CellFlavor: TYPE ~ {leaf, unorganized, array};
CreateCellType: PROC [d: Design, flavor: CellFlavor, bbox: Range2, names: Set--of ROPE--] RETURNS [CellType];
FinishCreatingUnorganized: PROC [ct: CellType];
CreateArray: PROC [d: Design, eltType: CellType, size, basePeriod: Int2, fXfm: Fn--phase b Transform--, offsets: OffsetSeq, names: Set--of ROPE--] RETURNS [CellType];
CreateArrayPart: PROC [act, ect: CellType, size, basePeriod: Int2, fXfm: Fn, offsets: OffsetSeq] RETURNS [Array];
SetArrayPart: PROC [act, ect: CellType, a: Array];
TrimStatrep: PROC [act: CellType, a: Array, edges: Set--of StatEdge-- ← nilSet];
FinishedMakingArrayConnections: PROC [act: CellType];
ForgetUnorganized: PROC [ct: CellType];
ForgetArray: PROC [CellType];
OffsetsFromList: PROC [OffsetPatList] RETURNS [OffsetSeq];
OffsetPatList: TYPE ~ LIST OF OffsetPat;
CTIncludesPoint: PROC [CellType, Int2];
DesignScaleIs: PROC [Design, REAL];
CreatePort: PROC [ct: CellType, fullNames: Set--of SteppyName--, deduced, addum, nameDum, fixExpConns, fixInstConns, fixWExpConns, fixWInstConns: BOOL, children: Seq--of Port-- ← nilBiRel] RETURNS [Port];
Dummy wires are added iff addum; fixWExpConns and fixWInstConns tell whether to fix up connections to the dummies.
CreateWire: PROC [ct: CellType, fullNames: Set--of SteppyName--, deduced, fixExpConns, fixInstConns: BOOL, children: Seq--of Wire-- ← nilBiRel] RETURNS [Wire];
Instantiate: PROC [ict, cct: CellType, addum: BOOL, xfm: Transform, offset: Int2, names: Set--of SteppyName--] RETURNS [CellInstance];
KnowPartName: PROC [ct: CellType, class: PartClass, part: Part, fullName: SteppyName, onlyIfGood: BOOL];
KnowPartNames: PROC [ct: CellType, class: PartClass, part: Part, fullNames: Set--of SteppyName--, onlyIfGood: BOOL];
ForgetPartName: PROC [ct: CellType, class: PartClass, part: Part, fullName: SteppyName];
ForgetPartNames: PROC [ct: CellType, class: PartClass, part: Part, fullNames: Set];
ReplaceDescendantsName: PROC [ct: CellType, subroot: PW, old, new: SteppyName];
ReplaceDescendantsNames: PROC [ct: CellType, subroot: PW, oldNew: BiRel--old SteppyName new--];
KnowVertexName: PROC [ct: CellType, v: Vertex, fullName: SteppyName, onlyIfGood: BOOL]
~ INLINE {KnowPartName[ct, v.class, v, fullName, onlyIfGood]};
KnowVertexNames: PROC [ct: CellType, v: Vertex, fullNames: Set--of SteppyName--, onlyIfGood: BOOL]
~ INLINE {KnowPartNames[ct, v.class, v, fullNames, onlyIfGood]};
ForgetVertexName: PROC [ct: CellType, v: Vertex, fullName: SteppyName]
~ INLINE {ForgetPartName[ct, v.class, v, fullName]};
KnowPortName: PROC [ct: CellType, p: Port, fullName: SteppyName, onlyIfGood: BOOL]
~ INLINE {KnowPartName[ct, p, p, fullName, onlyIfGood]};
KnowPortNames: PROC [ct: CellType, p: Port, fullNames: Set--of SteppyName--, onlyIfGood: BOOL]
~ INLINE {KnowPartNames[ct, p, p, fullNames, onlyIfGood]};
ForgetPortName: PROC [ct: CellType, p: Port, fullName: SteppyName]
~ INLINE {ForgetPartName[ct, p, p, fullName]};
PortForWire: PROC [ct: CellType, internal: Wire, mayAdd: BOOL] RETURNS [port: Port];
FullySfwdlyExportWires: PROC [ct: CellType, wires: Set] RETURNS [Set--of Port--];
GetArrayPortForPort: PROC [act: CellType, ai: Int2, ep: Port, mayAdd, addum, nameDum: BOOL] RETURNS [arrayPort: Port];
Connect: PROC [d: Design, wire: Wire, port: Port, site: Cell];
ConnectPWs: PROC [d: Design, pws: Fn, site: Cell];
ConnectPCs: PROC [d: Design, wire: Wire, pcs: BiRel];
ClosePortConnectivity: PROC [d: Design, parent: Port, kidPorts: Seq--of Port--, conns: Fn--Port b Wire--, site: Cell];
ClosePortsConnectivity: PROC [d: Design, parents: Set--of Port--, conns: Fn--Port b Wire--, site: Cell];
MakeArrayNewConnection: PROC [d: Design, a: Array, rangeA: Range2, delta: Int2, epA, epB: Port];
MakeArrayConnectionAtPhase: PROC [d: Design, a: Array, rangeA: Range2, fA, delta: Int2, epA, epB: Port];
MakeArrayExport: PROC [d: Design, a: Array, ap, ep: Port, ai: Int2];
NoteNewEltPort: PROC [act: CellType, ep: Port];
NoteNewArrayPort: PROC [act: CellType, ap: Port];
NoteExEltPorts: PROC [ect: CellType, eps: Set--of port--, mayHaveConsequences: BOOL, log: IO.STREAMNIL];
NoteEltPortMerge: PROC [ect: CellType, kept: Port, lost: Set--of port--];
MayDeletePorts: PROC [ct: CellType, ports: Set--of port--, timid, isWholeTrees: BOOL] RETURNS [whyNot: ROPE];
TryToMergeDumbWires: PROC [d: Design, act: CellType, wires: Set] RETURNS [balks: Set--of DumbWire--];
May only be invoked on top atomic wires.
MergeNets: PROC [d: Design, w1, w2: Wire, callerWillTakeCareOfPorts: BOOL] RETURNS [merged, deleted: Wire];
May only be invoked on top wires.
If not callerWillTakeCareOfPorts, may only be invoked on private wires.
MergeWireSet: PROC [d: Design, wires: Set, callerWillTakeCareOfPorts: BOOL] RETURNS [kept: Wire, lost: Set];
Like MergeNets, but operates on a set of wires.
MergePorts: PROC [ct: CellType, ports: Set] RETURNS [kept: Port, lost: Set];
All must export the same wire. Works only for top ports. Caller responsible for ensuring that implementation of ports survives.
MergeCellTypes: PROC [d: Design, lost, kept: CellType, assoc: OneToOne];
assoc identifies ports.
DeleteWires: PROC [ct: CellType, wires: Set, visitConns: BOOL];
Caller responsible for making sure impl of wires survives this operation.
DeletePorts: PROC [ct: CellType, ports: Set, visitInsts, deleteWires: BOOL, log: IO.STREAMNIL];
Caller responsible for making sure impl of ports survives this operation. If visitInsts, deletes connections at instances of ct, and fixes arrays of ct. If a log is given, messages are printed to it for consequent deletions.
DeleteInsts: PROC [d: Design, cis: Set, visitWires: BOOL];
DeleteCellType: PROC [ct: CellType, log: IO.STREAM];
Differentiate: PROC [d: Design, cis: Set] RETURNS [new: CellType];
FixInterleavingsOfArray: PROC [act: CellType];
AddDeducedStructureToDesign: PUBLIC PROC [design: Design, pacify: IO.STREAMNIL];
DeduceStructureForWires: PROC [ct: CellType, pacify: IO.STREAMNIL] RETURNS [new: Set--of Wire--];
DeduceStructureForPorts: PROC [ct: CellType, pacify: IO.STREAMNIL] RETURNS [new: Set--of Port--];
PrefixifyDesign: PROC [Design];
DropPhysical: PROC [d: Design];
CreateBareWire: PROC [Design] RETURNS [Wire];
CreateBareInstance: PROC [d: Design, offset: Int2] RETURNS [CellInstance];
CreateBareDumbWire: PROC [act: CellType] RETURNS [DumbWire];
CreateDumbWireKids: PROC [a: Array, len: LNAT] RETURNS [Seq--of DumbWire--];
ExpandType: PROC [d: Design, ct: CellType];
ExpandInstance: PROC [d: Design, ci: CellInstance];
UnorganizeArray: PROC [CellType];
END.