3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 14:24:08 +00:00
This commit is contained in:
matt venn 2020-04-22 17:54:53 +02:00
commit 94ce8e1288
4 changed files with 56 additions and 7 deletions

View file

@ -2,3 +2,4 @@
/primegen_primegen
/primegen_primes_pass
/primegen_primes_fail
/djb2hash

View file

@ -0,0 +1,14 @@
[options]
mode bmc
expect fail
[engines]
smtbmc yices
[script]
read -noverific
read -sv djb2hash.sv
prep -top djb2hash
[files]
djb2hash.sv

View file

@ -0,0 +1,13 @@
// find a hash collision for DJB2 hash where it visits the same state twice
module djb2hash (input clock);
(* keep *) rand const reg [31:0] magic;
(* keep *) rand reg [7:0] inputval;
(* keep *) reg [31:0] state = 5381;
(* keep *) integer cnt = 0;
always @(posedge clock) begin
state <= ((state << 5) + state) ^ inputval;
if (state == magic) cnt <= cnt + 1;
assert (cnt < 2);
end
endmodule

View file

@ -17,7 +17,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
import argparse, os, sys, shutil, tempfile
import argparse, os, sys, shutil, tempfile, re
##yosys-sys-path##
from sby_core import SbyJob, SbyAbort, process_filename
from time import localtime
@ -149,6 +149,7 @@ def early_log(workdir, msg):
def read_sbyconfig(sbydata, taskname):
cfgdata = list()
tasklist = list()
task_matched = False
pycode = None
tasks_section = False
@ -159,7 +160,7 @@ def read_sbyconfig(sbydata, taskname):
def handle_line(line):
nonlocal pycode, tasks_section, task_tags_active, task_tags_all
nonlocal task_skip_block, task_skiping_blocks
nonlocal task_skip_block, task_skiping_blocks, task_matched
line = line.rstrip("\n")
line = line.rstrip("\r")
@ -230,11 +231,23 @@ def read_sbyconfig(sbydata, taskname):
return
line = line.split()
if len(line) > 0:
tasklist.append(line[0])
for t in line:
if taskname == line[0]:
task_tags_active.add(t)
task_tags_all.add(t)
tname = line[0]
tpattern = False
for c in tname:
if c in "(?*.[]|)":
tpattern = True
if not tpattern:
tasklist.append(tname)
task_tags_all.add(tname)
if taskname is not None and re.fullmatch(tname, taskname):
task_matched = True
task_tags_active.add(tname)
for t in line[1:]:
task_tags_active.add(t)
task_tags_all.add(t)
else:
for t in line[1:]:
task_tags_all.add(t)
elif line == "[tasks]":
if taskname is None:
@ -247,6 +260,10 @@ def read_sbyconfig(sbydata, taskname):
for line in sbydata:
handle_line(line)
if taskname is not None and not task_matched:
print("ERROR: Task name '{}' didn't match any lines in [tasks].".format(taskname), file=sys.stderr)
sys.exit(1)
return cfgdata, tasklist
@ -410,4 +427,8 @@ retcode = 0
for t in tasknames:
retcode |= run_job(t)
if retcode and (len(tasknames) > 1 or tasknames[0] is not None):
tm = localtime()
print("SBY {:2d}:{:02d}:{:02d} One or more tasks produced a non-zero return code.".format(tm.tm_hour, tm.tm_min, tm.tm_sec))
sys.exit(retcode)