x86 calling convention: should arguments passed by stack be read-only?

后端 未结 3 779
隐瞒了意图╮
隐瞒了意图╮ 2021-02-07 11:26

It seems state-of-art compilers treat arguments passed by stack as read-only. Note that in the x86 calling convention, the caller pushes arguments onto the stack and the callee

相关标签:
3条回答
  • 2021-02-07 12:03

    Actually, I just compiled this function using GCC:

    int foo(int x)
    {
        goo(&x);
        return x;
    }
    

    And it generated this code:

    _foo:
            pushl       %ebp
            movl        %esp, %ebp
            subl        $24, %esp
            leal        8(%ebp), %eax
            movl        %eax, (%esp)
            call        _goo
            movl        8(%ebp), %eax
            leave
            ret
    

    This is using GCC 4.9.2 (on 32-bit cygwin if it matters), no optimizations. So in fact, GCC did exactly what you thought it should do and used the argument directly from where the caller pushed it on the stack.

    0 讨论(0)
  • 2021-02-07 12:03

    The rules for C are that parameters must be passed by value. A compiler converts from one language (with one set of rules) to a different language (potentially with a completely different set of rules). The only limitation is that the behaviour remains the same. The rules of the C language do not apply to the target language (e.g. assembly).

    What this means is that if a compiler feels like generating assembly language where parameters are passed by reference and are not passed by value; then this is perfectly legal (as long as the behaviour remains the same).

    The real limitation has nothing to do with C at all. The real limitation is linking. So that different object files can be linked together, standards are needed to ensure that whatever the caller in one object file expects matches whatever the callee in another object file provides. This is what's known as the ABI. In some cases (e.g. 64-bit 80x86) there are multiple different ABIs for the exact same architecture.

    You can even invent your own ABI that's radically different (and implement your own tools that support your own radically different ABI) and that's perfectly legal as far as the C standards go; even if your ABI requires "pass by reference" for everything (as long as the behaviour remains the same).

    0 讨论(0)
  • 2021-02-07 12:18

    The C programming language mandates that arguments are passed by value. So any modification of an argument (like an x++; as the first statement of your foo) is local to the function and does not propagate to the caller.

    Hence, a general calling convention should require copying of arguments at every call site. Calling conventions should be general enough for unknown calls, e.g. thru a function pointer!

    Of course, if you pass an address to some memory zone, the called function is free to dereference that pointer, e.g. as in

    int goo(int *x) {
        static int count;
        *x = count++;
        return count % 3;
    }
    

    BTW, you might use link-time optimizations (by compiling and linking with clang -flto -O2 or gcc -flto -O2) to perhaps enable the compiler to improve or inline some calls between translation units.

    Notice that both Clang/LLVM and GCC are free software compilers. Feel free to propose an improvement patch to them if you want to (but since both are very complex pieces of software, you'll need to work some months to make that patch).

    NB. When looking into produced assembly code, pass -fverbose-asm to your compiler!

    0 讨论(0)
提交回复
热议问题