A method for generating a constraint for generating a constraint for use in the verification of an integrated circuit design includes identifying a target in a netlist (n) of the design and creating an overapproximate abstraction (N′) of the netlist. A space state (S′) is created by enumerating the states of N′ from which the identified target may be asserted. A constraint space C′ is then derived from the state space S′, where C′ is the logical complement of S′. The process is repeated for multiple selected targets and the constraint spaces from each iteration are logically ANDed. Creating an overapproximate abstraction may include replacing a sequential gate with a random gate. Identifying a sequential gate may include selecting a target in the netlist, performing underapproximate verification of the target, and, if a spurious failure occurs, selecting a gate further down the fanin chain of the currently selected gate.
|
1. A computer program product, comprising:
a computer readable storage medium; and
computer executable instructions, stored by the computer readable storage medium, for generating a constraint for use in the verification of an integrated circuit design, said computer executable instructions including:
instructions for identifying a target in a netlist representation (n) of the integrated circuit design, wherein n includes sequential gates, random gates, and combinational logic;
instructions for creating an over-approximate abstraction (N′) of the netlist representation (n) by modifying the netlist representation (n) through replacement of a sequential gate in n with a random gate;
instructions for computing a state space S′ of N′, said instructions for computing including instructions for enumerating the states of N′ from which the identified target may be asserted;
instructions for deriving a constraint space C′ from the state space S′, wherein C′ is the complement of S′; and
instructions for synthesizing a constraint from constraint space C′ and applying said constraint to a constraint node appended to said integrated circuit design to limit a set of one or more states for which the target is asserted during verification.
2. The computer program product of
3. The computer program product of
instructions for selecting a target in the netlist representation;
instructions for performing under-approximate verification of the selected target;
instructions for detecting a spurious failure and, responsive thereto, refining a gate of the selected target, and repeating performance of the under-approximate verification of the selected target.
4. The computer program product of
5. The computer program product of
6. The computer program product of
7. The computer program product of
8. The computer program product of
the integrated circuit design with the constraint node appended has a netlist representation (N″); and
the computer executable instructions further include instructions for simplifying N″ to obtain a simplified netlist representation (N′″) by merging two gates in N″ that are redundant in all states that may be reached without violating the constraint applied to the constraint node.
|
The present application is a continuation of U.S. patent application Ser. No. 11/236,451, filed on Sep. 27, 2005, entitled “Using Constraints in Design Verification”, now U.S. Pat. No. 7,421,699. Applicants claim benefit of priority under 35 U.S.C. §120 to U.S. patent application Ser. No. 11/236,451, which is incorporated by reference herein in its entirety and for all purposes.
1. Field of the Present Invention
The present invention is in a field of integrated circuit design and, more particularly, verifying the design of an integrated circuit prior to fabrication.
2. History of the Related Art
In the field of integrated circuit design, formal verification refers to the process of rigorously proving that a design satisfies its specification. Typically, the specification of a verification problem includes a netlist-based representation of the design and a set of expected values for specified nets. As an example, a verification problem may include determining whether a state exists in which a CHECKSTOP signal is asserted, where an asserted CHECKSTOP signal indicates a fault. Using formal verification, one either finds a counterexample trace depicting a sequence of values of the nets over time, similar to a simulation trace, that leads to an assertion of the CHECKSTOP signal or proves that no such trace exists.
Formal verification is often performed using state space search algorithms. Such algorithms include unbounded and bounded exhaustive searches. Bounded exhaustive searches try to find an assertion of CHECKSTOP that can occur within N time steps from an initial state of the design. Unbounded exhaustive algorithms increase N until no states are encountered that have not already been encountered for smaller values of N (a condition termed “fixed-point”). If no path from an initial state to a violating state (a state in which CHECKSTOP is asserted) is encountered before fixed-point is reached, then correctness can be inferred.
The number of verification cycles required to perform an exhaustive state space search increases exponentially with the number of state holding elements or registers. This exponential relationship makes formal verification impractical for designs containing a very large number of state holding elements. As a result, semiformal verification have been employed as a verification technique suitable for large designs. Semiformal verification leverages formal algorithms by applying them to larger designees only in a resource-bounded manner. Semiformal verification, however, achieves only partial verification coverage. It would be desirable to implement a verification technique that facilitated the more complete verification coverage achievable with formal verification methods while addressing the resources limitations encountered when using formal verification.
The stated objective is facilitated by a method for generating a constraint for use in the verification of an integrated circuit design that includes identifying a target in a netlist (N) of the design and creating an overapproximate abstraction (N′) of the netlist. A space state (S′) is created by enumerating the states of N′ from which the identified target may be asserted. A constraint space C′ is then derived from the state space S′, where C′ is the logical complement of S′. The process may be repeated for multiple targets in which case the constraint spaces from each iteration are logically ANDed. Creating an over-approximate abstraction may include replacing a sequential gate with a random gate. Identifying a sequential gate may include selecting a target in the netlist, performing underapproximate verification of the target, and, if a spurious failure occurs, selecting a gate further down the fanin chain of the currently selected gate.
Other objects and advantages of the invention will become apparent upon reading the following detailed description and upon reference to the accompanying drawings, in which:
While the invention is susceptible to various modifications and alternative forms, the drawings show specific embodiments of the invention that this disclosure will describe in detail. It should be understood, however, that the drawings and detailed description presented herein are not intended to limit the invention to the particular embodiment disclosed, but on the contrary, the intention is to cover all modifications, equivalents, and alternatives falling within the spirit and scope of the present invention as defined by the appended claims.
A method for identifying verification constraints for use in design verification is described. Verification constraints are constructs used in design verification applications. A verification constraint is a specially-labeled gate in a netlist or other model of a design. As suggested by its name, a verification constraint represents a limitation on the freedom of the verification toolset to explore the state space of the design. More specifically, a verification constraint prevents the verification application from exploring any “j” time-step trace in which any of one or more constraints evaluate to “0” during any of the “j” time steps. An illustrative example of a constraint follows: “if the design of a particular circuit includes a buffer and the buffer is full, then the inputs of the design are constrained to prevent new transfers of data.”
Verification constraints define a portion of a design's state space that is of no concern for verification purposes and would, therefore, consume scarce verification resources unnecessarily if it were verified. Referring to the buffer-full example from the preceding paragraph, constraining the design's inputs to prohibit data transfers when the buffer is full means that the verification toolset need not and will not cover states that represent the design accepting new data transfers when the buffer is full. Although it may be interesting to observe how the design operates under conditions that are not permitted, it is more efficient for design verification purposes simply to verify that the design does in fact prohibit data transfers when the buffer is full and then to eliminate from consideration all those states within the space defined by the constraint.
In the absence of a verification constraint, a typical verification problem is stated as: “find a ‘j’ step trace exhibiting a violation of a property, or prove that no such trace exists for any ‘j’.” With a verification constraint, the same verification problem becomes: “find a ‘j’ step trace that (1) exhibits a violation of a property and (2) does not exhibit a “0” value for any constraint in any of the ‘j’ steps, or prove that no such trace exists for any ‘j’.” Because verification constraints alter the semantics of a verification problem, they have the potential to cause a property that could be reached to become unreachable. It is important, therefore, to select constraints appropriately. Specifically, constraints must not alter the semantics of the verification problem. A constraint, for example, that would prevent the verification toolset from discovering a valid assertion of a CHECKSTOP is not permitted. The verification constraint implementation described herein is concerned with an efficient and accurate method for deriving constraints that can then be applied to the design.
Because constraints prohibit the exploration of certain otherwise reachable states, redundancy removal algorithms may leverage constrains to enable greater merging. In particular, redundancy removal algorithms may merge gates that are equivalent in “all states reachable along paths that do not violate any constraints” even if they are not equivalent in some states that are reachable only after violating a constraint. This simplification may yield dramatic improvements to the verification process.
The verification system and method operate on a model of an integrated circuit design. The model illustrated in this disclosure is a netlist that includes gates and edges. Edges represent interconnections between gates so that, for example, an edge connects a source gate to a sink gate. In the embodiment of concern in this disclosure, a gate falls into one of four broad functional categories, namely, constant gates, random gates, combinational gates, and sequential gates. A constant gate produces a logical level that does not vary with time. A random gate, also referred to as a primary input, may assume any logical level in any time step independent of all other gates. A combinational gate is a logical element such as an AND gate. A sequential gate is also known to as a register gate or simply a register. A register has two components associated with it, namely, an initial value function, and a next state function. The value of a register for time 0 is the value of the initial value function at time 0 while the value of a register at time “i+1” is equal to the value of its next state function at time “i.”
In some embodiments, the invention is implemented as a data processing system having design verification functionality. Referring to
Processors 102 share access to a high-speed system bus 104. A bus bridge 108 provides an interface between system bus 104 and a shared peripheral bus 110. Bus bridge 108 as depicted in
A disk controller 112 connected to peripheral bus 110 provides an interface to a hard disk 114. Disk 114 may store data and instructions used by processors 102. In the depicted embodiment, the instructions stored on disk 114 include an operating system 130 and a verification application 120 according to the present invention. Operating system 130 may be a commercially distributed operating system such as a Unix-based operating system, a Linux operating system, or a Windows® family operating system from Microsoft Corporation. The depicted embodiment of system 100 may include one or more additional peripheral devices represented by peripheral 116. Peripheral 116 may represent a network communication device (e.g., a network interface card) coupling system 100 to a network, a graphics adapter providing graphic display capabilities to system 100, or a number of other well known peripheral devices.
As suggested in the preceding paragraph, verification application 120 may be implemented as a set or sequence of computer executable instructions, stored on a computer readable medium, for verifying that a design meets its specification. The instructions may be stored on a persistent storage medium such as hard disk 114, a CD ROM (not depicted), floppy diskette (not depicted), magnetic tape (not depicted), and the like. The instructions may also be stored on a volatile storage medium such as system memory 106 or a cache memory (not depicted) of data processing system 100.
Turning now to
A constraint node (D) is declared (206) and initialized. Constraint node D represents a synthesis of the set of states in which none of the verification targets t.sub.1 through t.sub.J are asserted. Conceptually, method 200 determines the constraint space, which is a set of states in which none of the targets is asserted. Method 200 then synthesizes that constraint space into a corresponding constraint node D and appends constraint node D to the design's netlist. In one embodiment, constraints limit the stimulus that can be applied to the design by enforcing adherence to a rule that the constraint node D must evaluate to “1” for every time step. If constraint node D assumes a “0” value during any time step, the corresponding trace is halted.
Method 200 also includes initializing (208) a counter I to 1. Method 200 will execute its core loop once for every target t in the target vector T(J) and I is used to track the iteration count.
After the declaration and initialization is completed, method 200 begins the process of determining appropriate constraints for the design. Method 200 as depicted in
After determining the state space S in block 210, method 200 includes deriving (block 220) a constraint space C that represents the logical complement of S. The resulting constraint node D is then derived or synthesized (block 225) from constraint space C and logically ANDed (block 230) to the existing constraint node. The sequence of blocks 210 through 230 is repeated for each target t in the target vector T(J) so that the resulting constraint node D represents the set of states that may never hit any of the targets. Because method 200 discovers all states of a design that may never hit any of the targets, method 200 may be thought of as a formal constraint generation process.
As a formal constraint generation process, method 200 determines a constraint gate that is maximally constraining without altering the semantics of the verification problem. Unfortunately, while the process of determining the theoretically maximal set of constraints is optimal for purposes of applying constraints to the design, the process of enumerating the exact set of states that may hit t in N is not computationally feasible for designs of any significant complexity. Moreover, computing all possible preimages of a target is effectively equivalent to solving the target and thereby eliminates the need to apply the constraints, since the purpose of the constraints is to simplify the processor of solving the target. In one embodiment, the constraint determination process described herein addresses these practical limitations on formal constraint determination.
Referring now to
In method 300 as depicted in
The inputs to random gate G′ can assume any value on any gate cycle regardless of the other stimulus that are applied to the design. As such, the net effect of introducing cutpoints into a netlist is to over-approximate the behavior of the design, because the random gate G′ can simulate the behavior of the original gate while the converse is not necessarily true. As an overapproximate model of the netlist N, the preimages based on the netlist abstraction N′ may include states that from which the target t could not be asserted in N.
Thus, the set of states S′ associated with the netlist abstraction N′ becomes larger than it would be without the abstraction. Consequently, the inverse of S′, the abstraction constraint space C′, is smaller than it would be without the abstraction. Although the abstraction state space S′ is larger than the corresponding, the preimage computation may be less complex for the abstraction netlist N′ because much of the logic associated with the original netlist N may fall out of the cone of influence of the targets. Because the state space associated with C′ is a subset of the state space associated with C, C′ is still safe in the sense that it does not alter the semantics of the verification problem. C′ will not, however, be as constraining as C, but performing a preimage computation on C′ is easier.
The generation of an abstraction constraint space thus represents a tradeoff between the extent of the constraint and the time and computing power required to identify the constraint. In other words, the abstraction state space represents a trade off between the computational efficiency of the constraint generation and the resulting constraint. Accordingly, method 300 as depicted in
The method of inserting cutpoints to create an abstraction pursuant to block 310 of
If the selected cutpoint does cause spurious failures, the cutpoint is then refined by moving (block 408) the cutpoint further back in the fanin chain of the existing cutpoint gate. Moving the cutpoint up the fanin chain will eventually cause the target under consideration to behave as it behaves in the original verification model. Somewhere between the original cutpoint and a cutpoint that is all the way up the fanin chain, a cutpoint may be found that eliminates the spurious failure while still enabling some simplification of the circuit. It is this gate that may then be used for the cutpoint.
One embodiment of a method 500 for performing the preimage computation of block 314 of
As depicted in
After constructing the BDD for the 0 time step, method 500 initializes a counter (block 506) and begins a looping sequence in which the i-th preimage is determined by substituting (block 508) the next state functions for corresponding registers in the support for the BDD of the previous preimage (i.e., the (i−1) th preimage). The random gates are then existentially quantified out of the preimage in block 510. This sequence of blocks 508 and 510, with the counter being incremented (block 520) in each loop until either there are no new states encountered which were not encountered in previous steps (block 512) or the number of preimages equals the number of possible states (i.e., 2.sup.R where R is the number of state holding elements) according to block 514.
The method of synthesizing the constraint space into a format suitable for inclusion in the netlist is also implementation specific. Referring to
It will be apparent to those skilled in the art having the benefit of this disclosure that the present invention contemplates a mechanism for verifying the design of an integrated circuit. It is understood that the form of the invention shown and described in the detailed description and the drawings are to be taken merely as presently preferred examples. It is intended that the following claims be interpreted broadly to embrace all the variations of the preferred embodiments disclosed.
Mony, Hari, Paruthi, Viresh, Baumgartner, Jason R., Xu, Jiazhao
Patent | Priority | Assignee | Title |
10387605, | Jul 23 2015 | Synopsys, Inc | System and method for managing and composing verification engines |
8495588, | Apr 16 2010 | International Business Machines Corporation | Abstraction-guided synthesis |
8656328, | Mar 08 2013 | Synopsys, Inc | System and method for abstraction of a circuit portion of an integrated circuit |
8990746, | Mar 26 2014 | Cadence Design Systems, Inc.; Cadence Design Systems, INC | Method for mutation coverage during formal verification |
9092569, | Apr 16 2010 | International Business Machines Corporation | Abstraction-guided synthesis |
Patent | Priority | Assignee | Title |
20040123254, | |||
20040230407, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Jun 30 2008 | International Business Machines Corporation | (assignment on the face of the patent) | / | |||
Jun 29 2015 | International Business Machines Corporation | GLOBALFOUNDRIES U S 2 LLC | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 036550 | /0001 | |
Sep 10 2015 | GLOBALFOUNDRIES U S 2 LLC | GLOBALFOUNDRIES Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 036779 | /0001 | |
Sep 10 2015 | GLOBALFOUNDRIES U S INC | GLOBALFOUNDRIES Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 036779 | /0001 | |
Nov 27 2018 | GLOBALFOUNDRIES Inc | WILMINGTON TRUST, NATIONAL ASSOCIATION | SECURITY AGREEMENT | 049490 | /0001 | |
Nov 17 2020 | WILMINGTON TRUST, NATIONAL ASSOCIATION | GLOBALFOUNDRIES U S INC | RELEASE BY SECURED PARTY SEE DOCUMENT FOR DETAILS | 056987 | /0001 | |
Nov 17 2020 | WILMINGTON TRUST, NATIONAL ASSOCIATION | GLOBALFOUNDRIES Inc | RELEASE BY SECURED PARTY SEE DOCUMENT FOR DETAILS | 054636 | /0001 |
Date | Maintenance Fee Events |
Aug 01 2014 | REM: Maintenance Fee Reminder Mailed. |
Dec 08 2014 | M1551: Payment of Maintenance Fee, 4th Year, Large Entity. |
Dec 08 2014 | M1554: Surcharge for Late Payment, Large Entity. |
Aug 06 2018 | REM: Maintenance Fee Reminder Mailed. |
Jan 28 2019 | EXP: Patent Expired for Failure to Pay Maintenance Fees. |
Date | Maintenance Schedule |
Dec 21 2013 | 4 years fee payment window open |
Jun 21 2014 | 6 months grace period start (w surcharge) |
Dec 21 2014 | patent expiry (for year 4) |
Dec 21 2016 | 2 years to revive unintentionally abandoned end. (for year 4) |
Dec 21 2017 | 8 years fee payment window open |
Jun 21 2018 | 6 months grace period start (w surcharge) |
Dec 21 2018 | patent expiry (for year 8) |
Dec 21 2020 | 2 years to revive unintentionally abandoned end. (for year 8) |
Dec 21 2021 | 12 years fee payment window open |
Jun 21 2022 | 6 months grace period start (w surcharge) |
Dec 21 2022 | patent expiry (for year 12) |
Dec 21 2024 | 2 years to revive unintentionally abandoned end. (for year 12) |