2013-01-12 13:48:27 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2014-02-18 10:51:48 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2013, 2014.
|
2013-01-12 13:48:27 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2013-01-12 13:48:27 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
2013-01-12 13:48:27 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
2013-01-12 13:48:27 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2013-01-12 13:48:27 -05:00
|
|
|
|
2013-12-28 15:00:15 -05:00
|
|
|
x86/syscall.S
|
2013-07-10 09:26:01 -04:00
|
|
|
Function for performing system calls.
|
2013-01-12 13:48:27 -05:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
# i386 system call conventions:
|
|
|
|
# interrupt 128
|
|
|
|
# system call number: %eax
|
|
|
|
# parameters: %ebx, %ecx, %edx, %edi, %esi
|
|
|
|
# return value: %eax, %edx
|
|
|
|
# return errno: %ecx
|
|
|
|
# clobbered: %ebx, %edi, %esi
|
|
|
|
# preserved: %ebp, %esp
|
|
|
|
|
|
|
|
.section .text
|
|
|
|
.global asm_syscall
|
|
|
|
asm_syscall: /* syscall num in %eax. */
|
|
|
|
push %ebp
|
|
|
|
mov %esp, %ebp
|
|
|
|
push %ebx
|
|
|
|
push %edi
|
|
|
|
push %esi
|
|
|
|
# 0 (%ebp) # saved_ebp
|
|
|
|
# 4 (%ebp) # return_eip
|
|
|
|
mov 8 (%ebp), %ebx # param_word1
|
|
|
|
mov 12(%ebp), %ecx # param_word2
|
|
|
|
mov 16(%ebp), %edx # param_word3
|
|
|
|
mov 20(%ebp), %edi # param_word4
|
|
|
|
mov 24(%ebp), %esi # param_word5
|
|
|
|
int $0x80
|
|
|
|
test %ecx, %ecx # ret_errno & ret_errno
|
|
|
|
jz 1f # if ( !(ret_errno & ret_errno) )
|
2014-02-18 10:51:48 -05:00
|
|
|
mov %gs:0, %ebx
|
|
|
|
mov %ecx, errno@ntpoff(%ebx)
|
2013-01-12 13:48:27 -05:00
|
|
|
1:
|
|
|
|
pop %esi
|
|
|
|
pop %edi
|
|
|
|
pop %ebx
|
|
|
|
pop %ebp
|
|
|
|
ret
|
2013-05-22 16:06:18 -04:00
|
|
|
.size asm_syscall, .-asm_syscall
|