Skip to content

Commit 5bcf24e

Browse files
committed
64-bit rtl fix
1 parent 78b6e06 commit 5bcf24e

File tree

7 files changed

+166
-167
lines changed

7 files changed

+166
-167
lines changed

ci/regression.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,20 @@ isa()
7474

7575
if [ "$XLEN" == "64" ]
7676
then
77-
make -C sim/rtlsim clean && CONFIGS="-DFPU_FPNEW" make -C sim/rtlsim > /dev/null
78-
make -C tests/riscv/isa run-rtlsim-64f
7977

80-
make -C sim/rtlsim clean && CONFIGS="-DEXT_D_ENABLE -DFPU_FPNEW" make -C sim/rtlsim > /dev/null
81-
make -C tests/riscv/isa run-rtlsim-64d || true
78+
make -C sim/rtlsim clean && CONFIGS="-DFPU_FPNEW" make -C sim/rtlsim > /dev/null
79+
make -C tests/riscv/isa run-rtlsim-64d
8280

8381
make -C sim/rtlsim clean && CONFIGS="-DFPU_DPI" make -C sim/rtlsim > /dev/null
82+
make -C tests/riscv/isa run-rtlsim-64d
83+
84+
make -C sim/rtlsim clean && CONFIGS="-DFPU_DPI -DEXT_D_DISABLE" make -C sim/rtlsim > /dev/null
85+
make -C tests/riscv/isa run-rtlsim-64f
86+
87+
make -C sim/rtlsim clean && CONFIGS="-DFPU_FPNEW -DEXT_D_DISABLE" make -C sim/rtlsim > /dev/null
8488
make -C tests/riscv/isa run-rtlsim-64f
8589

86-
make -C sim/rtlsim clean && CONFIGS="-DFPU_DSP" make -C sim/rtlsim > /dev/null
90+
make -C sim/rtlsim clean && CONFIGS="-DFPU_DSP -DEXT_D_DISABLE" make -C sim/rtlsim > /dev/null
8791
make -C tests/riscv/isa run-rtlsim-64fx
8892
fi
8993

ci/trace_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def write_csv(log_filename, csv_filename, log_type):
225225

226226
# write to CSV
227227
with open(csv_filename, 'w', newline='') as csv_file:
228-
fieldnames = ["uuid", "PC", "opcode", "instr", "core_id", "warp_id", "tmask", "operands", "destination"]
228+
fieldnames = ["uuid", "PC", "opcode", "instr", "core_id", "warp_id", "tmask", "destination", "operands"]
229229
writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
230230
writer.writeheader()
231231
for entry in entries:

0 commit comments

Comments
 (0)