summaryrefslogtreecommitdiffstats
path: root/results/classifier/zero-shot-user-mode/output/instruction/1370
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-08 13:28:15 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-08 13:28:28 +0200
commit5aa276efcbd67f4300ca1a7f809c6e00aadb03da (patch)
tree9b8f0e074014cda8d42f5a97a95bc25082d8b764 /results/classifier/zero-shot-user-mode/output/instruction/1370
parent1a3c4faf4e0a25ed0b86e8739d5319a634cb9112 (diff)
downloademulator-bug-study-5aa276efcbd67f4300ca1a7f809c6e00aadb03da.tar.gz
emulator-bug-study-5aa276efcbd67f4300ca1a7f809c6e00aadb03da.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot-user-mode/output/instruction/1370')
-rw-r--r--results/classifier/zero-shot-user-mode/output/instruction/137019
1 files changed, 0 insertions, 19 deletions
diff --git a/results/classifier/zero-shot-user-mode/output/instruction/1370 b/results/classifier/zero-shot-user-mode/output/instruction/1370
deleted file mode 100644
index 1a7ba645..00000000
--- a/results/classifier/zero-shot-user-mode/output/instruction/1370
+++ /dev/null
@@ -1,19 +0,0 @@
-instruction: 0.864
-runtime: 0.090
-syscall: 0.046
-
-
-
-x86 BLSI and BLSR semantic bug
-Description of problem:
-The result of instruction BLSI and BLSR is different from the CPU. The value of CF is different.
-Steps to reproduce:
-1. Compile this code
-```
-void main() {
- asm("blsi rax, rbx");
-}
-```
-2. Execute and compare the result with the CPU. The value of `CF` is exactly the opposite. This problem happens with BLSR, too.
-Additional information:
-This bug is discovered by research conducted by KAIST SoftSec.