summaryrefslogtreecommitdiffstats
path: root/results/classifier/zero-shot/105/device/644
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/zero-shot/105/device/644
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot/105/device/644')
-rw-r--r--results/classifier/zero-shot/105/device/64422
1 files changed, 22 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/105/device/644 b/results/classifier/zero-shot/105/device/644
new file mode 100644
index 00000000..74c30058
--- /dev/null
+++ b/results/classifier/zero-shot/105/device/644
@@ -0,0 +1,22 @@
+device: 0.849
+mistranslation: 0.731
+instruction: 0.708
+graphic: 0.587
+other: 0.557
+boot: 0.341
+vnc: 0.326
+semantic: 0.314
+network: 0.210
+assembly: 0.077
+socket: 0.063
+KVM: 0.004
+
+generic loader does not do virtual to physical address translation when loading MIPS ELF
+Description of problem:
+
+Steps to reproduce:
+1.build two ELFs, whose virtual address is at kseg0<p>
+2.load one ELF with generic loader "-device loader,file=test1.elf", the other ELF with "-kernel test2.elf"<p>
+3.generic loader loads test1.elf without doing address translation, while mipssim load_kernel will do that with cpu_mips_kseg0_to_phys<p>
+Additional information:
+generic_loader_realize calls load_elf_as with the argument translate_fn=NULL. Maybe, we can set translate_fn when elf_machine is EM_MIPS.