blob: 14850374b61aa400eda86867c3cf27d0b8d6eb11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to classify this bug report: "tcg mem plugin, udata always zero". Let's see... The user provided possible categories like mistranslation, assembly, device, etc.
First, TCG stands for Translation Code Generator. It's part of QEMU used for translating machine code to an intermediate representation (like qemu-ir). So this seems related to the translation process.
The bug mentions "mem plugin" and that "udata always zero". Maybe it's about memory handling in the TCG. If udata is always zero, perhaps it's a problem with how data is being accessed or stored during translation.
Looking at the categories: mistranslation relates to incorrect mapping from source to target, which could fit here if data isn't being handled correctly. Assembly lowering would be more about converting high-level code to assembly, but this seems different.
Other options like device or network don't seem relevant here since it's about TCG and memory. So mistranslation is likely the correct category because it involves incorrect handling during translation.
</think>
mistranslation
|