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

Popular posts from this blog

java - Null response to php query in android, even though php works properly -

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -