Files
CS261-Computer-Systems-I/p3-disas/tests/valgrind/C_cmov.txt
2025-10-06 00:14:04 -04:00

26 lines
1.2 KiB
Plaintext

==2060830== Memcheck, a memory error detector
==2060830== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==2060830== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==2060830== Command: ../y86 -d inputs/cmov.o
==2060830==
Disassembly of executable contents:
0x100: | .pos 0x100 code
0x100: | _start:
0x100: 20 01 | rrmovq %rax, %rcx
0x102: 21 23 | cmovle %rdx, %rbx
0x104: 22 45 | cmovl %rsp, %rbp
0x106: 23 67 | cmove %rsi, %rdi
0x108: 24 89 | cmovne %r8, %r9
0x10a: 25 ab | cmovge %r10, %r11
0x10c: 26 ce | cmovg %r12, %r14
==2060830==
==2060830== HEAP SUMMARY:
==2060830== in use at exit: 0 bytes in 0 blocks
==2060830== total heap usage: 3 allocs, 3 frees, 16,856 bytes allocated
==2060830==
==2060830== All heap blocks were freed -- no leaks are possible
==2060830==
==2060830== For lists of detected and suppressed errors, rerun with: -s
==2060830== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)