summary refs log tree commit diff stats
path: root/results/classifier/118/none/1172
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/118/none/1172')
-rw-r--r--results/classifier/118/none/117289
1 files changed, 89 insertions, 0 deletions
diff --git a/results/classifier/118/none/1172 b/results/classifier/118/none/1172
new file mode 100644
index 00000000..0330ea23
--- /dev/null
+++ b/results/classifier/118/none/1172
@@ -0,0 +1,89 @@
+files: 0.777
+mistranslation: 0.636
+device: 0.579
+socket: 0.569
+PID: 0.497
+semantic: 0.495
+virtual: 0.495
+architecture: 0.471
+peripherals: 0.465
+vnc: 0.441
+graphic: 0.435
+network: 0.417
+assembly: 0.401
+hypervisor: 0.374
+ppc: 0.373
+user-level: 0.368
+arm: 0.360
+performance: 0.351
+register: 0.350
+permissions: 0.334
+x86: 0.332
+debug: 0.303
+risc-v: 0.287
+boot: 0.269
+VMM: 0.261
+i386: 0.246
+TCG: 0.236
+kernel: 0.186
+KVM: 0.138
+
+Make pixman an optional dependency
+Additional information:
+Only these files use pixman functions (excluding tests, of course):
+```
+meson.build
+contrib/vhost-user-gpu/vhost-user-gpu.c
+contrib/vhost-user-gpu/meson.build
+chardev/meson.build
+include/ui/spice-display.h
+include/ui/sdl2.h
+include/ui/gtk.h
+include/ui/qemu-pixman.h
+include/ui/console.h
+include/hw/display/xlnx_dp.h
+include/hw/virtio/virtio-gpu.h
+include/hw/virtio/virtio-gpu-pixman.h
+hw/display/vga.c
+hw/display/ramfb.c
+hw/display/vhost-user-gpu.c
+hw/display/virtio-gpu-gl.c
+hw/display/virtio-gpu-udmabuf.c
+hw/display/xenfb.c
+hw/display/ati_2d.c
+hw/display/meson.build
+hw/display/vmware_vga.c
+hw/display/qxl-render.c
+hw/display/xlnx_dp.c
+hw/display/bochs-display.c
+hw/display/sm501.c
+hw/display/virtio-gpu.c
+hw/vfio/display.c
+hw/s390x/meson.build
+ui/cocoa.m
+ui/console-gl.c
+ui/vnc.c
+ui/qemu-pixman.c
+ui/gtk.c
+ui/console.c
+ui/trace-events
+ui/meson.build
+ui/dbus-listener.c
+ui/vnc-enc-tight.c
+ui/vnc.h
+ui/spice-display.c
+ui/dbus-display1.xml
+ui/sdl2-2d.c
+```
+
+This code in `meson.build` always require **pixman** for building system emulators:
+```meson
+pixman = not_found
+if have_system or have_tools
+  pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8',
+                      method: 'pkg-config', kwargs: static_kwargs)
+endif
+```
+https://gitlab.com/qemu-project/qemu/-/blob/master/meson.build#L520
+
+Most of the code could work without it.