added exclude files, patch dir and updated riscv-arch-test vendored repo

This commit is contained in:
Saad Khalid 2023-02-13 17:07:11 +00:00 committed by Greg Chadwick
parent 6543a90a5b
commit 47be427752
4 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,8 @@
# CHANGELOG
## [3.6.2] - 2023-02-08
- Remove RV64IB from ISA list of zext test.
## [3.6.1] - 2023-01-28
- Fix satp restore condition.

View file

@ -86,6 +86,7 @@
#include "encoding.h"
#include "test_macros.h"
#define XLEN __riscv_xlen
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
#define BIT(addr, bit) (((addr)>>(bit))&1)
@ -104,8 +105,6 @@
#define LIMMSZ (WDBITS-IMMSZ)
#define LIMMMSK ( (1 <<LIMMSZ)-1)
#define XLEN __riscv_xlen
#define ALIGNSZ ((XLEN>>5)+2) // log2(XLEN): 2,3,4 for XLEN 32,64,128
#if XLEN>FLEN
#define SIGALIGN REGWIDTH

View file

@ -9,6 +9,6 @@
upstream:
{
url: https://github.com/riscv-non-isa/riscv-arch-test
rev: 89fbfec7f67fedfbbcf6de374e32c902669317e9
rev: a3b7f0c2cf89652b8a0cba3146890c512ff8ba44
}
}

View file

@ -14,5 +14,9 @@
"riscv-test-suite/rv32i_m/D",
"riscv-test-suite/rv32i_m/F",
"riscv-test-suite/rv64i_m",
"riscv-test-suite/rv32i_m/B/src/sext.b-01.S",
"riscv-test-suite/rv32i_m/B/src/sext.h-01.S",
"riscv-test-suite/rv32i_m/B/src/zext.h_32-01.S"
]
patch_dir: "patches/riscv_arch_tests"
}