minix/lib/i386/rts/_ipc.s

80 lines
1.7 KiB
ArmAsm
Raw Normal View History

2005-04-21 16:53:53 +02:00
.sect .text; .sect .rom; .sect .data; .sect .bss
2006-03-10 17:16:21 +01:00
.define __echo, __notify, __send, __receive, __sendrec
2005-04-21 16:53:53 +02:00
! See src/kernel/ipc.h for C definitions
2005-04-21 16:53:53 +02:00
SEND = 1
RECEIVE = 2
SENDREC = 3
NOTIFY = 4
ECHO = 8
SYSVEC = 33 ! trap to kernel
2005-04-21 16:53:53 +02:00
SRC_DST = 8 ! source/ destination process
2006-03-10 17:16:21 +01:00
ECHO_MESS = 8 ! echo doesn't have SRC_DST
MESSAGE = 12 ! message pointer
2005-04-21 16:53:53 +02:00
!*========================================================================*
! IPC assembly routines *
2005-04-21 16:53:53 +02:00
!*========================================================================*
! all message passing routines save ebp, but destroy eax and ecx.
2006-03-10 17:16:21 +01:00
.define __echo, __notify, __send, __receive, __sendrec
2005-04-21 16:53:53 +02:00
.sect .text
__send:
push ebp
mov ebp, esp
push ebx
mov eax, SRC_DST(ebp) ! eax = dest-src
2005-04-21 16:53:53 +02:00
mov ebx, MESSAGE(ebp) ! ebx = message pointer
mov ecx, SEND ! _send(dest, ptr)
int SYSVEC ! trap to the kernel
pop ebx
pop ebp
ret
__receive:
push ebp
mov ebp, esp
push ebx
mov eax, SRC_DST(ebp) ! eax = dest-src
2005-04-21 16:53:53 +02:00
mov ebx, MESSAGE(ebp) ! ebx = message pointer
mov ecx, RECEIVE ! _receive(src, ptr)
int SYSVEC ! trap to the kernel
pop ebx
pop ebp
ret
__sendrec:
push ebp
mov ebp, esp
push ebx
mov eax, SRC_DST(ebp) ! eax = dest-src
2005-04-21 16:53:53 +02:00
mov ebx, MESSAGE(ebp) ! ebx = message pointer
mov ecx, SENDREC ! _sendrec(srcdest, ptr)
2005-04-21 16:53:53 +02:00
int SYSVEC ! trap to the kernel
pop ebx
pop ebp
ret
__notify:
push ebp
mov ebp, esp
push ebx
mov eax, SRC_DST(ebp) ! ebx = destination
mov ecx, NOTIFY ! _notify(srcdst)
int SYSVEC ! trap to the kernel
pop ebx
pop ebp
ret
__echo:
push ebp
mov ebp, esp
push ebx
mov ebx, ECHO_MESS(ebp) ! ebx = message pointer
mov ecx, ECHO ! _echo(srcdest, ptr)
int SYSVEC ! trap to the kernel
pop ebx
pop ebp
ret