-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SystemVerilog: concurrent assertion items go into module namespace
Concurrent assertion items (assert/assume/cover) that are module items with a block label go into the module name space, not into a separate "property" name space. Assertion items without block item now get a label based on the kind of the assertion item (assert/assume/cover).
- Loading branch information
Showing
62 changed files
with
119 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CORE | ||
simple_counterexamples_to_Fp.sv | ||
--bound 10 --property top.property.p0 | ||
--bound 10 --property top.p0 | ||
^Adding lasso constraints$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^\[top\.property\.p0\] .* REFUTED$ | ||
^\[top\.p0\] .* REFUTED$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CORE | ||
simple_counterexamples_to_Fp.sv | ||
--bound 10 --property top.property.p1 | ||
--bound 10 --property top.p1 | ||
^Adding lasso constraints$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^\[top\.property\.p1\] .* REFUTED$ | ||
^\[top\.p1\] .* REFUTED$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CORE | ||
simple_counterexamples_to_Fp.sv | ||
--bound 10 --property top.property.p2 | ||
--bound 10 --property top.p2 | ||
^Adding lasso constraints$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^\[top\.property\.p2\] .* REFUTED$ | ||
^\[top\.p2\] .* REFUTED$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CORE | ||
example3.sv | ||
--bound 10 | ||
^\[counter\.property\.1\] .* PROVED up to bound 10$ | ||
^\[counter\.property\.2\] .* REFUTED$ | ||
^\[counter\.assert\.1\] .* PROVED up to bound 10$ | ||
^\[counter\.assert\.2\] .* REFUTED$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CORE | ||
example4.sv | ||
--bound 10 --reset "reset==1" | ||
^\[counter\.property\.1\] .* PROVED up to bound 10$ | ||
^\[counter\.property\.2\] .* PROVED up to bound 10$ | ||
^\[counter\.assert\.1\] .* PROVED up to bound 10$ | ||
^\[counter\.assert\.2\] .* PROVED up to bound 10$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
not_supported1.sv | ||
--ic3 | ||
^\[main\.property\.p0\] always s_eventually main\.my_bit: FAILURE: property not supported by IC3 engine$ | ||
^\[main\.p0\] always s_eventually main\.my_bit: FAILURE: property not supported by IC3 engine$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
counter1.sv | ||
--traces 2 --neural-liveness --neural-engine "echo Candidate: counter\\\\n" | ||
^\[main\.property\.p0\] always s_eventually main.counter == 0: PROVED$ | ||
^\[main\.p0\] always s_eventually main.counter == 0: PROVED$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
clock24h.sv | ||
--property main.property.p_day --ranking-function "{23-hours,59-minutes,59-seconds}" | ||
^\[main\.property\.p_day\] .*: PROVED$ | ||
--property main.p_day --ranking-function "{23-hours,59-minutes,59-seconds}" | ||
^\[main\.p_day\] .*: PROVED$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
clock24h.sv | ||
--property main.property.p_hour --ranking-function "{59-minutes,59-seconds}" | ||
^\[main\.property\.p_hour\] .*: PROVED$ | ||
--property main.p_hour --ranking-function "{59-minutes,59-seconds}" | ||
^\[main\.p_hour\] .*: PROVED$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
clock24h.sv | ||
--property main.property.p_minute --ranking-function "59-seconds" | ||
^\[main\.property\.p_minute\] .*: PROVED$ | ||
--property main.p_minute --ranking-function "59-seconds" | ||
^\[main\.p_minute\] .*: PROVED$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
counter1.sv | ||
--ranking-function "(-counter)" | ||
^\[main\.property\.p0\] always s_eventually main.counter == 0: INCONCLUSIVE$ | ||
^\[main\.p0\] always s_eventually main.counter == 0: INCONCLUSIVE$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
counter1.sv | ||
--ranking-function counter | ||
^\[main\.property\.p0\] always s_eventually main.counter == 0: PROVED$ | ||
^\[main\.p0\] always s_eventually main.counter == 0: PROVED$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
counter2.sv | ||
--ranking-function 10-counter | ||
^\[main\.property\.p0\] always s_eventually main.counter == 10: PROVED$ | ||
^\[main\.p0\] always s_eventually main.counter == 10: PROVED$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
regression/ebmc/ranking-function/counter_with_reset1.fail.desc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CORE | ||
counter_with_reset1.sv | ||
--property main.property.p0 --ranking-function 10-counter | ||
^\[main\.property\.p0\] always s_eventually main.counter == 10: INCONCLUSIVE$ | ||
--property main.p0 --ranking-function 10-counter | ||
^\[main\.p0\] always s_eventually main.counter == 10: INCONCLUSIVE$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
-- |
Oops, something went wrong.