DIRECTORY CD, CoreFlat, RefTab, SoftHdwBasics, SoftHdwAssembly, SoftHdwCompiler, TerminalIO; SoftHdwRouterOutput: CEDAR PROGRAM IMPORTS RefTab, SoftHdwAssembly, SoftHdwBasics EXPORTS SoftHdwCompiler = BEGIN OPEN SoftHdwCompiler; MarkedPlaceAndRoute: PUBLIC PROC [placement: Placement, route: RefTab.Ref, incompleteNetEnds: NetEndList, sizes: ArrayPosition] = { ColorPosition: PROC [node: Node] = TRUSTED { position: SoftHdwAssembly.ArrayPosition _ SoftHdwBasics.CopyArrayPositionRec[node.position]; positions _ CONS[[red, position], positions]; }; program: SoftHdwAssembly.Program _ ProgramFromPlaceAndRoute[placement, route, incompleteNetEnds]; design: CD.Design _ SoftHdwAssembly.PrintAndDraw[sizes, program]; positions: SoftHdwAssembly.ColoredArrayPositions _ NIL; FOR ine: NetEndList _ incompleteNetEnds, ine.rest UNTIL ine=NIL DO ColorPosition[ine.first.source]; FOR nl: Nodes _ ine.first.destinations, nl.rest UNTIL nl=NIL DO ColorPosition[nl.first]; ENDLOOP; ENDLOOP; SoftHdwAssembly.HighlightDesign[design, sizes, positions]; }; ProgramFromPlaceAndRoute: PUBLIC PROC [placement: Placement, route: RefTab.Ref, incompleteNetEnds: NetEndList] RETURNS [program: SoftHdwAssembly.Program] = { ParsePlacement: RefTab.EachPairAction = { p: Primitive _ NARROW[key]; pa: PrimitiveAssignment _ NARROW[val]; grain: INT; position^ _ pa.position^; position.type _ InputEnabled; FOR index: CARDINAL IN [0..pa.size) DO grain _ pa[index]; SELECT position.orientation FROM Vertical => position.grain.y _ grain; Horizontal => position.grain.x _ grain; ENDCASE => ERROR; program.tiles _ CONS[SoftHdwBasics.CopyArrayPosition[position], program.tiles]; ENDLOOP; IF p.flatClock#NIL THEN { position^ _ pa.position^; position.type _ FlipFlop; program.tiles _ CONS[SoftHdwBasics.CopyArrayPosition[position], program.tiles]; }; }; ParseRoute: RefTab.EachPairAction = { path: Path _ NARROW[val]; ParsePath[path] }; ParsePath: PROC [path: Path] = { pos, nextPos: ArrayPosition; FOR index: CARDINAL IN [0..path.size) DO pos _ path[index]; IF index { position.grain.x _ from.grain.x; position.grain.y _ to.grain.y }; Horizontal => { position.grain.y _ from.grain.y; position.grain.x _ to.grain.x }; ENDCASE => ERROR; }; program.tiles _ CONS[SoftHdwBasics.CopyArrayPosition[position], program.tiles]; }; position: ArrayPosition _ NEW[ArrayPositionRec]; nextPosition: ArrayPosition _ NEW[ArrayPositionRec]; program _ SoftHdwAssembly.Create[NIL, NIL, MinorArray, NIL]; [] _ RefTab.Pairs[placement.positions, ParsePlacement]; [] _ RefTab.Pairs[route, ParseRoute]; FixUpPathInversions[placement, route, program]; }; IsPathSegmentInverting: PROC [from, to: ArrayPosition] RETURNS [invert: BOOL] ~{ invert _ SELECT from.type FROM Input => SELECT to.type FROM Output => TRUE, ENDCASE => ERROR, Interchip => ERROR, Long => SELECT to.type FROM Input => FALSE, ENDCASE => ERROR, Output => SELECT to.type FROM Input => FALSE, Long => FALSE, LeftDown => TRUE, RightUp => TRUE, ENDCASE => ERROR, LeftDown => SELECT to.type FROM Input => FALSE, LeftDown => TRUE, ENDCASE => ERROR, RightUp => SELECT to.type FROM Input => FALSE, RightUp => TRUE, ENDCASE => ERROR, ENDCASE => ERROR; }; SelectArcType: PROC [from, to: ArrayPosition] RETURNS [type: NodeType] ~{ type _ SELECT from.type FROM Input => SELECT to.type FROM Output => IF (from.orientation=to.orientation) THEN ParallelInput ELSE InputEnabled, ENDCASE => ERROR, Interchip => ERROR, Long => SELECT to.type FROM Input => LToI, ENDCASE => ERROR, Output => SELECT to.type FROM Input => IF ((from.minorArray.x=to.minorArray.x) AND from.orientation=Horizontal) OR ((from.minorArray.y=to.minorArray.y) AND from.orientation=Vertical) THEN ORUToI ELSE OLDToI, Long => ORUToL, LeftDown => ORUToLD, RightUp => OLDToRU, ENDCASE => ERROR, LeftDown => SELECT to.type FROM Input => LDToI, LeftDown => LDToLD, ENDCASE => ERROR, RightUp => SELECT to.type FROM Input => RUToI, RightUp => RUToRU, ENDCASE => ERROR, ENDCASE => ERROR; }; FixUpPathInversions: PROC [placement: Placement, route: RefTab.Ref, program: SoftHdwAssembly.Program] ~ { flatCell: FlatCell _ placement.flatCell; EachWire: RefTab.EachPairAction ~ { wire: CoreFlat.FlatWire _ NARROW[key]; primitive: Primitive _ NARROW[val]; primitiveAssignment: PrimitiveAssignment _ NARROW[RefTab.Fetch[placement.positions, primitive].val]; primitivePosition: ArrayPosition _ primitiveAssignment.position; pathInverted, outputInverted, inputInverted, totalInversion, completed: BOOL; FOR index: CARDINAL IN [0..primitive.size) DO inputGrainIndex: CARDINAL _ primitiveAssignment[index]; polarizedInput: PolarizedInputRec _ primitive[index]; source: Primitive _ polarizedInput.source; path: Path; IF source#NIL THEN { path _ NARROW[RefTab.Fetch[route, source.flatOutput].val]; IF path=NIL THEN RETURN; inputPos^ _ primitivePosition^; SELECT primitivePosition.orientation FROM Horizontal => { inputPos.orientation _ Vertical; inputPos.grain.y _ 0; inputPos.grain.x _ inputGrainIndex}; Vertical => { inputPos.orientation _ Horizontal; inputPos.grain.x _ 0; inputPos.grain.y _ inputGrainIndex}; ENDCASE => ERROR; [completed, pathInverted] _ IsPathInverting[path, inputPos]; inputInverted _ polarizedInput.negate; outputInverted _ primitive.negateOutput; totalInversion _ pathInverted#(inputInverted#outputInverted); IF totalInversion THEN ProgramInverterForInput[inputPos, program]; }; ENDLOOP; }; inputPos: ArrayPosition _ NEW[ArrayPositionRec]; [] _ RefTab.Pairs[flatCell.wires, EachWire]; }; ProgramInverterForInput: PROC [inputPos: ArrayPosition, program: SoftHdwAssembly.Program] ~ { position: ArrayPositionRec _ inputPos^; position.type _ Inverter; program.tiles _ CONS[SoftHdwBasics.CopyArrayPositionRec[position], program.tiles]; }; IsPathInverting: PROC [path: Path, inputPos: ArrayPosition] RETURNS [arrived: BOOL _ FALSE, invert: BOOL _ FALSE] ~ { TracePath: PROC [path: Path, dest: ArrayPosition, inversion: BOOL] RETURNS [BOOL, BOOL] ~ { FOR index: CARDINAL IN [0..path.size) DO position _ path[index]; IF SoftHdwBasics.ArrayPositionEqual[position, inputPos] THEN RETURN[TRUE, inversion]; IF index { position.grain.x _ from.grain.x; position.grain.y _ to.grain.y }; Horizontal => { position.grain.y _ from.grain.y; position.grain.x _ to.grain.x }; ENDCASE => ERROR; }; pathlist _ CONS[SoftHdwBasics.CopyArrayPosition[position], pathlist]; }; TracePath[path]; }; END. ˆ SoftHdwRouterOutput.mesa Copyright ำ 1988 by Xerox Corporation. All rights reserved. Minsky, July 26, 1989 10:07:25 am PDT Barth, September 7, 1989 5:17:07 pm PDT (... incompleteNetEnds is not yet used, but should be used to flag dangling wires. ) ...Creates a routing tile (or programming tile) for the arc between the from and to nodes. Assign the ownership of routing tile to the rightmost or topmost minor array. InputEnabled tile inherits orientation from Output node. Look up the correct routing tile type to join the two nodes, from and to. Look up the correct routing tile type to join the two nodes, from and to. An Output to Input is either an ORUToI or else OLDToI NodeType: TYPE = {OToP, RUToP, LDToP, LToP, PToI, PToRU, PToLD, PToL, ORUToI, LDToLD, OLDToI, ORUToL, Tristate, RUToRU, ORUToLD, LDToI, OLDToRU, LToI, RUToI, Inverter, FlipFlop, ParallelInput, InputEnabled, RAMEven, RAMOdd, Master, Input, Interchip, Long, Output, LeftDown, RightUp}; Calculates the parity of each path destination input, and adds an inverter on the input if needed. For each primitive, find the parity of the path to its inputs. Iterate over all the inputs to this primitive, and trace the path from their source XOR Places an inverter tile in the program at the specified location Traces a path recursively until it hits inputPos. Combines all inversions along the way Did we find the inputPos on this path? If the destination was never found, then that means we are using an incomplete path. Maybe we should print something, or flag an error... Returns the Nth path in the table Takes a flattened path, and returns it colored red. Highlights a path. returns a flattened list of array positions Creates a routing tile (or programming tile) for the arc between the from and to nodes. Assign the ownership of routing tile to the rightmost or topmost minor array. InputEnabled tile inherits orientation from Output node. ส ฎ™šœ™Icode™Kšœœ˜&Kšœœ˜#Kšœ+œ3˜dKšœ@˜@KšœH˜MK™Sšœœœ˜-Kšœœ˜7Kšœ5˜5Kšœ*˜*Kšœ ˜ šœœ˜Kšœœ-˜:Kšœœœœ˜Kšœ˜šœœ˜*šœ0˜0Kšœ˜Kšœ$˜$—šœ0˜0Kšœ˜Kšœ$˜$—Kšœœ˜—Kšœ<˜