diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-07-06 16:43:19 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-07-06 16:43:19 +0000 |
| commit | 238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd (patch) | |
| tree | cd8a1b75ba7b3543eb7fe6857f408e7be4d9fd0b /results/classifier/deepseek-r1:32b/reasoning/runtime/2815 | |
| parent | 96049c939b1916d80532630d63c14e04d5244f1d (diff) | |
| download | emulator-bug-study-238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd.tar.gz emulator-bug-study-238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd.zip | |
add results
Diffstat (limited to 'results/classifier/deepseek-r1:32b/reasoning/runtime/2815')
| -rw-r--r-- | results/classifier/deepseek-r1:32b/reasoning/runtime/2815 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/results/classifier/deepseek-r1:32b/reasoning/runtime/2815 b/results/classifier/deepseek-r1:32b/reasoning/runtime/2815 new file mode 100644 index 00000000..5fae26c7 --- /dev/null +++ b/results/classifier/deepseek-r1:32b/reasoning/runtime/2815 @@ -0,0 +1,11 @@ +<think> +Okay, so I need to classify this bug report about QEMU user-mode segfaulting when using clang 17 or newer with -fsanitize=function. The options are instruction, syscall, or runtime. + +Hmm, first, let me think about what each category means. Instruction issues would involve problems with specific CPU instructions causing the error. Syscall errors would relate to system calls not working correctly. Runtime errors are more general and happen during execution without necessarily being tied to a specific instruction or syscall. + +In this case, QEMU is crashing when running under TCG prologue after enabling function sanitization in clang. Function sanitization typically adds checks for undefined behavior, which can cause runtime issues if the code isn't handling it properly. So it's more about the runtime environment and how QEMU handles the instrumented code rather than a specific instruction or syscall. + +So I think this falls under runtime because it's an error happening during execution due to the way the code is compiled with sanitization, not necessarily a faulty instruction or a problem with system calls. +</think> + +runtime \ No newline at end of file |