Explains both UNIX (BSD flavor) & Linux system call conventions for x86-32:
Can any one please tell me or point me to similar doc for x86-64 on both UNIX & Linux?
|
Explains both UNIX (BSD flavor) & Linux system call conventions for x86-32: Can any one please tell me or point me to similar doc for x86-64 on both UNIX & Linux?
| |||||||
feedback
|
|
I verified these using Gnu Assembler (gas) on Linux. User Interfacex86-32 Function Calling convention: In x86-32 parameters were passed on stack. last paramter was pushed first on to the stack until all parameters are done and then x86-64 Function Calling convention: (complicated) I guess because of the reason that we have so many general purpose registers and higher width other registers the function calling mechanism is changed. In this new mechanism. First the parameters are divided into classes. Depending on the class of these parameters parameters are passed. For complete information refer to : "3.2 Function Calling Sequence" of System V Application Binary Interface AMD64 Architecture Processor Supplement Here is a snippet from it:
i.e.. If parameters are more than 6 then 7th parameter onwards is passed on the stack. Kernel Interfacex86-32 Linux System Call convention: In x86-32 parameters for linux system call are passed using registers. I took fllowing snippet from http://www.cin.ufpe.br/~if817/arquivos/asmtut/index.html#syscalls but I'm doubtful about this. If any one can show an example. It would be great.
for example and little more reading, refer to http://www.int80h.org/bsdasm/#alternate-calling-convention x86-32 [Free|Open|Net|DragonFly]BSD UNIX System Call convention: Parameters are passed on the stack. Push the parameters (last parameter pushed first) on to the stack. Then push an additional 32-bit of dummy data (Its not actually dummy data. refer to following link for more info) and then give a system call instruction http://www.int80h.org/bsdasm/#default-calling-convention x86-64 Linux & DragonFly BSD System Call convention: refer to section: "A.2 AMD64 Linux Kernel Conventions" of System V Application Binary Interface AMD64 Architecture Processor Supplement Here is the snippet from this section:
x86-64 [Free|Open|Net]BSD UNIX System Call convention: ??? | ||||
|
feedback
|
|
Perhaps you're looking for the x86_64 ABI? If that's not precisely what you're after, use 'x86_64 abi' in your preferred search engine to find alternative references. | |||||||||
feedback
|
|
It's GAS Linux hello world for x86-64 Platform Build: as -o helloworld.o helloworld.sgcc -o hello helloworld.oRun: ./hello=> Hello world Listing helloworld.s:
| |||
|
feedback
|
|
In addition to the link that Jonathan Leffler provides in his answer, also Agner Fog's Calling Conventions pdf may be useful to you. | |||
|
feedback
|
|
Generally you worry about all these ABI convention only when u are writing in assembly. If not, then the compiler generally will follow the ABI convention and churned out the assembly in the correct order for you. The x86_64 AMD ABI is also followed by Solaris: http://developers.sun.com/solaris/articles/about_amd64_abi.html and so sharing all those GCC utilities between OS will be easy. Many times I always forget all these nitty gritty details. But to confirm these details is easy: Just disassembled the user and the kernel binaries, and u can easily identify the pattern and difference: in (Linux) kernel stack usage is minimally used, and in user application it is consistently used - the ordering of registers is shown easily in the disassembly. Yes, performance is one of the reasons for these ABI. For ARM there is various ABI: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.subset.swdev.abi/index.html For Linux on PowerPC: http://refspecs.freestandards.org/elf/elfspec_ppc.pdf http://www.0x04.net/doc/elf/psABI-ppc64.pdf And for embedded there is the EABI etc..... | |||
|
feedback
|