~ubuntu-branches/ubuntu/jaunty/electric/jaunty

« back to all changes in this revision

Viewing changes to html/manual/text/chap11-03.html

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-01-08 02:05:08 UTC
  • mfrom: (1.3.1 upstream) (3.1.3 sid)
  • mto: (3.1.4 sid)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20090108020508-3e7e6241i7bkit2l
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<HTML><HEAD><TITLE>Using Electric 11-3: The TCL Interface</TITLE></HEAD>
2
 
<BODY BGCOLOR="#FFFFFF">
3
 
<!-- PAGE BREAK --><A NAME="chap11-03"></A>
4
 
 
5
 
<BR><CENTER><FONT SIZE=6><B>Chapter 11: INTERPRETERS</B></FONT></CENTER><BR>
6
 
<CENTER><TABLE WIDTH="90%" BORDER=0><TR>
7
 
<TD><CENTER><A HREF="chap11-02.html#chap11-02"><IMG SRC="../images/iconplug.png" ALT="plug" BORDER=0></A></CENTER></TD>
8
 
<TD><CENTER><H2>11-3: The TCL Interface</H2></CENTER></TD>
9
 
<TD><CENTER><A HREF="chap11-04.html#chap11-04"><IMG SRC="../images/iconplug.png" ALT="plug" BORDER=0></A></CENTER></TD></TR></TABLE></CENTER>
10
 
<HR>
11
 
<BR>
12
 
 
13
 
This section explains the TCL interpretive language interface in the Electric VLSI design system.
14
 
<P>
15
 
Throughout this section, examples of TCL code will appear <U>underlined</U>.
16
 
For example, the "getarcproto" function takes the name of an arc prototype and returns a pointer to that object.
17
 
This is coded as <U>getarcproto Metal-1</U> which evaluates to the pointer of the form <U>#arcproto15391808</U>.
18
 
<P>
19
 
This section assumes that the reader is very familiar with the use of Electric,
20
 
and somewhat familiar with the internals of the system.
21
 
The Internals Manual
22
 
(a document that is available from <A HREF="http://www.staticfreesoft.com">Static Free Software</A>)
23
 
provides a broad, C-oriented view of the information described here.
24
 
For users of TCL, however, this section summarizes the relevant aspects of the Internals Manual.
25
 
In general, the best way to understand this section is to try each command as it is explained.
26
 
 
27
 
<H3>Session Control</H3>
28
 
 
29
 
<P>
30
 
To invoke the TCL interpreter, use the <B>TCL...</B> subcommand of the <B>Language Interpreter</B>
31
 
command of the <B>Tools</B> menu.
32
 
On some systems it may be necessary to move the cursor into the messages window
33
 
(the text window) in order for the interpreter to "hear" you.
34
 
<P>
35
 
If you have a disk file with TCL code in it, you can read it into the interpreter by typing:
36
 
<BR>&nbsp;&nbsp;<U>load FILENAME</U><BR>
37
 
<P>
38
 
To get back to Electric from TCL, type ^D (hold the Control key and type a "D").
39
 
On Windows, you must type the ESC key instead.
40
 
 
41
 
 
42
 
<H3>Database Structure</H3>
43
 
 
44
 
<P>
45
 
The entire Electric database is a collection of objects, each of which has an arbitrary number of attributes.
46
 
This section briefly outlines the object types and shows how they are related.
47
 
Further detail can be found in the Internals Manual.
48
 
See <A HREF="chap11-05.html#chap11-05">Section 11-5</A> for a list of attributes on these objects.
49
 
<P>
50
 
Individual components inside of circuits are described with <U>nodeinst</U> objects
51
 
(instances of nodes),
52
 
and individual wires are described with <U>arcinst</U> objects (instances of arcs).
53
 
Connections between components and wires are described with <U>portarcinst</U> objects
54
 
(instances of ports that connect to arcs).
55
 
Because both components and wires have geometry,
56
 
each one also has an associated <U>geom</U> object,
57
 
and all of the <U>geom</U> objects in a facet are organized spatially into an R-tree with a collection of
58
 
<U>rtnode</U> objects.
59
 
<P>
60
 
Class objects also exist to describe all individuals of a given type.
61
 
The <U>nodeproto</U> object describes the prototypical component,
62
 
which may have many individual <U>nodeinst</U> objects associated with it.
63
 
For example, the CMOS P-Transistor is described with a single <U>nodeproto</U> object,
64
 
and many <U>nodeinst</U> objects for each instance of such a transistor in any circuit.
65
 
Hierarchy is implemented by having complex components, better known as facets,
66
 
represented in the same way as the primitive components such as transistors.
67
 
For example, the ALU circuit is described with a single <U>nodeproto</U> object,
68
 
and each instance of that circuit higher up the hierarchy is described with a <U>nodeinst</U> object.
69
 
<P>
70
 
The <U>cell</U> object aggregates different views and versions of a circuit.
71
 
Each of these is called a "facet" (represented with a <U>nodeproto</U> object)
72
 
and a facet has both a <U>view</U> pointer and a version number.
73
 
<P>
74
 
In addition to component prototypes,
75
 
 the <U>arcproto</U> describes classes of wires and the <U>portproto</U> describes classes of component-wire connections.
76
 
An additional object, the <U>portexpinst</U>, exists for exports.
77
 
The <U>network</U> object describes electrically connected <U>arcinst</U> and <U>portproto</U> objects
78
 
within a facet.
79
 
<P>
80
 
As a further aggregation of objects, the <U>library</U> is a collection of cells and facets.
81
 
The <U>technology</U> is a collection of primitive components (<U>nodeproto</U>s)
82
 
and all wire classes (<U>arcproto</U>s).
83
 
<P>
84
 
In addition to the above object pointers,
85
 
there are some standard types of values that can be accessed through <U>getval</U>:
86
 
<CENTER><TABLE BORDER=1>
87
 
<TR><TD><U>integer</U></TD><TD>32-bit integer</TD></TR>
88
 
<TR><TD><U>string</U></TD><TD>null-terminated string of bytes</TD></TR>
89
 
<TR><TD><U>float</U></TD><TD>32-bit floating point number</TD></TR>
90
 
<TR><TD><U>window</U></TD><TD>window partition object</TD></TR>
91
 
<TR><TD><U>windowframe</U></TD><TD>display window object</TD></TR>
92
 
<TR><TD><U>constraint</U></TD><TD>constraint system object</TD></TR>
93
 
<TR><TD><U>graphics</U></TD><TD>graphical attributes object</TD></TR>
94
 
</TABLE></CENTER>
95
 
<P>
96
 
Also, there is the ability to have displayable variables
97
 
(those whose values appear on the object) with the keyword: <U>displayable</U>.
98
 
 
99
 
<H3>Database Examination</H3>
100
 
 
101
 
<P>
102
 
To begin a search through the database, it is important to know the current library.
103
 
This is done with:
104
 
<BR>&nbsp;&nbsp;<U>curlib</U><BR>
105
 
which returns a pointer to a <U>library</U> object (for example <U>#library15464800</U>).
106
 
From here, the current facet can be obtained with:
107
 
<BR>&nbsp;&nbsp;<U>getval [curlib] firstnodeproto</U><BR>
108
 
<P>
109
 
Essentially, any attribute can be examined with <U>getval</U>,
110
 
and new attributes can be created with <U>setval</U>.
111
 
<U>Getval</U> has the following format:
112
 
<BR>&nbsp;&nbsp;<U>getval Object Attribute</U><BR>
113
 
where <U>Object</U> is the object being accessed and <U>Attribute</U> is the attribute being requested.
114
 
A list of all existing attributes on the Electric objects is given at the end of this document.
115
 
<P>
116
 
New attributes can be created on any object with <U>setval</U>.
117
 
In general,
118
 
many of the existing attributes that are described at the end of this document cannot be set with <U>setval</U>,
119
 
but rather are controlled with special database modification predicates.
120
 
The format for <U>setval</U> is:
121
 
<BR>&nbsp;&nbsp;<U>setval Object Attribute Value Options</U><BR>
122
 
Where the <U>Options</U> are either <U>0</U> or <U>displayable</U> to show this attribute when displaying the object.
123
 
For example, to add a new attribute called "power-consumption" to the transistor component "t1",
124
 
and give it the value 75, use:
125
 
<BR>&nbsp;&nbsp;<U>setval $t1 power-consumption 75</U><BR>
126
 
To add a displayed name to node "t1", use:
127
 
<BR>&nbsp;&nbsp;<U>setval $t1 NODE_name Q1 displayable</U><BR>
128
 
To set an array of values, use <U>lists</U>.
129
 
For example, to set the shape of pure-layer node "metal" to be a diamond, use:
130
 
<BR>&nbsp;&nbsp;<U>setval $metal trace {-1000 0 0 1000 1000 0 0 -1000}</U><BR>
131
 
<P>
132
 
Single entries in array attributes can be set, with:
133
 
<BR>&nbsp;&nbsp;<U>setind Object Attribute Index Value</U><BR>
134
 
where <U>Index</U> is the 0-based entry in the array.
135
 
<P>
136
 
Finally, attributes can be deleted with:
137
 
<BR>&nbsp;&nbsp;<U>delval Object Attribute</U><BR>
138
 
However, only those attributes that have been created with <U>setval</U> can be deleted in this way.
139
 
The other attributes are protected.
140
 
 
141
 
<H3>Basic Synthesis</H3>
142
 
 
143
 
<P>
144
 
To create a new facet in the current library, use:
145
 
<BR>&nbsp;&nbsp;<U>newnodeproto FacetName [curlib]</U><BR>
146
 
which returns a <U>nodeproto</U> pointer that can be used in subsequent calls which place components and wires in that facet.
147
 
<P>
148
 
To get the address of an existing <U>nodeproto</U>, use:
149
 
<BR>&nbsp;&nbsp;<U>getnodeproto FacetName</U><BR>
150
 
which returns the same type of value as <U>newnodeproto</U>.
151
 
Thus, the code:
152
 
<BR>&nbsp;&nbsp;<U>set myfacet [newnodeproto "adder{lay}" [curlib]]</U><BR>
153
 
is the same as the code:
154
 
<BR>&nbsp;&nbsp;<U>newnodeproto "adder{lay}" [curlib]</U><BR>
155
 
&nbsp;&nbsp;<U>set myfacet [getnodeproto "adder{lay}"]</U><BR>
156
 
and both deal with the "layout" view of the cell called "adder".
157
 
<P>
158
 
As an aside, the predicate <U>getcell</U> can be used to get a <U>cell</U> object, such that:
159
 
<BR>&nbsp;&nbsp;<U>getcell adder</U><BR>
160
 
returns the same thing as:
161
 
<BR>&nbsp;&nbsp;<U>getval $myfacet cell</U><BR>
162
 
<P>
163
 
To create a component in a facet, use:
164
 
<BR>&nbsp;&nbsp;<U>newnodeinst Proto LowX HighX LowY HighY Transpose Angle Facet</U><BR>
165
 
where <U>Proto</U> is a <U>nodeproto</U> of the component that is to be created,
166
 
<U>LowX</U>, <U>HighX</U>, <U>LowY</U>, and <U>HighY</U> are the bounds of the component,
167
 
<U>Angle</U> is the number of tenth-degrees of rotation for the component,
168
 
<U>Transpose</U> is nonzero to transpose the component's orientation (after rotation),
169
 
and <U>Facet</U> is the <U>nodeproto</U> in which to place the component.
170
 
<P>
171
 
The four bounds values are somewhat confusing to compute.
172
 
For primitive components (such as Transistors), any value is acceptable and the component will scale.
173
 
However, it is still nice to know the default value,
174
 
which can be obtained from the <U>nodeproto</U> with <U>getval</U> as follows:
175
 
<BR>&nbsp;&nbsp;<U>set tran [getnodeproto P-Transistor]</U><BR>
176
 
&nbsp;&nbsp;<U>set lowx [getval $tran lowx]</U><BR>
177
 
&nbsp;&nbsp;<U>set highx [getval $tran highx]</U><BR>
178
 
&nbsp;&nbsp;<U>set lowy [getval $tran lowy]</U><BR>
179
 
&nbsp;&nbsp;<U>set highy [getval $tran highy]</U><BR>
180
 
When complex components (facets) are placed,
181
 
 the bounds MUST be exactly the same as the bounding box of the facet's contents.
182
 
This information is available in the above manner.
183
 
As an example of <U>newnodeinst</U>, and given the above bounds calculations,
184
 
a default size P-Transistor is created in facet "adder" with:
185
 
<BR>&nbsp;&nbsp;<U>set t1 [newnodeinst $tran $lowx $highx $lowy $highy 0 0 $myfacet]</U><BR>
186
 
The returned pointer to the transistor component will be used later when wiring.
187
 
<P>
188
 
To wire two components, it is necessary to know these four things:
189
 
<UL>
190
 
<LI>The component objects on the two ends, returned by <U>newnodeinst</U>
191
 
<LI>The <U>portproto</U> values of the connection sites on the components
192
 
<LI>The X and Y coordinates of the connection sites
193
 
<LI>The type, width, and other characteristics of the wire being created
194
 
</UL>
195
 
Connection sites are called <U>portproto</U>s and are associated with <U>nodeproto</U>s.
196
 
To get the address, use:
197
 
<BR>&nbsp;&nbsp;<U>getportproto NodeProto PortName</U><BR>
198
 
For example, to get the polysilicon port on the left side of the MOSIS CMOS P-Transistor, use:
199
 
<BR>&nbsp;&nbsp;<U>set polyleft [getportproto $tran p-trans-poly-left]</U><BR>
200
 
Unfortunately, there is no good way to get a list of port names on the primitive components.
201
 
There are, however, some simplifications.
202
 
For example, if there is only one port (as is the case with most contacts and pins)
203
 
then its name is not necessary:
204
 
<BR>&nbsp;&nbsp;<U>set port [getval $tran firstportproto]</U><BR>
205
 
This will obtain the first port on the P-Transistor component.
206
 
To obtain the coordinates of a port for wiring, use
207
 
<BR>&nbsp;&nbsp;<U>portposition Node Port</U><BR>
208
 
This returns a list with the coordinates.
209
 
For example:
210
 
<BR>&nbsp;&nbsp;<U>set portpos [portposition $t1 $polyleft]</U><BR>
211
 
will obtain the coordinate of the "p-trans-poly-left" port on the newly created P-Transistor, t1.
212
 
The X value will be <U>lindex $portpos 0</U> and the Y value will be <U>lindex $portpos 1</U>.
213
 
<P>
214
 
The final piece of information necessary is the type of arc and the width of the arc.
215
 
Given an arc name, the type can be obtained with:
216
 
<BR>&nbsp;&nbsp;<U>getarcproto ArcName</U><BR>
217
 
Given an <U>arcproto</U>, its default width can be obtained with:
218
 
<BR>&nbsp;&nbsp;<U>getval Arc nominalwidth</U><BR>
219
 
When all of the information is ready, the call:
220
 
<BR>&nbsp;&nbsp;<U>newarcinst ArcType Width Bits NodeA PortA XA YA NodeB PortB XB YB Facet</U><BR>
221
 
places the wire.
222
 
You can ignore the value of <U>Bits</U> and set it to zero.
223
 
<P>
224
 
Here is a complete example of placing a transistor, a contact, and running a wire between them
225
 
(the result is shown here).
226
 
<TABLE><TR><TD>
227
 
<P>
228
 
&nbsp;&nbsp;<U># create a facet called "tran-contact" in the current library</U><BR>
229
 
&nbsp;&nbsp;<U>set myfacet [newnodeproto tran-contact [curlib]]</U><BR>
230
 
<BR>
231
 
&nbsp;&nbsp;<U># get pointers to primitives</U><BR>
232
 
&nbsp;&nbsp;<U>set tran [getnodeproto P-Transistor]</U><BR>
233
 
&nbsp;&nbsp;<U>set contact [getnodeproto Metal-1-Polysilicon-1-Con]</U><BR>
234
 
<BR>
235
 
&nbsp;&nbsp;<U># get default sizes of these primitives</U><BR>
236
 
&nbsp;&nbsp;<U>set tlowx [getval $tran lowx]</U><BR>
237
 
&nbsp;&nbsp;<U>set thighx [getval $tran highx]</U><BR>
238
 
&nbsp;&nbsp;<U>set tlowy [getval $tran lowy]</U><BR>
239
 
&nbsp;&nbsp;<U>set thighy [getval $tran highy]</U><BR>
240
 
&nbsp;&nbsp;<U>set clowx [getval $contact lowx]</U><BR>
241
 
&nbsp;&nbsp;<U>set chighx [getval $contact highx]</U><BR>
242
 
&nbsp;&nbsp;<U>set clowy [getval $contact lowy]</U><BR>
243
 
&nbsp;&nbsp;<U>set chighy [getval $contact highy]</U><BR>
244
 
<BR>
245
 
&nbsp;&nbsp;<U># get pointer to Polysilicon arc and its default width</U><BR>
246
 
&nbsp;&nbsp;<U>set arctype [getarcproto Polysilicon]</U><BR>
247
 
&nbsp;&nbsp;<U>set width [getval $arctype nominalwidth]</U><BR>
248
 
<BR>
249
 
&nbsp;&nbsp;<U># create the transistor and the contact to its left</U><BR>
250
 
&nbsp;&nbsp;<U>set c1 [newnodeinst $contact $clowx $chighx</U><BR>
251
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>$clowy $chighy 0 0 $myfacet]</U><BR>
252
 
&nbsp;&nbsp;<U>set t1 [newnodeinst $tran [expr $tlowx+8000]</U><BR>
253
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>[expr $thighx+8000] $tlowy $thighy 0 0 $myfacet]</U><BR>
254
 
<BR>
255
 
&nbsp;&nbsp;<U># get the transistor's left port coordinates</U><BR>
256
 
&nbsp;&nbsp;<U>set tport [getportproto $tran p-trans-poly-left]</U><BR>
257
 
&nbsp;&nbsp;<U>set tpos [portposition $t1 $tport]</U><BR>
258
 
<BR>
259
 
&nbsp;&nbsp;<U># get the contacts's only port coordinates</U><BR>
260
 
&nbsp;&nbsp;<U>set cport [getval $contact firstportproto]</U><BR>
261
 
&nbsp;&nbsp;<U>set cpos [portposition $c1 $cport]</U><BR>
262
 
<BR>
263
 
&nbsp;&nbsp;<U># run a wire between the primitives</U><BR>
264
 
&nbsp;&nbsp;<U>newarcinst $arctype $width 0</U><BR>
265
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>$t1 $tport [lindex $tpos 0] [lindex $tpos 1]</U><BR>
266
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>$c1 $cport [lindex $cpos 0] [lindex $cpos 1] $myfacet</U><BR>
267
 
</TD><TD VALIGN=TOP><CENTER><IMG SRC="../images/chap11-01.png" ALT="Figure 11.1"></CENTER></TD></TR></TABLE>
268
 
 
269
 
<H3>Hierarchy</H3>
270
 
 
271
 
<P>
272
 
Facets, as created by <U>newnodeproto</U>, can be placed in other facets with <U>newnodeinst</U>.
273
 
The instances simply use complex <U>nodeproto</U> fields rather than primitive <U>nodeproto</U>s as in the above example.
274
 
For example, the following code creates a new facet called "two-trans"
275
 
and places two instances of the above "tran-contact" facet, one above the other.
276
 
<TABLE><TR><TD>
277
 
<P>
278
 
&nbsp;&nbsp;<U># create a facet called "two-trans"</U><BR>
279
 
&nbsp;&nbsp;<U>set higherfacet [newnodeproto two-trans [curlib]]</U><BR>
280
 
<BR>
281
 
&nbsp;&nbsp;<U># get pointer to the "tran-contact" facet</U><BR>
282
 
&nbsp;&nbsp;<U>set tc [getnodeproto tran-contact]</U><BR>
283
 
<BR>
284
 
&nbsp;&nbsp;<U># get size of this facet</U><BR>
285
 
&nbsp;&nbsp;<U>set lowx [getval $tc lowx]</U><BR>
286
 
&nbsp;&nbsp;<U>set highx [getval $tc highx]</U><BR>
287
 
&nbsp;&nbsp;<U>set lowy [getval $tc lowy]</U><BR>
288
 
&nbsp;&nbsp;<U>set highy [getval $tc highy]</U><BR>
289
 
<BR>
290
 
&nbsp;&nbsp;<U># create the two facet instances, one above the other</U><BR>
291
 
&nbsp;&nbsp;<U>set o1 [newnodeinst $tc $lowx $highx $lowy $highy</U><BR>
292
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>0 0 $higherfacet]</U><BR>
293
 
&nbsp;&nbsp;<U>set o2 [newnodeinst $tc $lowx $highx</U><BR>
294
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>[expr $lowy+10000] [expr $highy+10000]</U><BR>
295
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>0 0 $higherfacet]</U><BR>
296
 
</TD><TD><CENTER><IMG SRC="../images/chap11-02.png" ALT="Figure 11.2"></CENTER></TD></TR></TABLE>
297
 
<P>
298
 
Another necessary feature, when making hierarchy,
299
 
is the ability to place wires between connection sites on facet instances.
300
 
To do this, it is necessary to create exports.
301
 
This takes a port on a primitive component (for example,
302
 
the transistor or contact in the "tran-contact" facet) and makes it into an export on the current facet.
303
 
This is done with:
304
 
<BR>&nbsp;&nbsp;<U>newportproto Facet NodeInFacet PortOnNode PortName</U><BR>
305
 
where <U>Facet</U> is the facet containing the component whose port is being exported,
306
 
<U>NodeInFacet</U> is that component,
307
 
and <U>PortOnNode</U> is the particular port on that node being exported.
308
 
For example, to export the top and bottom diffusion ports in the "tran-contact" facet
309
 
(as shown here), the following code can be added:
310
 
<TABLE><TR><TD>
311
 
<BR>&nbsp;&nbsp;<U>newportproto $myfacet $t1<BR>
312
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>[getportproto $tran p-trans-diff-top] topdiff<BR>
313
 
&nbsp;&nbsp;<U>newportproto $myfacet $t1<BR>
314
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>[getportproto $tran p-trans-diff-bottom] botdiff</U><BR>
315
 
</TD><TD><CENTER><IMG SRC="../images/chap11-03.png" ALT="Figure 11.3"></CENTER></TD></TR></TABLE>
316
 
<P>
317
 
And then, the components "o1" and "o2" in the facet "two-trans" can be wired,
318
 
using the ports called "topdiff" and "botdiff":
319
 
<TABLE><TR><TD>
320
 
<P>
321
 
&nbsp;&nbsp;<U># get pointer to P-Active arc and its default width</U><BR>
322
 
&nbsp;&nbsp;<U>set darctype [getarcproto P-Active]</U><BR>
323
 
&nbsp;&nbsp;<U>set dwidth [getval $darctype nominalwidth]</U><BR>
324
 
<BR>
325
 
&nbsp;&nbsp;<U># get the bottom facet's top port</U><BR>
326
 
&nbsp;&nbsp;<U>set lowport [getportproto $myfacet topdiff]</U><BR>
327
 
&nbsp;&nbsp;<U>set lowpos [portposition $o1 $lowport]</U><BR>
328
 
<BR>
329
 
&nbsp;&nbsp;<U># get the top facet's bottom port</U><BR>
330
 
&nbsp;&nbsp;<U>set highport [getportproto $myfacet botdiff]</U><BR>
331
 
&nbsp;&nbsp;<U>set highpos [portposition $o2 $highport]</U><BR>
332
 
<BR>
333
 
&nbsp;&nbsp;<U># run a wire between the primitives</U><BR>
334
 
&nbsp;&nbsp;<U>newarcinst $darctype $dwidth 0</U><BR>
335
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>$o1 $lowport [lindex $lowpos 0] [lindex $lowpos 1]</U><BR>
336
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>$o2 $highport [lindex $highpos 0]</U><BR>
337
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>[lindex $highpos 1] $higherfacet</U><BR>
338
 
</TD><TD><CENTER><IMG SRC="../images/chap11-04.png" ALT="Figure 11.4"></CENTER></TD></TR></TABLE>
339
 
 
340
 
 
341
 
<H3>Modification</H3>
342
 
 
343
 
<P>
344
 
Two types of modification can be done to existing objects: deletion and change.
345
 
To delete a facet, use:
346
 
<BR>&nbsp;&nbsp;<U>killnodeproto Facet</U><BR>
347
 
<P>
348
 
To make a copy of a facet (within the same library or from one library to another), use:
349
 
<BR>&nbsp;&nbsp;<U>copynodeproto FromFacet ToLibrary ToFacetName</U><BR>
350
 
where <U>FromFacet</U> is the original facet (<U>nodeproto</U>)
351
 
and <U>ToLibrary</U> is the destination library.
352
 
Use <U>curlib</U> to copy to the same library.
353
 
The new facet name is the last parameter.
354
 
The predicate returns the address of the new facet (<U>nodeproto</U>).
355
 
<P>
356
 
To delete a component, use:
357
 
<BR>&nbsp;&nbsp;<U>killnodeinst Node</U><BR>
358
 
Before a component can be deleted, all wires and exports must be removed.
359
 
<P>
360
 
To change the size or orientation of a component, use:
361
 
<BR>&nbsp;&nbsp;<U>modifynodeinst Node DLowX DLowY DHighX DHighY DRotation DTrans</U><BR>
362
 
where <U>DLowX</U>, <U>DLowY</U>, <U>DHighX</U>, and <U>DHighY</U> are the changes to position and size.
363
 
<U>DRotation</U> and <U>DTrans</U> are changes to the orientation.
364
 
<P>
365
 
To change the prototype of a component, use:
366
 
<BR>&nbsp;&nbsp;<U>replacenodeinst OldNode NewPrototype</U><BR>
367
 
where the old component is <U>OldNode</U>,
368
 
and the new <U>nodeproto</U> that should be in its place is <U>NewPrototype</U>.
369
 
This new prototype must be able to connect to all existing arcs.
370
 
The predicate returns the address of the new component.
371
 
<P>
372
 
To delete a wire, use:
373
 
<BR>&nbsp;&nbsp;<U>killarcinst Arc</U><BR>
374
 
<P>
375
 
To change the width or position of a wire, use:
376
 
<BR>&nbsp;&nbsp;<U>modifyarcinst Arc DWidth DX1 DY1 DX2 DY2</U><BR>
377
 
where <U>DWidth</U>, <U>DX1</U>, <U>DY1</U>, <U>DX2</U>, and <U>DY2</U> are the changes to the width,
378
 
X/Y position of end 1, and X/Y position of end 2.
379
 
Note that position changes cannot cause the connecting nodes to move,
380
 
so the changes may only be small ones that work within the ports.
381
 
<P>
382
 
To change the prototype of a wire, use:
383
 
<BR>&nbsp;&nbsp;<U>replacearcinst OldArc NewPrototype</U><BR>
384
 
where <U>OldArc</U> is the former wire and <U>NewPrototype</U> is the new <U>arcproto</U> to use.
385
 
The nodes on either end must be able to accept this new type of wire.
386
 
The predicate returns the address of the new wire.
387
 
<P>
388
 
To delete an export, use:
389
 
<BR>&nbsp;&nbsp;<U>killportproto Facet Port</U><BR>
390
 
which will remove port <U>Port</U> on facet <U>Facet</U>.
391
 
<P>
392
 
To move an export from one component to another (keeping connected wires), use:
393
 
<BR>&nbsp;&nbsp;<U>moveportproto Facet OldPort NewNode PortOnNewNode</U><BR>
394
 
where the old port is <U>OldPort</U> in facet <U>Facet</U>,
395
 
and it is now moved to component <U>NewNode</U> (which is also in facet <U>Facet</U>),
396
 
port <U>PortOnNewNode</U> of that component.
397
 
 
398
 
<H3>Search</H3>
399
 
 
400
 
<P>
401
 
A common operation is a search of all components in a facet.
402
 
The following code prints the name of all components in the facet "myfacet":
403
 
<P>
404
 
&nbsp;&nbsp;<U>for { set node [getval $myfacet firstnodeinst] }</U><BR>
405
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>{ [string c $node #nodeinst-1] != 0 }</U><BR>
406
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>{ set node [getval $node nextnodeinst] }</U><BR>
407
 
&nbsp;&nbsp;<U>{</U><BR>
408
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>puts stdout [format "Found %s node" [describenode $node]]</U><BR>
409
 
&nbsp;&nbsp;<U>}</U><BR>
410
 
<P>
411
 
Where <U>describenode</U> is defined as follows
412
 
(the name of a node is found in different places depending on whether it is a primitive or complex <U>nodeproto</U>):
413
 
<P>
414
 
&nbsp;&nbsp;<U>proc describenode node</U><BR>
415
 
&nbsp;&nbsp;<U>{</U><BR>
416
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>set proto [getval $node proto]</U><BR>
417
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>if { [getval $proto primindex] == 0}</U><BR>
418
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>{ return [getval [getval $proto cell] cellname] }</U><BR>
419
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>return [getval $proto primname]</U><BR>
420
 
&nbsp;&nbsp;<U>}</U><BR>
421
 
<P>
422
 
And the following code prints the name of all wires in the facet "myfacet":
423
 
<P>
424
 
&nbsp;&nbsp;<U>for { set arc [getval $myfacet firstarcinst] }</U><BR>
425
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>{ [string c $arc #arcinst-1] != 0 }</U><BR>
426
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>{ set arc [getval $arc nextarcinst] }</U><BR>
427
 
&nbsp;&nbsp;<U>{</U><BR>
428
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>puts stdout [format "Found %s arc"</U><BR>
429
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>[getval [getval $arc proto] protoname]]</U><BR>
430
 
&nbsp;&nbsp;<U>}</U><BR>
431
 
<P>
432
 
To do a search of all nodes and arcs in a rectangular area of a facet, first call:
433
 
<BR>&nbsp;&nbsp;<U>initsearch LowX HighX LowY HighY Facet</U><BR>
434
 
where <U>LowX</U>, <U>HighX</U>, <U>LowY</U>,
435
 
and <U>HighY</U> are the coordinates to search in facet <U>Facet</U> (a <U>nodeproto</U>).
436
 
This predicate will return a search key that can then be passed repeatedly to:
437
 
<BR>&nbsp;&nbsp;<U>nextobject SearchKey</U><BR>
438
 
which will return <U>geom</U> objects of each node and arc in the search area.
439
 
When this predicate returns <U>#geom-1</U>, the search is complete.
440
 
<U>geom</U> objects can point to either nodes or arcs, depending on their "entrytype" attribute:
441
 
1 for nodes and 2 for arcs.
442
 
Then, the "entryaddr" attribute will point to the actual <U>nodeinst</U> or <U>arcinst</U>.
443
 
Here is an example of code that prints the names of all nodes and arcs in the area
444
 
(2000 <= X <= 10000, -3000 <= Y <= 3000).
445
 
The selected area is shown as a black box here.
446
 
<TABLE><TR><TD>
447
 
<P>
448
 
&nbsp;&nbsp;<U>set key [initsearch 2000 10000 -3000 3000 $myfacet]</U><BR>
449
 
&nbsp;&nbsp;<U>for { set object [nextobject $key] }</U><BR>
450
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>{ [string c $object #geom-1] != 0 }</U><BR>
451
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>{ set object [nextobject $key] }</U><BR>
452
 
&nbsp;&nbsp;<U>{</U><BR>
453
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>set type [getval $object entrytype]</U><BR>
454
 
&nbsp;&nbsp;&nbsp;&nbsp;<U>if { $type == 1 }</U><BR>
455
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>{ puts stdout [format "Found %s node"</U><BR>
456
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>[describenode [getval $object entryaddr]]] }</U><BR>
457
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>else</U><BR>
458
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>{ puts stdout [format "Found %s arc" [getval [getval [</U><BR>
459
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<U>getval $object entryaddr] proto] protoname]] }</U><BR>
460
 
&nbsp;&nbsp;<U>}</U><BR>
461
 
</TD><TD><CENTER><IMG SRC="../images/chap11-05.png" ALT="Figure 11.5"></CENTER></TD></TR></TABLE>
462
 
 
463
 
<H3>Views</H3>
464
 
 
465
 
<P>
466
 
A view is an object that describes a cell.
467
 
There are many standard views: Layout, Schematic, Icon, Simulation-snapshot,
468
 
Skeleton, VHDL, Verilog, Document, Unknown, and many flavors of Netlist.
469
 
In addition, new views can be created with "newview":
470
 
<BR>&nbsp;&nbsp;<U>newview ViewName Abbreviation</U><BR>
471
 
and views can be deleted with <U>killview</U> (the standard views cannot be deleted):
472
 
<BR>&nbsp;&nbsp;<U>killview View</U><BR>
473
 
To get a view object, use <U>getview</U> on its name.
474
 
<P>
475
 
To associate different views of a cell,
476
 
the predicates <U>iconview</U> and <U>contentsview</U> obtain different facets.
477
 
For example:
478
 
<BR>&nbsp;&nbsp;<U>iconview Myfacet</U><BR>
479
 
finds the associated icon facet of the cell in which "Myfacet" resides.
480
 
 
481
 
<H3>Libraries</H3>
482
 
 
483
 
<P>
484
 
In the above examples, the current library was always used.
485
 
This is determined by calling:
486
 
<BR>&nbsp;&nbsp;<U>curlib</U><BR>
487
 
However, there can be other libraries.
488
 
To get a specific named library, use:
489
 
<BR>&nbsp;&nbsp;<U>getlibrary LibName</U><BR>
490
 
<P>
491
 
To create a new library, use:
492
 
<BR>&nbsp;&nbsp;<U>newlibrary LibraryName LibraryFile</U><BR>
493
 
where <U>LibraryName</U> is the name to use, and <U>LibraryFile</U> is the path name where this library will be saved.
494
 
This predicate returns the address of a new library object that can then be used when creating facets.
495
 
<P>
496
 
Only one library is the current one, and to switch, you must use:
497
 
<BR>&nbsp;&nbsp;<U>selectlibrary Lib</U><BR>
498
 
<P>
499
 
A library can be deleted with:
500
 
<BR>&nbsp;&nbsp;<U>killlibrary Lib</U><BR>
501
 
<P>
502
 
A library can be erased (its facets deleted, but not the library) with:
503
 
<BR>&nbsp;&nbsp;<U>eraselibrary Lib</U><BR>
504
 
 
505
 
<H3>Technologies</H3>
506
 
 
507
 
<P>
508
 
A technology is an environment of design that includes primitive components and wire prototypes.
509
 
The current technology can be obtained with:
510
 
<BR>&nbsp;&nbsp;<U>curtech</U><BR>
511
 
<P>
512
 
A specific technology can be obtained from its name with:
513
 
<BR>&nbsp;&nbsp;<U>gettechnology TechName</U><BR>
514
 
<P>
515
 
All technologies can be found by traversing a linked list,
516
 
the head of which is a technology named "Generic".
517
 
 
518
 
<H3>Tools</H3>
519
 
 
520
 
<P>
521
 
A tool is a piece of synthesis or analysis code that can operate upon the database.
522
 
A particular tool object can be obtained with:
523
 
<BR>&nbsp;&nbsp;<U>getaid ToolName</U><BR>
524
 
where the possible names of tools are:
525
 
<CENTER><TABLE BORDER=1>
526
 
<TR><TD><U>compaction</U></TD><TD>circuit compaction</TD></TR>
527
 
<TR><TD><U>compensation</U></TD><TD>geometry compensation</TD></TR>
528
 
<TR><TD><U>drc</U></TD><TD>design-rule checking</TD></TR>
529
 
<TR><TD><U>erc</U></TD><TD>electrical-rule checking</TD></TR>
530
 
<TR><TD><U>io</U></TD><TD>input/output control</TD></TR>
531
 
<TR><TD><U>logeffort</U></TD><TD>logical effort analysis</TD></TR>
532
 
<TR><TD><U>network</U></TD><TD>network maintenance</TD></TR>
533
 
<TR><TD><U>pla</U></TD><TD>programmable logic array generator</TD></TR>
534
 
<TR><TD><U>project</U></TD><TD>project management</TD></TR>
535
 
<TR><TD><U>routing</U></TD><TD>automatic wire routing</TD></TR>
536
 
<TR><TD><U>silicon-compiler</U></TD><TD>netlist-to-layout silicon assembler</TD></TR>
537
 
<TR><TD><U>simulation</U></TD><TD>simulation</TD></TR>
538
 
<TR><TD><U>user</U></TD><TD>the user interface</TD></TR>
539
 
<TR><TD><U>vhdl-compiler</U></TD><TD>VHDL-to-netlist compiler</TD></TR>
540
 
</TABLE></CENTER>
541
 
The number of tools is available with:
542
 
<BR>&nbsp;&nbsp;<U>maxaid</U><BR>
543
 
And a particular tool, indexed from 0 to (<U>maxaid</U>)-1 can be obtained with:
544
 
<BR>&nbsp;&nbsp;<U>indexaid Index</U><BR>
545
 
<P>
546
 
A tool can be switched on with:
547
 
<BR>&nbsp;&nbsp;<U>aidturnon Tool NoCatchUp</U><BR>
548
 
where <U>Tool</U> is a tool object,
549
 
and <U>NoCatchUp</U> is nonzero to suppress the catch-up activity normally provided when a tool has been off.
550
 
<P>
551
 
A tool can be turned off with:
552
 
<BR>&nbsp;&nbsp;<U>aidturnoff Tool</U><BR>
553
 
<P>
554
 
A tool can be given a specific instruction with:
555
 
<BR>&nbsp;&nbsp;<U>tellaid Tool PARAMETERS</U><BR>
556
 
For example, to list all technologies, use this code:
557
 
<BR>&nbsp;&nbsp;<U>tellaid [GetAid user] {show technologies}</U><BR>
558
 
These commands are from the low-level command interpreter,
559
 
which is documented fully in the Internals Manual.
560
 
 
561
 
<H3>Miscellaneous</H3>
562
 
 
563
 
<P>
564
 
Every change to the database is queued internally in a "batch" which includes the change and any constrained side-effects of that change.
565
 
A new batch is created for each TCL session with the interpreter
566
 
(also for each Electric command that is issued from the keyboard/mouse).
567
 
To reverse the last batch of changes, use:
568
 
<BR>&nbsp;&nbsp;<U>undoabatch</U><BR>
569
 
<P>
570
 
Multiple calls to this predicate in a single batch will undo multiple batches.
571
 
To erase the list of change batches, use:
572
 
<BR>&nbsp;&nbsp;<U>noundoallowed</U><BR>
573
 
<P>
574
 
If you are creating a wire that makes many bends,
575
 
it is necessary to create special nodes called "pins" at each bend.
576
 
To find out what kind of pin to use for a given wire type, use:
577
 
<BR>&nbsp;&nbsp;<U>getpinproto Arc</U><BR>
578
 
where <U>Arc</U> is the wire type, and the predicate returns the component type (<U>nodeproto</U>) of the pin.
579
 
<P>
580
 
Network objects can be obtained by name with the predicate <U>getnetwork</U>
581
 
which takes a name and a facet in which to search.
582
 
For example, the code:
583
 
<BR>&nbsp;&nbsp;<U>getnetwork insig Myfacet</U><BR>
584
 
obtains the address of the network called "insig" in facet <U>Myfacet</U>.
585
 
<P>
586
 
The generic function of a node instance can be determined with:
587
 
<BR>&nbsp;&nbsp;<U>nodefunction Node</U><BR>
588
 
which returns a value from the list of constants in the C header file "efunction.h".
589
 
This value is essentially the same one as would be obtained by looking at the "userbits" field of the node's prototype.
590
 
However, certain components that have generic prototypes will be made more specific by this predicate.
591
 
<P>
592
 
To get an attribute value from an instance above this in the hierarchy, use:
593
 
<BR>&nbsp;&nbsp;<U>getparentval Name Default Height</U><BR>
594
 
where <U>Name</U> is the attribute name, <U>Default</U> is the default value to return if the attribute is not found,
595
 
and <U>Height</U> is the number of levels of hierarchy to climb when looking for the attribute (0 for infinite).
596
 
As a shortcut for finding parameter values, there are four macros which use this routine:
597
 
<UL>
598
 
<LI><U>P xx</U> obtains the value of parameter <U>xx</U> from the parent instance in the hierarchy.
599
 
<LI><U>PD xx</U> def obtains the value of parameter <U>xx</U> from the parent instance in the hierarchy and uses the value <U>def</U>
600
 
if the parameter cannot be found.
601
 
<LI><U>PAR xx</U> obtains the value of parameter <U>xx</U> from any higher instance, anywhere in the hierarchy.
602
 
<LI><U>PARD xx</U> def obtains the value of parameter <U>xx</U> from any higher instance,
603
 
anywhere in the hierarchy and uses the value <U>def</U> if the parameter cannot be found.
604
 
</UL>
605
 
 
606
 
<P>
607
 
<HR>
608
 
<CENTER><TABLE BORDER=0><TR>
609
 
<TD><A HREF="chap11-02.html#chap11-02"><IMG SRC="../images/iconbackarrow.png" ALT="Prev" BORDER=0></A></TD>
610
 
<TD><A HREF="chap11-02.html#chap11-02">Previous</A></TD>
611
 
<TD>&nbsp;&nbsp;&nbsp;</TD>
612
 
<TD><A HREF="../index.html"><IMG SRC="../images/iconcontarrow.png" ALT="Contents" BORDER=0></A></TD>
613
 
<TD><A HREF="../index.html">Table of Contents</A></TD>
614
 
<TD>&nbsp;&nbsp;&nbsp;</TD>
615
 
<TD><A HREF="chap11-04.html#chap11-04">Next</A></TD>
616
 
<TD><A HREF="chap11-04.html#chap11-04"><IMG SRC="../images/iconforearrow.png" ALT="Next" BORDER=0></A></TD>
617
 
</TR></TABLE></CENTER>
618
 
</BODY>
619
 
</HTML>