vote up 8 vote down star
4

If I have a program in C++/C (language doesn't matter much, just needed to illustrate a concept):

#include <iostream>    

void foo() {
    printf("in foo");
}

int main() {
    foo();
    return 0;
}

What happens in the assembly? I'm not actually looking for assembly code as I haven't learned it yet, but what's the basic principle of calling a function in assembly (preferably in pseudo-code)? I understand that the specifics vary in different languages, but is there a common idea?

flag

1  
Note that you don't call "methods" in c, just "functions". That is why is makes no sense to act as if c and c++ are the same language. – dmckee Oct 18 at 23:12
'language doesn't matter much': the concepts are pretty similar for compiled languages. Interpreted languages (like php, javascript) can be quite different. I believe you're looking for the behavior of compiled languages? – Adriaan Oct 19 at 7:39

11 Answers

vote up 19 vote down check

In general, this is what happens:

  1. Arguments to the function are stored on the stack. In platform specific order.
  2. Location for return value is "allocated" on the stack
  3. The return value for the function is also stored in the stack or in a special purpose CPU register.
  4. The function (or actually, the address of the function) is called, either through a CPU specific call instruction or through a normal jmp or br instruction (jump/branch)
  5. The function reads the arguments (if any) from the stack and the runs the function code
  6. Return value from function is stored in the specified location (stack or special purpose CPU register)
  7. Execution jumps back to the caller and the stack is cleared (by restoring the stack pointer to its initial value).

The details of the above vary from platform to platform and even from compiler to compiler (see e.g. STDCALL vs CDECL calling conventions). For instance, in some cases, CPU registers are used instead of storing stuff on the stack. The general idea is the same though

link|flag
Is the function's stack area really cleared in step 7, or is it just that the stack pointer in restored to its previous state? It seems like zeroing out the function's leftover stack memory every time would be rather inefficient... – Jeremy Friesner Oct 20 at 4:42
No, typically the stack pointer (which is usually just a CPU register) is simply restored to its initial value (so this is a single CPU instruction). I've updated my answer to clarify this – Isak Savo Oct 20 at 14:26
remembering: at x64 platform have single calling convention only. – lsalamon Oct 20 at 20:33
Nope, x64 calling convention is different between most OSes (which use convention specified by AMD), and Windows (which uses its own different one). – Pavel Minaev Oct 20 at 23:14
vote up 0 vote down

What happens?

C mimics what will occur in assembly...

It is so close to machine that you can realize what will occur

void foo() {
    printf("in foo");

/*

db mystring 'in foo'
mov eax, dword ptr mystring
mov edx , dword ptr _printf
push eax
call edx
add esp, 8
ret
//thats it
*/

}

int main() {
    foo();
    return 0;
}
link|flag
Aside: please stop your other spam / troll posts... they will just be deleted. – Marc Gravell Oct 19 at 23:40
vote up 0 vote down

A very good illustration: http://www.cs.uleth.ca/~holzmann/C/system/memorylayout.pdf

link|flag
vote up 0 vote down

The general idea is that you need to

  1. Save the current local state
  2. Pass the arguments to a function
  3. Call the actual function. This involves putting the return address somewhere so the RET instruction knows where to continue.

The specifics vary from architecture to architecture. And the even more specific specifics might vary between various languages. Although there usually are ways of controlling this to some extent to allow for interoperability between different languages.

A pretty useful starting point is the Wikipedia article on calling conventions. On x86 for example the stack is almost always used for passing arguments to functions. On many RISC architectures, however, registers are mainly used while the stack is only needed in exceptional cases.

link|flag
vote up 5 vote down

You can see it for yourself:

Under Linux 'compile' your program with:

gcc -S myprogram.c

And you'll get a listing of the programm in assembler (myprogram.s).

Of course you should know a little bit about assembler to understand it (but it's worth learning because it helps to understand how your computer works). Calling a function (on x86 architecture) is basically:

  • put variable a on stack
  • put variable b on stack
  • put variable n on stack
  • jump to address of the function
  • load variables from stack
  • do stuff in function
  • clean stack
  • jump back to main

HTH, flokra

link|flag
vote up 0 vote down

What happens? In x86, the first line of your main function might look something like:

call foo

The call instruction will push the return address on the stack and then jmp to the location of foo.

link|flag
vote up 0 vote down

1- a calling context is established on the stack

2- parameters are pushed on the stack

3- a "call" is performed to the method

link|flag
vote up 2 vote down

What happens in the assembly?

A brief explanation: The current stack state is saved, a new stack is created and the code for the function to be executed is loaded and run. This involves inconveniencing a few registers of your microprocessor, some frantic to and fro read/writes to the memory and once done, the calling function's stack state is restored.

link|flag
vote up 0 vote down

The common idea is that the registers that are used in the calling method are pushed on the stack (stack pointer is in ESP register), this process is called "push the registers". Sometimes they're also zeroed, but that depends. Assembly programmers tend to free more registers then the common 4 (EAX, EBX, ECX and EDX on x86) to have more possibilities within the function.

When the function ends, the same happens in the reverse: the stack is restored to the state from before calling. This is called "popping the registers".

Update: this process does not necessarily have to happen. Compilers can optimize it away and inline your functions.

Update: normally parameters of the function are pushed on the stack in reverse order, when they are retrieved from the stack, they appear as if in normal order. This order is not guaranteed by C. (ref: Inner Loops by Rick Booth)

link|flag
vote up 1 vote down

I think you want to take a look at call stack to get a better idea what happens during a function call: http://en.wikipedia.org/wiki/Call%5Fstack

link|flag
vote up 1 vote down

Arguments are pushed in stack and "call" instruction is made

Call is a simple "jmp" with pushing an address of instruction into stack ("ret" in the end of a method popping it and jumping on it)

link|flag
Arguments are not necessarily pushed onto the stack. This depends a lot on architecture, calling convention, compiler, etc... – mrduclaw Oct 18 at 15:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.