mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-23 04:09:43 +00:00
[kernel] Branch to __darling_bsd_syscall
instead of using svc
syscall
This commit is contained in:
parent
b50131844d
commit
1f899c79a1
@ -472,6 +472,18 @@ pseudo: ;\
|
||||
* TBD
|
||||
*/
|
||||
|
||||
#ifdef DARLING
|
||||
#define DO_SYSCALL(num, cerror) \
|
||||
mov x16, #(num) %%\
|
||||
bl __darling_bsd_syscall %%\
|
||||
b.cc 2f %%\
|
||||
PUSH_FRAME %%\
|
||||
bl _##cerror %%\
|
||||
POP_FRAME %%\
|
||||
ret %%\
|
||||
2:
|
||||
|
||||
#else
|
||||
#define DO_SYSCALL(num, cerror) \
|
||||
mov x16, #(num) %%\
|
||||
svc #SWI_SYSCALL %%\
|
||||
@ -481,6 +493,7 @@ pseudo: ;\
|
||||
POP_FRAME %%\
|
||||
ret %%\
|
||||
2:
|
||||
#endif
|
||||
|
||||
#define MI_GET_ADDRESS(reg,var) \
|
||||
adrp reg, var@page %%\
|
||||
|
@ -472,6 +472,18 @@ pseudo: ;\
|
||||
* TBD
|
||||
*/
|
||||
|
||||
#if DARLING
|
||||
#define DO_SYSCALL(num, cerror) \
|
||||
mov x16, #(num) %%\
|
||||
bl __darling_bsd_syscall %%\
|
||||
b.cc 2f %%\
|
||||
PUSH_FRAME %%\
|
||||
bl _##cerror %%\
|
||||
POP_FRAME %%\
|
||||
ret %%\
|
||||
2:
|
||||
|
||||
#else
|
||||
#define DO_SYSCALL(num, cerror) \
|
||||
mov x16, #(num) %%\
|
||||
svc #SWI_SYSCALL %%\
|
||||
@ -481,6 +493,7 @@ pseudo: ;\
|
||||
POP_FRAME %%\
|
||||
ret %%\
|
||||
2:
|
||||
#endif
|
||||
|
||||
#define MI_GET_ADDRESS(reg,var) \
|
||||
adrp reg, var@page %%\
|
||||
|
@ -262,7 +262,11 @@ L_mach_absolute_time_user:
|
||||
.globl _mach_absolute_time_kernel
|
||||
_mach_absolute_time_kernel:
|
||||
mov w16, #-3 // Load the magic MAT number
|
||||
#ifdef DARLING
|
||||
bl __darling_bsd_syscall
|
||||
#else
|
||||
svc #SWI_SYSCALL
|
||||
#endif
|
||||
ret
|
||||
|
||||
.text
|
||||
@ -270,7 +274,11 @@ _mach_absolute_time_kernel:
|
||||
.globl _mach_continuous_time_kernel
|
||||
_mach_continuous_time_kernel:
|
||||
mov w16, #-4 // Load the magic MCT number
|
||||
#ifdef DARLING
|
||||
bl __darling_bsd_syscall
|
||||
#else
|
||||
svc #SWI_SYSCALL
|
||||
#endif
|
||||
ret
|
||||
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user