blob: e6c89957dc78b68e4983dea650703beaf9d49fbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Okay, so I'm trying to classify this bug report about QEMU. The issue is with the LDC and STC instructions not being implemented. Let me think through how to categorize this.
First, looking at the possible categories: assembly lowering seems related because it's about translating instructions from the source architecture (ARM) to the target or IR. Since LDC and SDC are ARM-specific instructions that aren't working in QEMU, it likely falls under how instructions are being handled during translation.
Other options like device, graphic, network, etc., don't seem relevant here because the problem is instruction-level, not related to hardware devices or I/O. The mention of "undefined" suggests it's an implementation issue within the emulator's translation process.
So yeah, assembly lowering makes sense because it's about how QEMU handles ARM instructions during the lowering phase into its internal representation.
</think>
assembly
|