blob: 947aba48f27ca2c0f5e2333351ba7231f165ca09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
The issue described involves an "Illegal Instruction" crash when running SPEC CPU 2017 benchmarks using qemu-x86_64. The debugging output shows specific instructions being executed before the crash, which suggests that there is a problem with how certain x86-64 instructions are handled by QEMU.
**Step-by-step explanation:**
1. **Understanding the Error:** The error message "Illegal Instruction" indicates that QEMU encountered an instruction it couldn't execute or emulate properly.
2. **Looking at the Instructions:** The provided disassembly includes instructions like `movq`, `jmp`, and others, but there's a `.byte 0x62` which could represent a malformed or unrecognized instruction.
3. **Identifying the Category:** Since the crash is due to an invalid or unhandled instruction, it falls under the "instruction" category.
**Answer:**
instruction
|