LogicPerformance.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Jean-Marc Frailong, March 26, 1987 6:36:30 pm PST
Bertrand Serlet March 30, 1987 10:42:10 pm PST
Test the performance of various macros of the Logic library.
DIRECTORY
Core, CoreClasses,
IO, FS,
Logic,
LogicUtilsImpl,
Mint, WriteCapa,
Rope,
Sisyph,
ViewerIO,
HashTable;
LogicPerformance: CEDAR PROGRAM
IMPORTS IO, CoreClasses, Sisyph, Mint, FS, WriteCapa, ViewerIO, HashTable, Rope, LogicUtilsImpl
SHARES LogicUtilsImpl
~ BEGIN
ROPE: TYPE ~ Rope.ROPE;
CounterTest
TestCounters: PROC [initCx: Sisyph.Context] ~ {
Test: PROC [nbits: NAT, mode: Logic.CounterType] ~ {
ct: Core.CellType;
area, delay: REAL;
cx: Sisyph.Context ← Sisyph.Copy[initCx];
Sisyph.Store[cx, "sz", NEW [INT ← nbits]];
Sisyph.Store[cx, "mode", NEW [Logic.CounterType ← mode]];
ct ← Sisyph.ES["CounterTest.sch", cx]; -- Should re-extract each time
area ← Area[ct, "Counter"]; delay ← Delay[ct];
size.PutF[" %g", IO.real[area]]; time.PutF[" %g", IO.real[delay]];
msg.PutF["%g counter %g bits: %f.3 mm2, %f.1 ns", IO.rope[IF mode=ripple THEN "Ripple" ELSE "Lookahead"], IO.int[nbits], IO.real[area], IO.real[delay]];
IO.Flush[msg];
};
msg: IO.STREAM ← ViewerIO.CreateMessageWindowStream[];
time: IO.STREAMFS.StreamOpen["///Temp/LogicUpCounterSpeed.list", create];
size: IO.STREAMFS.StreamOpen["///Temp/LogicUpCounterSize.list", create];
time.PutF["-- ///Temp/CounterSpeed.list\n-- Timing estimates for counters (Mint)\n\nVariables:\n\n NbBits Ripple Lookahead\n\nValues:\n\n"];
size.PutF["-- ///Temp/CounterSize.list\n-- Size estimates for counters (Mint)\n\nVariables:\n\n NbBits Ripple Lookahead\n\nValues:\n\n"];
FOR i: NAT IN [2..32] DO
time.PutF[" %g", IO.int[i]];
size.PutF[" %g", IO.int[i]];
Test[i, ripple]; -- serial carry chain
Test[i, lookahead]; -- carry lookahead by 2 with inversions
time.PutF["\n"];
size.PutF["\n"];
ENDLOOP;
};
Utility functions
Area: PROC [ct: Core.CellType, testName: ROPENIL] RETURNS [area: REAL] ~ {
Uses LogicUtilsImpl (horribile visu) to compute SC cell area in sq mm. The first-level instance named testName is the one for which the size is returned, except that if testName is NIL, then the size of the whole celltype is returned.
table: HashTable.Table ← HashTable.Create[equal: HashTable.RopeEqual, hash: HashTable.HashRope];
target: Core.CellType ← NIL;
IF testName#NIL THEN { -- locate named instance in RCT
record: CoreClasses.RecordCellType ← NARROW [ct.data];
FOR i: NAT IN [0..record.size) DO
IF Rope.Equal[CoreClasses.GetCellInstanceName[record.instances[i]], testName] THEN target ← record.instances[i].type;
ENDLOOP;
IF target=NIL THEN ERROR;
}
ELSE target ← ct; -- use ct itself
area ← LogicUtilsImpl.Size[target, table].size*1040.0/1000000.0; -- in sq mm
};
Delay: PROC [ct: Core.CellType] RETURNS [delay: REAL] ~ {
Uses Mint to compute worst case delay through a cell, in ns
circuit: Mint.Circuit;
clkList: Mint.NodeList;
gndNode, vddNode: Mint.Node;
WriteCapa.WriteWireCapa[ct];
circuit ← Mint.InputData[ct, FALSE];
vddNode ← Mint.NodeFromRope["public.Vdd", circuit];
Mint.SetNode[vddNode, TRUE];
gndNode ← Mint.NodeFromRope["public.Gnd", circuit];
Mint.SetNode[gndNode, FALSE];
Mint.PrepareSets[circuit, LIST[gndNode, vddNode]];
clkList ← LIST[ Mint.NodeFromRope["CK", circuit]];
delay ← Mint.MaxFreqEvaluate[circuit: circuit, clkList: clkList, numberOfPaths: 1, from: 0.0, histOk: FALSE].worst/1000.0; -- in ns
Mint.KillCircuit[circuit];
};
END.