source: mainline/uspace/lib/c/arch/ia32/src/syscall.S@ 04803bf

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 04803bf was 04803bf, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Merge mainline changes (needs fixes).

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[6c383b0]1#
2# Copyright (c) 2007 Jakub Jermar
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
[8e000b8d]29.data
30
31.global __syscall_fast_func
32__syscall_fast_func:
33 .long __syscall_slow
34
[6c383b0]35.text
36
[f2ef7fd]37/** Syscall wrapper - INT $0x30 version.
[6c383b0]38 *
39 * Mind the order of arguments. First two arguments and the syscall number go to
40 * scratch registers. An optimized version of this wrapper for fewer arguments
41 * could benefit from this and not save unused registers on the stack.
42 */
[8e000b8d]43.global __syscall_slow
44__syscall_slow:
[6c383b0]45 pushl %ebx
46 pushl %esi
47 pushl %edi
48 pushl %ebp
49 movl 20(%esp), %edx # First argument.
50 movl 24(%esp), %ecx # Second argument.
51 movl 28(%esp), %ebx # Third argument.
52 movl 32(%esp), %esi # Fourth argument.
53 movl 36(%esp), %edi # Fifth argument.
54 movl 40(%esp), %ebp # Sixth argument.
55 movl 44(%esp), %eax # Syscall number.
56 int $0x30
57 popl %ebp
58 popl %edi
59 popl %esi
60 popl %ebx
61 ret
[f2ef7fd]62
63
64/** Syscall wrapper - SYSENTER version.
65 *
66 * This is an optimized version of syscall for four or less arguments. Note
67 * that EBP and EDI are used to remember user stack address and the return
68 * address. The kernel part doesn't save DS, ES and FS so the handler restores
69 * these to the selector immediately following CS (it must be the flat data
70 * segment, otherwise the SYSENTER wouldn't work in the first place).
71 */
[8e000b8d]72.global __syscall_fast
[04803bf]73 .type __syscall_fast, @function
[1ea99cc]74
[8e000b8d]75__syscall_fast:
[f2ef7fd]76 pushl %ebx
77 pushl %esi
78 pushl %edi
79 pushl %ebp
80 mov %esp, %ebp
81 lea ra, %edi
82 movl 20(%esp), %edx # First argument.
83 movl 24(%esp), %ecx # Second argument.
84 movl 28(%esp), %ebx # Third argument.
85 movl 32(%esp), %esi # Fourth argument.
86 movl 44(%esp), %eax # Syscall number.
87 sysenter
88ra:
89 movw %cs, %cx
90 addw $8, %cx
91 movw %cx, %ds
92 movw %cx, %es
93 movw %cx, %fs
94 popl %ebp
95 popl %edi
96 popl %esi
97 popl %ebx
98 ret
[1ea99cc]99
[04803bf]100 .size __syscall_fast, . - __syscall_fast
Note: See TracBrowser for help on using the repository browser.