summary refs log tree commit diff stats
path: root/results/classifier/118/review/1577841
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/118/review/1577841')
-rw-r--r--results/classifier/118/review/157784177
1 files changed, 77 insertions, 0 deletions
diff --git a/results/classifier/118/review/1577841 b/results/classifier/118/review/1577841
new file mode 100644
index 000000000..f4ca305db
--- /dev/null
+++ b/results/classifier/118/review/1577841
@@ -0,0 +1,77 @@
+mistranslation: 0.980
+device: 0.850
+files: 0.800
+socket: 0.788
+ppc: 0.781
+semantic: 0.752
+network: 0.711
+TCG: 0.674
+vnc: 0.656
+architecture: 0.624
+PID: 0.622
+peripherals: 0.601
+performance: 0.572
+debug: 0.556
+kernel: 0.548
+graphic: 0.523
+VMM: 0.519
+permissions: 0.510
+arm: 0.504
+assembly: 0.493
+register: 0.487
+boot: 0.441
+i386: 0.422
+x86: 0.396
+hypervisor: 0.360
+user-level: 0.357
+risc-v: 0.353
+KVM: 0.288
+virtual: 0.246
+--------------------
+x86: 0.949
+files: 0.380
+debug: 0.230
+TCG: 0.146
+i386: 0.107
+arm: 0.040
+hypervisor: 0.033
+kernel: 0.021
+register: 0.020
+virtual: 0.019
+ppc: 0.015
+VMM: 0.013
+semantic: 0.012
+device: 0.010
+PID: 0.009
+KVM: 0.007
+performance: 0.006
+boot: 0.005
+risc-v: 0.004
+architecture: 0.004
+user-level: 0.004
+network: 0.003
+peripherals: 0.002
+graphic: 0.002
+socket: 0.001
+assembly: 0.001
+vnc: 0.001
+permissions: 0.001
+mistranslation: 0.001
+
+target-mips/helper.c:542: bad sizeof ?
+
+Recent versions of gcc say this:
+
+qemu/target-mips/helper.c:542:9: warning: ‘memset’ used with length equal to number of elements without multiplication by element size [-Wmemset-elt-size]
+
+Source code is
+
+   memset(env->CP0_WatchLo, 0, sizeof(*env->CP0_WatchLo));
+
+Maybe better code
+
+   memset(env->CP0_WatchLo, 0, 8 * sizeof(target_ulong));
+
+Fix has been included here:
+http://git.qemu.org/?p=qemu.git;a=commitdiff;h=9d989c732b153fe15
+