From: Andrew Waterman Date: Sun, 25 Aug 2013 00:34:27 +0000 (-0700) Subject: don't emit vvcfg for now X-Git-Url: https://git.libre-soc.org/?p=riscv-tests.git;a=commitdiff_plain;h=0bdadcbd6590caf3adaaa97d89482813c64b04a9 don't emit vvcfg for now --- diff --git a/env/v/vm.c b/env/v/vm.c index bd9c80e..dd29a40 100644 --- a/env/v/vm.c +++ b/env/v/vm.c @@ -156,14 +156,14 @@ void emulate_vxcptrestore(trapframe_t* tf) { long* where = (long*)tf->gpr[(tf->insn >> 22) & 0x1F]; vxcptkill(); - vcfg(tf->veccfg); + //vcfg(tf->veccfg); do_vxcptrestore(where); } void restore_vector(trapframe_t* tf) { mtpcr(PCR_VECBANK, tf->vecbank); - vcfg(tf->veccfg); + //vcfg(tf->veccfg); if (mfpcr(PCR_IMPL) == IMPL_ROCKET) do_vxcptrestore(tf->evac); diff --git a/isa/Makefile b/isa/Makefile index 18a03a4..e81f696 100644 --- a/isa/Makefile +++ b/isa/Makefile @@ -8,7 +8,7 @@ include $(isa_src_dir)/rv64ui/Makefrag include $(isa_src_dir)/rv64uf/Makefrag #include $(isa_src_dir)/rv64uv/Makefrag include $(isa_src_dir)/rv64si/Makefrag -include $(isa_src_dir)/rv64sv/Makefrag +#include $(isa_src_dir)/rv64sv/Makefrag include $(isa_src_dir)/rv32ui/Makefrag default: all