summary refs log tree commit diff stats
path: root/results/classifier/zero-shot-user-mode/instruction/2486
blob: 7dda61177a5f8b524104570cf17439100e112acb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
instruction: 0.463
syscall: 0.304
runtime: 0.232



RISC-V Regression: QEMU_CPU=f=false,zfinx=true gives misleading error message
Description of problem:
The f extension looks like it should be toggle-able using qemu_cpu since it doesn't throw error messages when specified.
Disabling the extension using f=false does not actually disable it as shown by the zfinx error message.
Eg. Unsupported extension is explicitly rejected
```
> QEMU_CPU=rv64,j=false ./qemu-riscv64 test.out
qemu-riscv64: can't apply global rv64-riscv-cpu.j=false: Property 'rv64-riscv-cpu.j' not found
```
Steps to reproduce:
1. Compile any riscv binary like: `int main() {}`
2. Execute using `QEMU_CPU=rv64,zfinx=true,f=false ./qemu-riscv64 test.out`