1 /* funcall0 -- funcall3: we can get by with just two sets of these:
2 * for platforms where the control stack is the C-stack, and all others.
6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
22 #include "interrupt.h"
24 /* This is implemented in assembly language and called from C: */
25 extern lispobj
call_into_lisp(lispobj fun
, lispobj
*args
, int nargs
)
26 #ifdef LISP_FEATURE_X86_64
27 __attribute__((sysv_abi
))
31 #ifdef LISP_FEATURE_C_STACK_IS_CONTROL_STACK
32 /* These functions are an interface to the Lisp call-in facility.
33 * Since this is C we can know nothing about the calling environment.
34 * The control stack might be the C stack if called from the monitor
35 * or the Lisp stack if called as a result of an interrupt or maybe
36 * even a separate stack. The args are most likely on that stack but
37 * could be in registers depending on what the compiler likes. So we
38 * copy the args into a portable vector and let the assembly language
39 * call-in function figure it out. */
42 funcall0(lispobj function
)
46 FSHOW((stderr
, "/entering funcall0(0x%lx)\n", (long)function
));
47 return call_into_lisp(function
, args
, 0);
50 funcall1(lispobj function
, lispobj arg0
)
54 return call_into_lisp(function
, args
, 1);
58 funcall2(lispobj function
, lispobj arg0
, lispobj arg1
)
63 return call_into_lisp(function
, args
, 2);
67 funcall3(lispobj function
, lispobj arg0
, lispobj arg1
, lispobj arg2
)
73 return call_into_lisp(function
, args
, 3);
79 funcall0(lispobj function
)
81 lispobj
**stack_pointer
82 = &access_control_stack_pointer(arch_os_get_current_thread());
83 lispobj
*args
= *stack_pointer
;
85 return call_into_lisp(function
, args
, 0);
89 funcall1(lispobj function
, lispobj arg0
)
91 lispobj
**stack_pointer
92 = &access_control_stack_pointer(arch_os_get_current_thread());
93 lispobj
*args
= *stack_pointer
;
98 return call_into_lisp(function
, args
, 1);
102 funcall2(lispobj function
, lispobj arg0
, lispobj arg1
)
104 lispobj
**stack_pointer
105 = &access_control_stack_pointer(arch_os_get_current_thread());
106 lispobj
*args
= *stack_pointer
;
112 return call_into_lisp(function
, args
, 2);
116 funcall3(lispobj function
, lispobj arg0
, lispobj arg1
, lispobj arg2
)
118 lispobj
**stack_pointer
119 = &access_control_stack_pointer(arch_os_get_current_thread());
120 lispobj
*args
= *stack_pointer
;
127 return call_into_lisp(function
, args
, 3);