>>107842351
>>107842381
if i can make some gentle suggestions, though:
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/mman.h>
#include <unistd.h>
/** x86_64 machine code for `int times2(int x)` */
static const uint8_t times2_impl[] = {
// lea eax, [rdi+rdi*1]
0x8d, 0x04, 0x3f,
// ret
0xc3,
Comment too long. Click here to view the full text.