I am trying to make a macro that takes in a ptr and mmap's argument's then set it accordingly. This is what I have so far:
#define MY_MMAP(PTR, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) \
({ \
int x = 90; \
asm ( \
"movl %1, %%eax \n" \
"movl %2, %%ebx \n" \
"movl %3, %%ecx \n" \
"movl %4, %%edx \n" \
"movl %5, %%esi \n" \
"movl %6, %%edi \n" \
"movl %7, %%ebp \n" \
"int $0x80 \n" \
"movl %%eax, %0" \
:"=r" (PTR) \
: "eax" (x) ,"ebx" (ARG1), "ecx" (ARG2), "edx" (ARG3), "esi" (ARG4), "edi" (ARG5), "ebp" (ARG6) \
: \
); \
})
However this code does not work, when I use it. Can someone help me out?
char * readBuffer;
MY_MMAP(readBuffer, 0, (sizeOfRead + 1), PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1 ,0);
Here's the assembly code, made by gcc:
movl %eax, %eax
movl $0, %ebx
movl %ecx, %ecx
movl $3, %edx
movl $34, %esi
movl $-1, %edi
movl $0, %ebp
int $0x80
mov %eax, %ebx
mmap- it is a function that takes 6 arguments, why are you writing inline assembler to call it? It's also a quite expensive call, so bypassinc the C library to remove half a dozen instructions isn't exactly going to buy you a whole lot. And at least, try to explain WHAT isn't working. – Mats Petersson Feb 10 at 1:23