c - Order of using free registers in the stack -
assuming program calls function:
void f(int arr[], int size) { int i, j, k; // other code }
in order compiler (gcc) using caller save registers: %eax, %ecx, %edx ?
will use 1 of calle save registers: %ebx, %esi, %edi in case?
Comments
Post a Comment