00d655187a
Three small functions extracted from the v1.19 conservative blob with
ground-truth C and per-tool (Ghidra / retdec / decomp.me) docs:
01_memset — byte memset, 28 B
02_memcpy32 — word-aligned memcpy, 36 B
03_magic_memset — magic check + tail-call to memset, 40 B
04_train_phy_block — first real poll-site function (104 B, 26 insts),
contains poll sites 12-15
Results in RESULTS.md:
- Ghidra: A on all four. Auto-decompile is close to final.
- retdec: A on #3, F on #1 and #2 (no register-arg inference on raw),
C on #4 (mistakes & 0xF0000000 for < 0x10000000).
GRIND_LOG.md (in 04_train_phy_block/) records the matching-decomp
iteration: 116-byte candidate.c at -Os vs vendor 104 bytes = 89.7%
size match on first real iteration. Remaining gap is GCC's choice of
`cmp w, w_const; b.ls` over vendor's `tst w, #imm; b.eq` for the
mask tests.
gdb_debug/ holds a native-aarch64 GDB single-stepper for the three
benchmark functions — boltzmann smoke test passed (memset:
buf[10] 0x00→0xab).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
444 B
ArmAsm
17 lines
444 B
ArmAsm
|
|
02_memcpy32/func.bin: file format binary
|
|
|
|
|
|
Disassembly of section .data:
|
|
|
|
0000000000001200 <.data>:
|
|
1200: 927e7442 and x2, x2, #0xfffffffc
|
|
1204: d2800003 mov x3, #0x0 // #0
|
|
1208: eb02007f cmp x3, x2
|
|
120c: 54000041 b.ne 0x1214 // b.any
|
|
1210: d65f03c0 ret
|
|
1214: b8636824 ldr w4, [x1, x3]
|
|
1218: b8236804 str w4, [x0, x3]
|
|
121c: 91001063 add x3, x3, #0x4
|
|
1220: 17fffffa b 0x1208
|