Claims
- 1. A method of synthesizing a clock tree comprising:
partitioning a circuit design into a set of memory cells and a set of non-memory cells; constructing a first clock tree having a first root vertex with a corresponding initial skew for the set of memory cells; constructing a second clock tree having a second root vertex with a corresponding initial skew for the set of non-memory cells; balancing delay between the first root vertex and the second vertex; and inserting a clock buffer at a midpoint between the first root vertex and the second root vertex.
- 2. The method of claim 1 wherein partitioning a circuit design comprises partitioning the set of memory cells into segments wherein each segment satisfies the following constraints:
(1) the segment includes a number of clocked cells that does not exceed an upper threshold; (2) the segment has a width that does not exceed a selected horizontal threshold; and (3) the segment has a height that does not exceed a selected vertical threshold.
- 3. The method of claim 1 wherein partitioning a circuit design comprises:
(a) receiving as input a rectangle defined by the coordinates (x1, y1, x2, y2) enclosing a circuit design core, or outline; (b) initializing a segment list to null, that is, empty; (c) if the current rectangle contains more clocked cells than the upper threshold, or if x21=x2−x1 is greater than the horizontal threshold, or if y21=y2−y1 is greater than the vertical threshold, then transferring control to step (d); otherwise transferring control to step (f); (d) partitioning the current rectangle into two rectangles having equal area according to the following formulas: x21=x2−x1 y21=y2−y1 x0=(x1+x2)/2 y0=(y1+y2)/2 wherein if x21 is greater than y21, then defining the two rectangles by the coordinates (x1, y1, x0, y2) and (x0, y1, x2, y2) and wherein if x21 is less than or equal to y21, then defining the two rectangles by the coordinates (x1, y1, x2, y0) and (x1, y0, x2, y2); (e) inserting the two rectangles into a recursion list and transferring control to step (g); (f) if all three of the constraints in step (c) are satisfied, then inserting the coordinates of the current rectangle into the segment list for each segment in the partition of the circuit design; (g) selecting the next rectangle in the recursion list as the current rectangle; and (h) deleting the current rectangle from the recursion list and transferring control to step (c) until the recursion list is empty.
- 4. The method of claim 3 wherein partitioning a circuit design comprises:
(a) receiving the values of the coordinates (x1, y1, x2, y2) as input to define a current rectangle; (b) initializing a segment list defining the partitioning of the circuit design to null; (c) calculating values for x21, y21, x0, and y0; (d) counting a number of clocked cells enclosed within the current rectangle; (e) if the current rectangle contains more clocked cells than the upper threshold, or if x21=x2−x1 is greater than the horizontal threshold, or if y21=y2−y1 is greater than the vertical threshold, then transferring control to (f), otherwise transferring control to (i); (f) if x21 is greater than y21, then transferring control to (g), otherwise transferring control to (h); (g) partitioning the circuit design recursively with new coordinate values (x1, y1, x0, y2) and (x0, y1, x2, y2) for the two rectangles partitioned from the current rectangle; (h) partitioning the circuit design recursively with new values (x1, y1, x2, y0) and (x1, y0, x2, y2) for the two rectangles partitioned from the current rectangle; and (i) inserting values of the coordinates (x1, y1, x2, y2) for the current rectangle into the segment list.
- 5. The method of claim 1 wherein constructing a first clock tree comprises:
(a) receiving a list of coordinates for leaves of the first clock tree with initial skews as input; (b) sorting the list of coordinates by initial skew to generate a sorted list of coordinates wherein a first point p1 has a minimum initial skew and a last point pn has a maximum initial skew; (c) selecting a point p2 that is nearest to the first point p1 by Hemming distance; (d) balancing a delay between p1 and p2 to calculate a new point p0 with a corresponding skew; (e) removing entries for p1 and p2 from the sorted list of coordinates and inserting an entry for p0 and the corresponding skew into the sorted list of coordinates; (f) if more than one point remains in the sorted list of coordinates, then transferring control back to (b), otherwise transferring control to (g); and (g) assigning a CLOCK input to an input pin of a clock buffer at p0.
- 6. The method of claim 5 wherein balancing a delay between p1 and p2 comprises:
(a) receiving as input the values of the coordinates (x1, y1) of the first point p1, the value of the corresponding first initial skew delay delay1, the values of the coordinates (x2, y2) of the first point p2, and the value of the corresponding second initial skew delay delay2; (b) calculating the distance between points p1 and p2 according to the formula: distance=abs(x1−x2)+abs(y1−y2); (c) initializing a variable k1 representing a first number of intermediate clock buffers in a first buffer chain between a root of the first clock tree and p1 equal to one and a variable k2 representing a second number of intermediate clock buffers in a second buffer chain between the root of the first clock tree and p2 equal to one; (d) initializing h1 to a trial value; (e) initializing a variable length1 representing a length of the first buffer chain constructed from p1 to distance/2 and a variable length2 representing a length of the second buffer chain constructed from p2 to distance/2. (f) initializing a variable h21 representing a distance between neighboring intermediate buffers for the first buffer chain from p1 according to the formula: h21=(length1−h1)/k1 and a variable h22 representing a distance between neighboring intermediate buffers for the second buffer chain from p2 according to the formula: h22=(length2−h1)/k2; (g) calculating a target delay target1 for the first buffer chain including the first initial skew delay1; (h) adjusting the length of the first buffer chain using the target delay target1 and the first initial skew delay1 to calculate a new value of h21; (i) calculating a target delay target2 for the second buffer chain including the second initial skew delay2; (j) adjusting a length of the second buffer chain using the target delay target2 and the second initial skew delay2 to calculate a new value of h22; (k) constructing a balanced clock tree using a target delay of max(target1, target2); (l) inserting a clock buffer at a midpoint p0 between p1 and p2, and connecting the first and second buffer chains to an output pin of the clock buffer to form a clock net; (m) calculating a load of the clock net for the first and second buffer chains connected to the output pin of the clock buffer; (n) calculating a ramptime for the midpoint p0 using a trial value of input_ramptime; (o) recalculating delays of the first and second buffer chains; and (p) calculating a skew for the midpoint p0.
- 7. The method of claim 5 wherein adjusting a length of a buffer chain comprises:
(a) receiving as input values for length, target, and initial_skew, h1, and a number of intermediate buffers k; (b) initializing a variable h2_lower to zero and the variable h2_upper to 2(length−h1)/k; (c) setting h2 equal to (h2_lower+h2_upper)/2 to generate a trial value of h2 and calculating a delay of the buffer chain using the trial value of h2; (d) if the difference between the calculated delay of the buffer chain and the target delay plus the initial skew is greater than a first limit epsilon1, then transferring control to (e), otherwise transferring control to (l); (e) if the calculated delay of the buffer chain is less than the target delay minus the initial skew, then transferring control to (f), otherwise transferring control to (g); (f) setting h2_lower equal to h2 to increase the value of h2 and transferring control to (h); (g) setting h2 upper equal to h2 to decrease the value of h2 and transferring control to (h); (h) if h2 upper minus h2_lower is less than a second limit epsilon2, then transferring control to step 720, otherwise transferring control back to (c); (i) setting k equal to k−1 to delete an intermediate clock buffer so that h2 may be further increased; (j) if k is greater than zero, then transferring control to (b), otherwise transferring control to (k); (k) setting h2 to zero; and (l) returning h2 as a new distance between neighboring intermediate clock buffers for a balanced clock buffer chain.
- 8. The method of claim 5 wherein adjusting a length of a buffer chain comprises:
(a) receiving as input values for a length of a buffer chain length, a target delay target, and an initial skew initial_skew for a buffer chain; (b initializing a variable k_lower is initialized to zero and k_upper to a trial value; (c) setting a trial value for a number of additional clock buffers k equal to (k_lower+k_upper)/2 and h2 is set equal to (length−1)/k; (d) if k_lower is equal to k_upper−1, then transferring control to (i), otherwise transferring control to (e); (e) calculating a delay for the number of additional clock buffers k and the neighboring distance h2; (f) if the delay plus the initial skew is less than the target delay, then transferring control to (g), otherwise transferring control to (h); (g) setting k_lower equal to k to increase the value of k and transferring control back to (c); (h) setting k_upper equal to k to decrease the value of k and transferring control back to (c); and (i) returning k_upper as the number of additional clock buffers to insert in the clock buffer chain.
- 9. The method of claim 1 wherein constructing a second clock tree comprises:
(a) partitioning the set of memory cells to generate a segment list; (b) selecting a next segment from the segment list; (c) if the segment contains at most a lower threshold number of clocked cells wherein the upper threshold equals a square of the lower threshold, then transferring control to (d), otherwise transferring control to (e); (d) inserting clock buffers for a low density segment in the selected segment and transferring control to (f); (e) inserting clock buffers for a high density segment in the selected segment; (f) if the last segment in the list is selected, then transferring control to (g), otherwise transferring control back to (b); (g) calculating an initial skew for each segment in the segment list; and (h) constructing the second clock tree from the initial skew calculated for each segment.
- 10. The method of claim 9 wherein constructing a second clock tree comprises:
(a) receiving as input a list of coordinates for leaves of the clock tree with initial skews; (b) sorting the list of coordinates by initial skew to generate a sorted list wherein a first point p1 has a minimum initial skew and a last point pn has a maximum initial skew; (c) selecting a point p2 that is nearest to the first point p1 by Hemming distance; (d) balancing delay between p1 and p2 to calculate a new point p0 with a corresponding skew; (e) removing entries for p1 and p2 from the sorted list and inserting p0 and the corresponding skew into the sorted list; (f) if more than one point remains in the sorted list, then transferring control back to (b), otherwise transferring control to (g); and (g) assigning a CLOCK input to an input pin of a clock buffer at p0.
- 11. The method of claim 9 wherein inserting clock buffers for a low density segment comprises:
(a) if the segment contains no more than the number of clocked cells defined by the upper threshold, then transferring control to (b), otherwise transferring control to (g); (b) inserting a clock buffer in the center of the segment; (c) connecting an output port of the clock buffer to clock inputs of clocked cells in the segment; (d) calculating a delay between an input pin and an output pin of the clock buffer as a function of an input ramptime and a load represented by a clock net connected to the clock inputs of the clocked cells in the segment. (e) estimating a trial value for the input ramptime to calculate a delay and ramptime; (f) recalculating the delay and ramptime for an arc between an input pin and an output pin of the clock buffer; and (g) terminating insertion of clock buffers for a low density segment.
- 12. The method of claim 9 wherein inserting clock buffers for a high density segment comprises:
(a) if the segment contains more than a number of clocked cells defined by the upper threshold, then transferring control to (b), otherwise, control is transferred to (p); (b) calculating a square root of a number of clocked cells cell_numb contained in the segment, rounding to a first nearest integer, and denoting the nearest integer by sqr_cell_numb; (c) calculating a square root of sqr_cell_numb, rounding to a second nearest integer, and denoting the second nearest integer by numb4; (d) generating a series containing sqr_cell_numb terms n1, n2, . . . and rounding each of the terms to a corresponding nearest integer to denote a number of clocked cells in a corresponding sub-segment; (e) generating a series r1, r2, . . . containing numb4 terms and rounding each of the terms to a corresponding nearest integer to denotes a number of rows, or sub-segments, in each column of the segment; (f) ordering the clocked cells contained in the segment by first coordinate sorting; (g) partitioning the segment into numb4 columns; (h) calculating a number of clocked cells in each column cells4 column[i], wherein i=1, 2, . . . numb4; (i) assigning a number of clocked cells in the ordered list sorted by first coordinate corresponding to the number of clocked cells in each column to a corresponding i-th column; (j) re-ordering the clocked cells in each column by second coordinate sorting; (k) inserting a clock buffer for a low density segment in each sub-segment; (l) inserting a clock buffer in the center of the segment and connecting an output of the clock buffer to an input pin of each clock buffer in each sub-segment; (m) calculating the load, ramptime, and delay of an output pin of the clock buffer inserted the center of the segment as a segment delay; (n) recalculating delays for the sub-segments using the calculated ramptime; (o) adding an average value of the delays for the sub-segments is added to the segment delay; and (p) terminating insertion of clock buffers for a high density segment.
- 13. A computer program product for synthesizing a clock tree comprising:
a medium for embodying a computer program for input to a computer; and a computer program embodied in the medium for causing the computer to perform the following functions:
partitioning a circuit design into a set of memory cells and a set of non-memory cells; constructing a first clock tree having a first root vertex with a corresponding initial skew for the set of memory cells; constructing a second clock tree having a second root vertex with a corresponding initial skew for the set of non-memory cells; balancing delay between the first root vertex and the second vertex; and inserting a clock buffer at a midpoint between the first root vertex and the second root vertex.
- 14. The computer program product of claim 13 wherein partitioning a circuit design comprises partitioning the set of memory cells into segments wherein each segment satisfies the following constraints:
(1) the segment includes a number of clocked cells that does not exceed an upper threshold; (2) the segment has a width that does not exceed a selected horizontal threshold; and (3) the segment has a height that does not exceed a selected vertical threshold.
- 15. The computer program product of claim 13 wherein partitioning a circuit design comprises:
(a) receiving as input a rectangle defined by the coordinates (x1, y1, x2, y2) enclosing a circuit design core, or outline; (b) initializing a segment list to null, that is, empty; (c) if the current rectangle contains more clocked cells than the upper threshold, or if x21=x2−x1 is greater than the horizontal threshold, or if y21=y2−y1 is greater than the vertical threshold, then transferring control to step (d); otherwise transferring control to step (f); (d) partitioning the current rectangle into two rectangles having equal area according to the following formulas: x21=x2−x1 y21=y2−y1 x0=(x1+x2)/2 y0=(y1+y2)/2 wherein if x21 is greater than y21, then defining the two rectangles by the coordinates (x1, y1, x0, y2) and (x0, y1, x2, y2) and wherein if x21 is less than or equal to y21, then defining the two rectangles by the coordinates (x1, y1, x2, y0) and (x1, y0, x2, y2); (e) inserting the two rectangles into a recursion list and transferring control to step (g); (f) if all three of the constraints in step (c) are satisfied, then inserting the coordinates of the current rectangle into the segment list for each segment in the partition of the circuit design; (g) selecting the next rectangle in the recursion list as the current rectangle; and (h) deleting the current rectangle from the recursion list and transferring control to step (c) until the recursion list is empty.
- 16. The computer program product of claim 13 wherein partitioning a circuit design comprises:
(a) receiving the values of the coordinates (x1, y1, x2, y2) as input to define a current rectangle; (b) initializing a segment list defining the partitioning of the circuit design to null; (c) calculating values for x21, y21, x0, and y0; (d) counting a number of clocked cells enclosed within the current rectangle; (e) if the current rectangle contains more clocked cells than the upper threshold, or if x21=x2−x1 is greater than the horizontal threshold, or if y21=y2−y1 is greater than the vertical threshold, then transferring control to (f), otherwise transferring control to (i); (f) if x21 is greater than y21, then transferring control to (g), otherwise transferring control to (h); (g) partitioning the circuit design recursively with new coordinate values (x1, y1, x0, y2) and (x0, y1, x2, y2) for the two rectangles partitioned from the current rectangle; (h) partitioning the circuit design recursively with new values (x1, y1, x2, y0) and (x1, y0, x2, y2) for the two rectangles partitioned from the current rectangle; and (i) inserting values of the coordinates (x1, y1, x2, y2) for the current rectangle into the segment list.
- 17. The computer program product of claim 13 wherein constructing a first clock tree comprises:
(a) receiving a list of coordinates for leaves of the first clock tree with initial skews as input; (b) sorting the list of coordinates by initial skew to generate a sorted list of coordinates wherein a first point p1 has a minimum initial skew and a last point pn has a maximum initial skew; (c) selecting a point p2 that is nearest to the first point p1 by Hemming distance; (d) balancing a delay between p1 and p2 to calculate a new point p0 with a corresponding skew; (e) removing entries for p1 and p2 from the sorted list of coordinates and inserting an entry for p0 and the corresponding skew into the sorted list of coordinates; (f) if more than one point remains in the sorted list of coordinates, then transferring control back to (b), otherwise transferring control to (g); and (g) assigning a CLOCK input to an input pin of a clock buffer at p0.
- 18. The computer program product of claim 17 wherein balancing a delay between p1 and p2 comprises:
(a) receiving as input the values of the coordinates (x1, y1) of the first point p1, the value of the corresponding first initial skew delay delay1, the values of the coordinates (x2, y2) of the first point p2, and the value of the corresponding second initial skew delay delay2; (b) calculating the distance between points p1 and p2 according to the formula: distance=abs(x1−x2)+abs(y1−y2); (c) initializing a variable k1 representing a first number of intermediate clock buffers in a first buffer chain between a root of the first clock tree and p1 equal to one and a variable k2 representing a second number of intermediate clock buffers in a second buffer chain between the root of the first clock tree and p2 equal to one; (d) initializing h1 to a trial value; (e) initializing a variable length1 representing a length of the first buffer chain constructed from p1 to distance/2 and a variable length2 representing a length of the second buffer chain constructed from p2 to distance/2. (f) initializing a variable h21 representing a distance between neighboring intermediate buffers for the first buffer chain from p1 according to the formula: h21=(length1−h1)/k1 and a variable h22 representing a distance between neighboring intermediate buffers for the second buffer chain from p2 according to the formula: h22=(length2−h1)/k2; (g) calculating a target delay target1 for the first buffer chain including the first initial skew delay1; (h) adjusting the length of the first buffer chain using the target delay target1 and the first initial skew delay1 to calculate a new value of h21; (i) calculating a target delay target2 for the second buffer chain including the second initial skew delay2; (j) adjusting a length of the second buffer chain using the target delay target2 and the second initial skew delay2 to calculate a new value of h22; (k) constructing a balanced clock tree using a target delay of max(target1, target2); (l) inserting a clock buffer at a midpoint p0 between p1 and p2, and connecting the first and second buffer chains to an output pin of the clock buffer to form a clock net; (m) calculating a load of the clock net for the first and second buffer chains connected to the output pin of the clock buffer; (n) calculating a ramptime for the midpoint p0 using a trial value of input_ramptime; (o) recalculating delays of the first and second buffer chains; and (p) calculating a skew for the midpoint p0.
- 19. The computer program product of claim 17 wherein adjusting a length of a buffer chain comprises:
(a) receiving as input values for length, target, and initial_skew, h1, and a number of intermediate buffers k; (b) initializing a variable h2_lower to zero and the variable h2_upper to 2(length−h1)/k; (c) setting h2 equal to (h2_lower+h2_upper)/2 to generate a trial value of h2 and calculating a delay of the buffer chain using the trial value of h2; (d) if the difference between the calculated delay of the buffer chain and the target delay plus the initial skew is greater than a first limit epsilon1, then transferring control to (e), otherwise transferring control to (l); (e) if the calculated delay of the buffer chain is less than the target delay minus the initial skew, then transferring control to (f), otherwise transferring control to (g); (f) setting h2_lower equal to h2 to increase the value of h2 and transferring control to (h); (g) setting h2_upper equal to h2 to decrease the value of h2 and transferring control to (h); (h) if h2 upper minus h2_lower is less than a second limit epsilon2, then transferring control to step 720, otherwise transferring control back to (c); (i) setting k equal to k-1 to delete an intermediate clock buffer so that h2 may be further increased; (j) if k is greater than zero, then transferring control to (b), otherwise transferring control to (k); (k) setting h2 to zero; and (l) returning h2 as a new distance between neighboring intermediate clock buffers for a balanced clock buffer chain.
- 20. The computer program product of claim 17 wherein adjusting a length of a buffer chain comprises:
(a) receiving as input values for a length of a buffer chain length, a target delay target, and an initial skew initial_skew for a buffer chain; (b initializing a variable k_lower is initialized to zero and k_upper to a trial value; (c) setting a trial value for a number of additional clock buffers k equal to (k_lower+k_upper)/2 and h2 is set equal to (length−1)/k; (d) if k_lower is equal to k_upper−1, then transferring control to (i), otherwise transferring control to (e); (e) calculating a delay for the number of additional clock buffers k and the neighboring distance h2; (f) if the delay plus the initial skew is less than the target delay, then transferring control to (g), otherwise transferring control to (h); (g) setting k_lower equal to k to increase the value of k and transferring control back to (c); (h) setting k_upper equal to k to decrease the value of k and transferring control back to (c); and (i) returning k_upper as the number of additional clock buffers to insert in the clock buffer chain.
- 21. The computer program product of claim 13 wherein constructing a second clock tree comprises:
(a) partitioning the set of memory cells to generate a segment list; (b) selecting a next segment from the segment list; (c) if the segment contains at most a lower threshold number of clocked cells wherein the upper threshold equals a square of the lower threshold, then transferring control to (d), otherwise transferring control to (e); (d) inserting clock buffers for a low density segment in the selected segment and transferring control to (f); (e) inserting clock buffers for a high density segment in the selected segment; (f) if the last segment in the list is selected, then transferring control to (g), otherwise transferring control back to (b); (g) calculating an initial skew for each segment in the segment list; and (h) constructing the second clock tree from the initial skew calculated for each segment.
- 22. The computer program product of claim 21 wherein constructing a second clock tree comprises:
(a) receiving as input a list of coordinates for leaves of the clock tree with initial skews; (b) sorting the list of coordinates by initial skew to generate a sorted list wherein a first point p1 has a minimum initial skew and a last point pn has a maximum initial skew; (c) selecting a point p2 that is nearest to the first point p1 by Hemming distance; (d) balancing delay between p1 and p2 to calculate a new point p0 with a corresponding skew; (e) removing entries for p1 and p2 from the sorted list and inserting p0 and the corresponding skew into the sorted list; (f) if more than one point remains in the sorted list, then transferring control back to (b), otherwise transferring control to (g); and (g) assigning a CLOCK input to an input pin of a clock buffer at p0.
- 23. The computer program product of claim 21 wherein inserting clock buffers for a low density segment comprises:
(a) if the segment contains no more than the number of clocked cells defined by the upper threshold, then transferring control to (b), otherwise transferring control to (g); (b) inserting a clock buffer in the center of the segment; (c) connecting an output port of the clock buffer to clock inputs of clocked cells in the segment; (d) calculating a delay between an input pin and an output pin of the clock buffer as a function of an input ramptime and a load represented by a clock net connected to the clock inputs of the clocked cells in the segment. (e) estimating a trial value for the input ramptime to calculate a delay and ramptime; (f) recalculating the delay and ramptime for an arc between an input pin and an output pin of the clock buffer; and (g) terminating insertion of clock buffers for a low density segment.
- 24. The computer program product of claim 21 wherein inserting clock buffers for a high density segment comprises:
(a) if the segment contains more than a number of clocked cells defined by the upper threshold, then transferring control to (b), otherwise, control is transferred to (p); (b) calculating a square root of a number of clocked cells cell_numb contained in the segment, rounding to a first nearest integer, and denoting the nearest integer by sqr_cell_numb; (c) calculating a square root of sqr_cell_numb, rounding to a second nearest integer, and denoting the second nearest integer by numb4; (d) generating a series containing sqr_cell_numb terms n1, n2, . . . and rounding each of the terms to a corresponding nearest integer to denote a number of clocked cells in a corresponding sub-segment; (e) generating a series r1, r2, . . . containing numb4 terms and rounding each of the terms to a corresponding nearest integer to denotes a number of rows, or sub-segments, in each column of the segment; (f) ordering the clocked cells contained in the segment by first coordinate sorting; (g) partitioning the segment into numb4 columns; (h) calculating a number of clocked cells in each column cells4 column[i], wherein i=1, 2, . . . numb4; (i) assigning a number of clocked cells in the ordered list sorted by first coordinate corresponding to the number of clocked cells in each column to a corresponding i-th column; (j) re-ordering the clocked cells in each column by second coordinate sorting; (k) inserting a clock buffer for a low density segment in each sub-segment; (l) inserting a clock buffer in the center of the segment and connecting an output of the clock buffer to an input pin of each clock buffer in each sub-segment; (m) calculating the load, ramptime, and delay of an output pin of the clock buffer inserted the center of the segment as a segment delay; (n) recalculating delays for the sub-segments using the calculated ramptime; (o) adding an average value of the delays for the sub-segments is added to the segment delay; and (p) terminating insertion of clock buffers for a high density segment.
CROSS REFERENCE TO RELATED APPLICATIONS
[0001] This patent application is related to U.S. patent application Ser. No. 09/885,589, for METHOD OF INTEGRATING CLOCK TREE SYNTHESIS AND TIMING OPTIMIZATION FOR AN INTEGRATED CIRCUIT DESIGN, filed Jun. 19, 2001, by Pavisic et al., incorporated herein by reference and assigned to the same assignee as the present invention. This application is related to U.S. patent application Ser. No. 09/822,969, for “EDITING PROTOCOL FOR FLEXIBLE SEARCH ENGINES”, filed on Mar. 30, 2001, by Andreev, et al., incorporated herein by reference and assigned to the same assignee as the present invention; U.S. patent application Ser. No. 09/679,209 by Andreev, et. al for “FAST FLEXIBLE SEARCH ENGINE FOR LONGEST PREFIX MATCH” filed on Oct. 4, 2000, incorporated herein by reference and assigned to the same assignee as the present invention; and U.S. patent application Ser. No. 09/679,313 by Andreev, et al. for “FLEXIBLE SEARCH ENGINE HAVING SORTED BINARY SEARCH TREE FOR PERFECT MATCH”, filed on Oct. 4, 2000, incorporated herein by reference and assigned to the same assignee as the present invention.