summary refs log tree commit diff stats
path: root/results/classifier/118/review/1981
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/118/review/1981')
-rw-r--r--results/classifier/118/review/198170
1 files changed, 70 insertions, 0 deletions
diff --git a/results/classifier/118/review/1981 b/results/classifier/118/review/1981
new file mode 100644
index 000000000..6146ce76c
--- /dev/null
+++ b/results/classifier/118/review/1981
@@ -0,0 +1,70 @@
+mistranslation: 0.886
+device: 0.862
+graphic: 0.856
+register: 0.802
+risc-v: 0.754
+arm: 0.698
+socket: 0.694
+semantic: 0.612
+network: 0.594
+peripherals: 0.546
+ppc: 0.523
+debug: 0.515
+architecture: 0.494
+performance: 0.450
+vnc: 0.329
+kernel: 0.290
+virtual: 0.270
+user-level: 0.225
+PID: 0.200
+permissions: 0.199
+files: 0.188
+assembly: 0.121
+VMM: 0.063
+i386: 0.026
+boot: 0.021
+hypervisor: 0.018
+KVM: 0.011
+TCG: 0.010
+x86: 0.008
+--------------------
+debug: 0.498
+x86: 0.466
+files: 0.416
+register: 0.309
+i386: 0.208
+hypervisor: 0.191
+risc-v: 0.100
+virtual: 0.098
+TCG: 0.080
+peripherals: 0.076
+ppc: 0.067
+arm: 0.065
+device: 0.056
+kernel: 0.033
+VMM: 0.027
+assembly: 0.020
+PID: 0.009
+semantic: 0.009
+boot: 0.008
+user-level: 0.007
+architecture: 0.007
+network: 0.007
+KVM: 0.006
+socket: 0.004
+performance: 0.003
+permissions: 0.003
+graphic: 0.002
+vnc: 0.002
+mistranslation: 0.001
+
+wrong address of pmpaddr13 and pmpaddr14 CSRs
+Description of problem:
+In qemu\disas\riscv.c lines 2119 & 2120 it seems that there is a confusion about the correct address of the pmpaddr13 and pmpaddr14 CSRs 
+```
+line 2117   case 0x03bb: return "pmpaddr11";
+line 2118    case 0x03bc: return "pmpaddr12";
+**line 2119    case 0x03bd: return "pmpaddr14";  <--- pmpaddr13 should be here
+line 2120    case 0x03be: return "pmpaddr13";  <--- pmpaddr14 should be here**
+line 2121    case 0x03bf: return "pmpaddr15";
+```