What is the role of syscall instruction in MIPS?
|
feedback
|
|
The syscall is used to request a service from the kernel. For MIPS, the service number/code must be passed in $v0 and arguments are passed in a few of the other designated registers. For example, to print we might do:
In this case, 1 is the service code for print integer. The second instruction effectively performs a copy from $t0 to $a0 which is the designated register where the argument is held ( in this case, the integer to be printed ). A list of the services and corresponding arguments is given: http://courses.missouristate.edu/KenVollmar/Mars/Help/SyscallHelp.html | |||
|
feedback
|
|
It becomes a lot more obvious when you step outside the context of an emulator like MARS or SPIM where the system calls are somewhat artificial. On a real MIPS machine, you would use it transfer control the kernel to invoke a specific function. For example, this is a basic hello world program in MIPS 32-bit assembly for a linux machine (I'm 95% sure this was on a mipsel install, not that it matters much for this question)
This corresponds very closely to the C code (if you have trouble following the MIPS assembly).
First note that headers are included to give the registers symbolic names (asm/regdef.h) and a header that will pull in symbolic names for the system calls (sys/syscall.h) so we don't have to refer to the syscalls by number. The conventions for making a system call here are pretty much the same as calling a function, load a# register with arguments, then we load which system call we want into $v0 and invoke syscall. SYS_write corresponds to the basic write(2) function for linux/unix (1 being standard out).
So we're telling the kernel to write to the file handle 1 (stdout), the string hello, using length bytes. On linux you can see syscalls(2) for all the different syscalls available but they pretty much correspond the core functions that the kernel provides and that (g)libc either wraps or builds upon for C/C++ programs. Linux (and most unix-likes going back the 4BSD route) have a function syscall(2) which is effectively the same thing. Once you start doing more complex stuff you'll either find yourself wrapping the syscall invoking into handy functions, or better yet just calling the corresponding libc versions (surprisingly easy to do, but another discussion). | |||
|
feedback
|