#!/usr/bin/python3 ################################## # testgen.py # # David_Harris@hmc.edu 19 January 2021 # # Generate directed and random test vectors for RISC-V Design Validation. ################################## ################################## # libraries ################################## from datetime import datetime from random import randint from random import seed from random import getrandbits ################################## # functions ################################## def twoscomp(a, xlen): amsb = a >> (xlen-1) alsbs = ((1 << (xlen-1)) - 1) & a if (amsb): asigned = a - (1<> 32) + "\n" r.write(line) testnum = testnum+1 ################################## # main body ################################## # change these to suite your tests tests = ["ADD", "SUB", "SLT", "SLTU", "XOR"] author = "David_Harris@hmc.edu & Katherine Parry" xlens = [32, 64] numrand = 3 # setup seed(0) # make tests reproducible # generate files for each test for xlen in xlens: formatstrlen = str(int(xlen/4)) formatstr = "0x{:0" + formatstrlen + "x}" # format as xlen-bit hexadecimal number formatrefstr = "{:08x}" # format as xlen-bit hexadecimal number with no leading 0x if (xlen == 32): storecmd = "sw" wordsize = 4 else: storecmd = "sd" wordsize = 8 for test in tests: # corners = [0, 1, 2, 0xFF, 0x624B3E976C52DD14 % 2**xlen, 2**(xlen-1)-2, 2**(xlen-1)-1, # 2**(xlen-1), 2**(xlen-1)+1, 0xC365DDEB9173AB42 % 2**xlen, 2**(xlen)-2, 2**(xlen)-1] corners = [0, 1, 2**(xlen)-1] pathname = "../wally-riscv-arch-test/riscv-test-suite/rv" + str(xlen) + "i_m/I/" basename = "WALLY-" + test fname = pathname + "src/" + basename + ".S" refname = pathname + "references/" + basename + ".reference_output" testnum = 0 # print custom header part f = open(fname, "w") r = open(refname, "w") line = "///////////////////////////////////////////\n" f.write(line) lines="// "+fname+ "\n// " + author + "\n" f.write(lines) line ="// Created " + str(datetime.now()) f.write(line) # insert generic header h = open("testgen_header.S", "r") for line in h: f.write(line) # print directed and random test vectors for a in corners: for b in corners: writeVector(a, b, storecmd, xlen) for i in range(0,numrand): a = getrandbits(xlen) b = getrandbits(xlen) writeVector(a, b, storecmd, xlen) # print footer line = "\n.EQU NUMTESTS," + str(testnum) + "\n\n" f.write(line) h = open("testgen_footer.S", "r") for line in h: f.write(line) # Finish # lines = ".fill " + str(testnum) + ", " + str(wordsize) + ", -1\n" # lines = lines + "\nRV_COMPLIANCE_DATA_END\n" f.write(lines) f.close() r.close()