2 * very-low-level utilities for runtime support
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.
16 #define LANGUAGE_ASSEMBLY
19 #include "genesis/closure.h"
20 #include "genesis/funcallable-instance.h"
21 #include "genesis/fdefn.h"
22 #include "genesis/static-symbols.h"
23 #include "genesis/symbol.h"
24 #include "genesis/thread.h"
26 /* Minimize conditionalization for different OS naming schemes.
28 * (As of sbcl-0.8.10, this seems no longer to be much of an issue,
29 * since everyone has converged on ELF. If this generality really
30 * turns out not to matter, perhaps it's just clutter we could get
31 * rid of? -- WHN 2004-04-18)
33 * (Except Win32, which is unlikely ever to be ELF, sorry. -- AB 2005-12-08)
35 #if defined __linux__ || defined __FreeBSD__ || defined __NetBSD__ || defined __OpenBSD__ || defined __sun
36 #define GNAME(var) var
38 #define GNAME(var) _##var
41 /* Get the right type of alignment. Linux, FreeBSD and NetBSD (but not OpenBSD)
42 * want alignment in bytes.
44 * (As in the GNAME() definitions above, as of sbcl-0.8.10, this seems
45 * no longer to be much of an issue, since everyone has converged on
46 * the same value. If this generality really turns out not to
47 * matter any more, perhaps it's just clutter we could get
48 * rid of? -- WHN 2004-04-18)
50 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__sun) || defined(LISP_FEATURE_WIN32)
53 #define align_16byte 16
57 #define align_16byte 4
61 * The assembler used for win32 doesn't like .type or .size directives,
62 * so we want to conditionally kill them out. So let's wrap them in macros
63 * that are defined to be no-ops on win32. Hopefully this still works on
66 #if !defined(LISP_FEATURE_WIN32) && !defined(LISP_FEATURE_DARWIN)
67 #define TYPE(name) .type name,@function
68 #define SIZE(name) .size name,.-name
75 * x86/darwin (as of MacOS X 10.4.5) doesn't reliably file signal
76 * handlers (SIGTRAP or Mach exception handlers) for 0xCC, wo we have
77 * to use ud2 instead. ud2 is an undefined opcode, #x0b0f, or
78 * 0F 0B in low-endian notation, that causes SIGILL to fire. We check
79 * for this instruction in the SIGILL handler and if we see it, we
80 * advance the EIP by two bytes to skip over ud2 instruction and
81 * call sigtrap_handler. */
82 #if defined(LISP_FEATURE_DARWIN)
91 .globl GNAME(foreign_function_call_active)
92 .globl GNAME(all_threads)
95 * A call to call_into_c preserves esi, edi, and ebp.
96 * (The C function will preserve ebx, esi, edi, and ebp across its
97 * function call, but we trash ebx ourselves by using it to save the
98 * return Lisp address.)
100 * Return values are in eax and maybe edx for quads, or st(0) for
103 * This should work for Lisp calls C calls Lisp calls C..
106 .align align_16byte,0x90
107 .globl GNAME(call_into_c)
108 TYPE(GNAME(call_into_c))
110 movl $1,GNAME(foreign_function_call_active)
112 /* Save the return Lisp address in ebx. */
115 /* Setup the NPX for C */
125 #ifdef LISP_FEATURE_WIN32
129 #ifdef LISP_FEATURE_DARWIN
130 andl $0xfffffff0,%esp # align stack to 16-byte boundary before calling C
132 call *%eax # normal callout using Lisp stack
134 movl %eax,%ecx # remember integer return value
136 /* Check for a return FP value. */
143 /* The return value is in eax, or eax,edx? */
144 /* Set up the NPX stack for Lisp. */
145 fldz # Ensure no regs are empty.
154 /* Restore the return value. */
155 movl %ecx,%eax # maybe return value
157 movl $0,GNAME(foreign_function_call_active)
162 /* The return result is in st(0). */
163 /* Set up the NPX stack for Lisp, placing the result in st(0). */
164 fldz # Ensure no regs are empty.
171 fxch %st(7) # Move the result back to st(0).
173 /* We don't need to restore eax, because the result is in st(0). */
175 movl $0,GNAME(foreign_function_call_active)
179 SIZE(GNAME(call_into_c))
183 .globl GNAME(call_into_lisp_first_time)
184 TYPE(GNAME(call_into_lisp_first_time))
186 /* The *ALIEN-STACK* pointer is set up on the first call_into_lisp when
187 * the stack changes. We don't worry too much about saving registers
188 * here, because we never expect to return from the initial call to lisp
191 .align align_16byte,0x90
192 GNAME(call_into_lisp_first_time):
193 pushl %ebp # Save old frame pointer.
194 movl %esp,%ebp # Establish new frame.
195 #ifndef LISP_FEATURE_WIN32
196 movl %esp,ALIEN_STACK + SYMBOL_VALUE_OFFSET
197 movl GNAME(all_threads),%eax
198 movl THREAD_CONTROL_STACK_START_OFFSET(%eax) ,%esp
199 /* don't think too hard about what happens if we get interrupted
201 addl $(THREAD_CONTROL_STACK_SIZE),%esp
203 /* Win32 -really- doesn't like you switching stacks out from under it. */
204 movl GNAME(all_threads),%eax
209 .globl GNAME(call_into_lisp)
210 TYPE(GNAME(call_into_lisp))
212 /* The C conventions require that ebx, esi, edi, and ebp be preserved
213 * across function calls. */
215 .align align_16byte,0x90
216 GNAME(call_into_lisp):
217 pushl %ebp # Save old frame pointer.
218 movl %esp,%ebp # Establish new frame.
220 /* Save the NPX state */
221 fwait # Catch any pending NPX exceptions.
222 subl $108,%esp # Make room for the NPX state.
223 fnsave (%esp) # save and reset NPX
225 movl (%esp),%eax # Load NPX control word.
226 andl $0xfffff2ff,%eax # Set rounding mode to nearest.
227 orl $0x00000200,%eax # Set precision to 64 bits. (53-bit mantissa)
229 fldcw (%esp) # Recover modes.
232 fldz # Ensure no FP regs are empty.
241 /* Save C regs: ebx esi edi. */
246 /* Clear descriptor regs. */
247 xorl %eax,%eax # lexenv
248 xorl %ebx,%ebx # available
249 xorl %ecx,%ecx # arg count
250 xorl %edx,%edx # first arg
251 xorl %edi,%edi # second arg
252 xorl %esi,%esi # third arg
254 /* no longer in function call */
255 movl %eax, GNAME(foreign_function_call_active)
257 movl %esp,%ebx # remember current stack
258 pushl %ebx # Save entry stack on (maybe) new stack.
260 /* Establish Lisp args. */
261 movl 8(%ebp),%eax # lexenv?
262 movl 12(%ebp),%ebx # address of arg vec
263 movl 16(%ebp),%ecx # num args
264 shll $2,%ecx # Make num args into fixnum.
267 movl (%ebx),%edx # arg0
270 movl 4(%ebx),%edi # arg1
273 movl 8(%ebx),%esi # arg2
275 /* Registers eax, ecx, edx, edi, and esi are now live. */
277 /* Alloc new frame. */
278 mov %esp,%ebx # The current sp marks start of new frame.
279 push %ebp # fp in save location S0
280 sub $8,%esp # Ensure 3 slots are allocated, one above.
281 mov %ebx,%ebp # Switch to new frame.
283 call *CLOSURE_FUN_OFFSET(%eax)
285 /* If the function returned multiple values, it will return to
286 this point. Lose them */
290 /* A singled value function returns here */
292 /* Restore the stack, in case there was a stack change. */
295 /* Restore C regs: ebx esi edi. */
300 /* Restore the NPX state. */
305 movl %edx,%eax # c-val
307 SIZE(GNAME(call_into_lisp))
309 /* support for saving and restoring the NPX state from C */
311 .globl GNAME(fpu_save)
312 TYPE(GNAME(fpu_save))
316 fnsave (%eax) # Save the NPX state. (resets NPX)
318 SIZE(GNAME(fpu_save))
320 .globl GNAME(fpu_restore)
321 TYPE(GNAME(fpu_restore))
325 frstor (%eax) # Restore the NPX state.
327 SIZE(GNAME(fpu_restore))
330 * the undefined-function trampoline
333 .align align_4byte,0x90
334 .globl GNAME(undefined_tramp)
335 TYPE(GNAME(undefined_tramp))
336 .byte 0, 0, 0, SIMPLE_FUN_HEADER_WIDETAG
337 GNAME(undefined_tramp):
341 .byte UNDEFINED_FUN_ERROR
342 .byte sc_DescriptorReg # eax in the Descriptor-reg SC
344 SIZE(GNAME(undefined_tramp))
347 * the closure trampoline
350 .align align_4byte,0x90
351 .globl GNAME(closure_tramp)
352 TYPE(GNAME(closure_tramp))
353 .byte 0, 0, 0, SIMPLE_FUN_HEADER_WIDETAG
354 GNAME(closure_tramp):
355 movl FDEFN_FUN_OFFSET(%eax),%eax
356 /* FIXME: The '*' after "jmp" in the next line is from PVE's
357 * patch posted to the CMU CL mailing list Oct 6, 1999. It looks
358 * reasonable, and it certainly seems as though if CMU CL needs it,
359 * SBCL needs it too, but I haven't actually verified that it's
360 * right. It would be good to find a way to force the flow of
361 * control through here to test it. */
362 jmp *CLOSURE_FUN_OFFSET(%eax)
363 SIZE(GNAME(closure_tramp))
366 .align align_4byte,0x90
367 .globl GNAME(funcallable_instance_tramp)
368 TYPE(GNAME(funcallable_instance_tramp))
369 GNAME(funcallable_instance_tramp):
370 movl FUNCALLABLE_INSTANCE_FUNCTION_OFFSET(%eax),%eax
371 /* KLUDGE: on this platform, whatever kind of function is in %rax
372 * now, the first word of it contains the address to jump to. */
373 jmp *CLOSURE_FUN_OFFSET(%eax)
374 SIZE(GNAME(funcallable_instance_tramp))
377 * fun-end breakpoint magic
380 .globl GNAME(fun_end_breakpoint_guts)
382 GNAME(fun_end_breakpoint_guts):
383 /* Multiple Value return */
384 jc multiple_value_return
385 /* Single value return: The eventual return will now use the
386 multiple values return convention but with a return values
388 movl %esp,%ebx # Setup ebx - the ofp.
389 subl $4,%esp # Allocate one stack slot for the return value
390 movl $4,%ecx # Setup ecx for one return value.
391 movl $(NIL),%edi # default second value
392 movl $(NIL),%esi # default third value
394 multiple_value_return:
396 .globl GNAME(fun_end_breakpoint_trap)
397 GNAME(fun_end_breakpoint_trap):
399 .byte trap_FunEndBreakpoint
400 hlt # We should never return here.
402 .globl GNAME(fun_end_breakpoint_end)
403 GNAME(fun_end_breakpoint_end):
406 .globl GNAME(do_pending_interrupt)
407 TYPE(GNAME(do_pending_interrupt))
408 .align align_4byte,0x90
409 GNAME(do_pending_interrupt):
411 .byte trap_PendingInterrupt
413 SIZE(GNAME(do_pending_interrupt))
417 * Allocate bytes and return the start of the allocated space
418 * in the specified destination register.
420 * In the general case the size will be in the destination register.
422 * All registers must be preserved except the destination.
423 * The C conventions will preserve ebx, esi, edi, and ebp.
424 * So only eax, ecx, and edx need special care here.
427 .globl GNAME(alloc_to_eax)
428 TYPE(GNAME(alloc_to_eax))
429 .align align_4byte,0x90
431 pushl %ecx # Save ecx and edx as C could destroy them.
433 pushl %eax # Push the size.
435 addl $4,%esp # Pop the size arg.
436 popl %edx # Restore ecx and edx.
439 SIZE(GNAME(alloc_to_eax))
441 .globl GNAME(alloc_8_to_eax)
442 TYPE(GNAME(alloc_8_to_eax))
443 .align align_4byte,0x90
444 GNAME(alloc_8_to_eax):
445 pushl %ecx # Save ecx and edx as C could destroy them.
447 pushl $8 # Push the size.
449 addl $4,%esp # Pop the size arg.
450 popl %edx # Restore ecx and edx.
453 SIZE(GNAME(alloc_8_to_eax))
455 .globl GNAME(alloc_8_to_eax)
456 TYPE(GNAME(alloc_8_to_eax))
457 .align align_4byte,0x90
459 .globl GNAME(alloc_16_to_eax)
460 TYPE(GNAME(alloc_16_to_eax))
461 .align align_4byte,0x90
462 GNAME(alloc_16_to_eax):
463 pushl %ecx # Save ecx and edx as C could destroy them.
465 pushl $16 # Push the size.
467 addl $4,%esp # Pop the size arg.
468 popl %edx # Restore ecx and edx.
471 SIZE(GNAME(alloc_16_to_eax))
473 .globl GNAME(alloc_to_ecx)
474 TYPE(GNAME(alloc_to_ecx))
475 .align align_4byte,0x90
477 pushl %eax # Save eax and edx as C could destroy them.
479 pushl %ecx # Push the size.
481 addl $4,%esp # Pop the size arg.
482 movl %eax,%ecx # Set up the destination.
483 popl %edx # Restore eax and edx.
486 SIZE(GNAME(alloc_to_ecx))
488 .globl GNAME(alloc_8_to_ecx)
489 TYPE(GNAME(alloc_8_to_ecx))
490 .align align_4byte,0x90
491 GNAME(alloc_8_to_ecx):
492 pushl %eax # Save eax and edx as C could destroy them.
494 pushl $8 # Push the size.
496 addl $4,%esp # Pop the size arg.
497 movl %eax,%ecx # Set up the destination.
498 popl %edx # Restore eax and edx.
501 SIZE(GNAME(alloc_8_to_ecx))
503 .globl GNAME(alloc_16_to_ecx)
504 TYPE(GNAME(alloc_16_to_ecx))
505 .align align_4byte,0x90
506 GNAME(alloc_16_to_ecx):
507 pushl %eax # Save eax and edx as C could destroy them.
509 pushl $16 # Push the size.
511 addl $4,%esp # Pop the size arg.
512 movl %eax,%ecx # Set up the destination.
513 popl %edx # Restore eax and edx.
516 SIZE(GNAME(alloc_16_to_ecx))
519 .globl GNAME(alloc_to_edx)
520 TYPE(GNAME(alloc_to_edx))
521 .align align_4byte,0x90
523 pushl %eax # Save eax and ecx as C could destroy them.
525 pushl %edx # Push the size.
527 addl $4,%esp # Pop the size arg.
528 movl %eax,%edx # Set up the destination.
529 popl %ecx # Restore eax and ecx.
532 SIZE(GNAME(alloc_to_edx))
534 .globl GNAME(alloc_8_to_edx)
535 TYPE(GNAME(alloc_8_to_edx))
536 .align align_4byte,0x90
537 GNAME(alloc_8_to_edx):
538 pushl %eax # Save eax and ecx as C could destroy them.
540 pushl $8 # Push the size.
542 addl $4,%esp # Pop the size arg.
543 movl %eax,%edx # Set up the destination.
544 popl %ecx # Restore eax and ecx.
547 SIZE(GNAME(alloc_8_to_edx))
549 .globl GNAME(alloc_16_to_edx)
550 TYPE(GNAME(alloc_16_to_edx))
551 .align align_4byte,0x90
552 GNAME(alloc_16_to_edx):
553 pushl %eax # Save eax and ecx as C could destroy them.
555 pushl $16 # Push the size.
557 addl $4,%esp # Pop the size arg.
558 movl %eax,%edx # Set up the destination.
559 popl %ecx # Restore eax and ecx.
562 SIZE(GNAME(alloc_16_to_edx))
566 .globl GNAME(alloc_to_ebx)
567 TYPE(GNAME(alloc_to_ebx))
568 .align align_4byte,0x90
570 pushl %eax # Save eax, ecx, and edx as C could destroy them.
573 pushl %ebx # Push the size.
575 addl $4,%esp # Pop the size arg.
576 movl %eax,%ebx # Set up the destination.
577 popl %edx # Restore eax, ecx and edx.
581 SIZE(GNAME(alloc_to_ebx))
583 .globl GNAME(alloc_8_to_ebx)
584 TYPE(GNAME(alloc_8_to_ebx))
585 .align align_4byte,0x90
586 GNAME(alloc_8_to_ebx):
587 pushl %eax # Save eax, ecx, and edx as C could destroy them.
590 pushl $8 # Push the size.
592 addl $4,%esp # Pop the size arg.
593 movl %eax,%ebx # Set up the destination.
594 popl %edx # Restore eax, ecx and edx.
598 SIZE(GNAME(alloc_8_to_ebx))
600 .globl GNAME(alloc_16_to_ebx)
601 TYPE(GNAME(alloc_16_to_ebx))
602 .align align_4byte,0x90
603 GNAME(alloc_16_to_ebx):
604 pushl %eax # Save eax, ecx, and edx as C could destroy them.
607 pushl $16 # Push the size
609 addl $4,%esp # pop the size arg.
610 movl %eax,%ebx # setup the destination.
611 popl %edx # Restore eax, ecx and edx.
615 SIZE(GNAME(alloc_16_to_ebx))
619 .globl GNAME(alloc_to_esi)
620 TYPE(GNAME(alloc_to_esi))
621 .align align_4byte,0x90
623 pushl %eax # Save eax, ecx, and edx as C could destroy them.
626 pushl %esi # Push the size
628 addl $4,%esp # pop the size arg.
629 movl %eax,%esi # setup the destination.
630 popl %edx # Restore eax, ecx and edx.
634 SIZE(GNAME(alloc_to_esi))
636 .globl GNAME(alloc_8_to_esi)
637 TYPE(GNAME(alloc_8_to_esi))
638 .align align_4byte,0x90
639 GNAME(alloc_8_to_esi):
640 pushl %eax # Save eax, ecx, and edx as C could destroy them.
643 pushl $8 # Push the size
645 addl $4,%esp # pop the size arg.
646 movl %eax,%esi # setup the destination.
647 popl %edx # Restore eax, ecx and edx.
651 SIZE(GNAME(alloc_8_to_esi))
653 .globl GNAME(alloc_16_to_esi)
654 TYPE(GNAME(alloc_16_to_esi))
655 .align align_4byte,0x90
656 GNAME(alloc_16_to_esi):
657 pushl %eax # Save eax, ecx, and edx as C could destroy them.
660 pushl $16 # Push the size
662 addl $4,%esp # pop the size arg.
663 movl %eax,%esi # setup the destination.
664 popl %edx # Restore eax, ecx and edx.
668 SIZE(GNAME(alloc_16_to_esi))
671 .globl GNAME(alloc_to_edi)
672 TYPE(GNAME(alloc_to_edi))
673 .align align_4byte,0x90
675 pushl %eax # Save eax, ecx, and edx as C could destroy them.
678 pushl %edi # Push the size
680 addl $4,%esp # pop the size arg.
681 movl %eax,%edi # setup the destination.
682 popl %edx # Restore eax, ecx and edx.
686 SIZE(GNAME(alloc_to_edi))
688 .globl GNAME(alloc_8_to_edi)
689 TYPE(GNAME(alloc_8_to_edi))
690 .align align_4byte,0x90
691 GNAME(alloc_8_to_edi):
692 pushl %eax # Save eax, ecx, and edx as C could destroy them.
695 pushl $8 # Push the size
697 addl $4,%esp # pop the size arg.
698 movl %eax,%edi # setup the destination.
699 popl %edx # Restore eax, ecx and edx.
703 SIZE(GNAME(alloc_8_to_edi))
705 .globl GNAME(alloc_16_to_edi)
706 TYPE(GNAME(alloc_16_to_edi))
707 .align align_4byte,0x90
708 GNAME(alloc_16_to_edi):
709 pushl %eax # Save eax, ecx, and edx as C could destroy them.
712 pushl $16 # Push the size
714 addl $4,%esp # pop the size arg.
715 movl %eax,%edi # setup the destination.
716 popl %edx # Restore eax, ecx and edx.
720 SIZE(GNAME(alloc_16_to_edi))
723 /* Called from lisp when an inline allocation overflows.
724 Every register except the result needs to be preserved.
725 We depend on C to preserve ebx, esi, edi, and ebp.
726 But where necessary must save eax, ecx, edx. */
728 #ifdef LISP_FEATURE_SB_THREAD
729 #define START_REGION %fs:THREAD_ALLOC_REGION_OFFSET
731 #define START_REGION GNAME(boxed_region)
734 /* This routine handles an overflow with eax=crfp+size. So the
737 .globl GNAME(alloc_overflow_eax)
738 TYPE(GNAME(alloc_overflow_eax))
739 GNAME(alloc_overflow_eax):
740 pushl %ecx # Save ecx
741 pushl %edx # Save edx
742 /* Calculate the size for the allocation. */
743 subl START_REGION,%eax
744 pushl %eax # Push the size
746 addl $4,%esp # pop the size arg.
747 popl %edx # Restore edx.
748 popl %ecx # Restore ecx.
750 SIZE(GNAME(alloc_overflow_eax))
753 .globl GNAME(alloc_overflow_ecx)
754 TYPE(GNAME(alloc_overflow_ecx))
755 GNAME(alloc_overflow_ecx):
756 pushl %eax # Save eax
757 pushl %edx # Save edx
758 /* Calculate the size for the allocation. */
759 subl START_REGION,%ecx
760 pushl %ecx # Push the size
762 addl $4,%esp # pop the size arg.
763 movl %eax,%ecx # setup the destination.
764 popl %edx # Restore edx.
765 popl %eax # Restore eax.
767 SIZE(GNAME(alloc_overflow_ecx))
770 .globl GNAME(alloc_overflow_edx)
771 TYPE(GNAME(alloc_overflow_edx))
772 GNAME(alloc_overflow_edx):
773 pushl %eax # Save eax
774 pushl %ecx # Save ecx
775 /* Calculate the size for the allocation. */
776 subl START_REGION,%edx
777 pushl %edx # Push the size
779 addl $4,%esp # pop the size arg.
780 movl %eax,%edx # setup the destination.
781 popl %ecx # Restore ecx.
782 popl %eax # Restore eax.
784 SIZE(GNAME(alloc_overflow_edx))
786 /* This routine handles an overflow with ebx=crfp+size. So the
789 .globl GNAME(alloc_overflow_ebx)
790 TYPE(GNAME(alloc_overflow_ebx))
791 GNAME(alloc_overflow_ebx):
792 pushl %eax # Save eax
793 pushl %ecx # Save ecx
794 pushl %edx # Save edx
795 /* Calculate the size for the allocation. */
796 subl START_REGION,%ebx
797 pushl %ebx # Push the size
799 addl $4,%esp # pop the size arg.
800 movl %eax,%ebx # setup the destination.
801 popl %edx # Restore edx.
802 popl %ecx # Restore ecx.
803 popl %eax # Restore eax.
805 SIZE(GNAME(alloc_overflow_ebx))
807 /* This routine handles an overflow with esi=crfp+size. So the
810 .globl GNAME(alloc_overflow_esi)
811 TYPE(GNAME(alloc_overflow_esi))
812 GNAME(alloc_overflow_esi):
813 pushl %eax # Save eax
814 pushl %ecx # Save ecx
815 pushl %edx # Save edx
816 /* Calculate the size for the allocation. */
817 subl START_REGION,%esi
818 pushl %esi # Push the size
820 addl $4,%esp # pop the size arg.
821 movl %eax,%esi # setup the destination.
822 popl %edx # Restore edx.
823 popl %ecx # Restore ecx.
824 popl %eax # Restore eax.
826 SIZE(GNAME(alloc_overflow_esi))
829 .globl GNAME(alloc_overflow_edi)
830 TYPE(GNAME(alloc_overflow_edi))
831 GNAME(alloc_overflow_edi):
832 pushl %eax # Save eax
833 pushl %ecx # Save ecx
834 pushl %edx # Save edx
835 /* Calculate the size for the allocation. */
836 subl START_REGION,%edi
837 pushl %edi # Push the size
839 addl $4,%esp # pop the size arg.
840 movl %eax,%edi # setup the destination.
841 popl %edx # Restore edx.
842 popl %ecx # Restore ecx.
843 popl %eax # Restore eax.
845 SIZE(GNAME(alloc_overflow_edi))
848 #ifdef LISP_FEATURE_DARWIN
850 .globl GNAME(call_into_lisp_tramp)
851 TYPE(GNAME(call_into_lisp_tramp))
852 GNAME(call_into_lisp_tramp):
853 /* 1. build the stack frame from the block that's pointed to by ECX
856 4. call the function via call_into_lisp
858 pushl 0(%ecx) /* return address */
863 pushl 32(%ecx) /* eflags */
864 pushl 28(%ecx) /* EAX */
865 pushl 20(%ecx) /* ECX */
866 pushl 16(%ecx) /* EDX */
867 pushl 24(%ecx) /* EBX */
868 pushl $0 /* popal is going to ignore esp */
869 pushl %ebp /* is this right?? */
870 pushl 12(%ecx) /* ESI */
871 pushl 8(%ecx) /* EDI */
872 pushl $0 /* args for call_into_lisp */
874 pushl 4(%ecx) /* function to call */
876 /* free our save block */
877 pushl %ecx /* reserve sufficient space on stack for args */
879 andl $0xfffffff0, %esp /* align stack */
882 call GNAME(os_invalidate)
884 /* call call_into_lisp */
886 call GNAME(call_into_lisp)
888 /* Clean up our mess */
895 SIZE(call_into_lisp_tramp)
898 .align align_4byte,0x90
899 .globl GNAME(post_signal_tramp)
900 TYPE(GNAME(post_signal_tramp))
901 GNAME(post_signal_tramp):
902 /* this is notionally the second half of a function whose first half
903 * doesn't exist. This is where call_into_lisp returns when called
904 * using return_to_lisp_function */
905 addl $12,%esp /* clear call_into_lisp args from stack */
906 popal /* restore registers */
908 #ifdef LISP_FEATURE_DARWIN
909 /* skip two padding words */
914 SIZE(GNAME(post_signal_tramp))
916 #ifdef LISP_FEATURE_WIN32
918 * This is part of the funky magic for exception handling on win32.
919 * see sigtrap_emulator() in win32-os.c for details.
921 .globl GNAME(sigtrap_trampoline)
922 GNAME(sigtrap_trampoline):
926 call GNAME(sigtrap_wrapper)
930 .byte trap_ContextRestore
931 hlt # We should never return here.
934 * This is part of the funky magic for exception handling on win32.
935 * see handle_exception() in win32-os.c for details.
937 .globl GNAME(exception_trampoline)
938 GNAME(exception_trampoline):
942 call GNAME(handle_win32_exception_wrapper)
946 .byte trap_ContextRestore
947 hlt # We should never return here.
950 /* fast_bzero implementations and code to detect which implementation
954 .globl GNAME(fast_bzero_pointer)
957 GNAME(fast_bzero_pointer):
958 /* Variable containing a pointer to the bzero function to use.
959 * Initially points to a basic function. Change this variable
960 * to fast_bzero_detect if OS supports SSE. */
961 .long GNAME(fast_bzero_base)
964 .align align_8byte,0x90
965 .globl GNAME(fast_bzero)
966 TYPE(GNAME(fast_bzero))
968 /* Indirect function call */
969 jmp *GNAME(fast_bzero_pointer)
970 SIZE(GNAME(fast_bzero))
974 .align align_8byte,0x90
975 .globl GNAME(fast_bzero_detect)
976 TYPE(GNAME(fast_bzero_detect))
977 GNAME(fast_bzero_detect):
978 /* Decide whether to use SSE, MMX or REP version */
979 push %eax /* CPUID uses EAX-EDX */
985 test $0x04000000, %edx /* SSE2 needed for MOVNTDQ */
987 /* Originally there was another case here for using the
988 * MOVNTQ instruction for processors that supported MMX but
989 * not SSE2. This turned out to be a loss especially on
990 * Athlons (where this instruction is apparently microcoded
991 * somewhat slowly). So for simplicity revert to REP STOSL
992 * for all non-SSE2 processors.
995 movl $(GNAME(fast_bzero_base)), GNAME(fast_bzero_pointer)
998 movl $(GNAME(fast_bzero_sse)), GNAME(fast_bzero_pointer)
1006 jmp *GNAME(fast_bzero_pointer)
1008 SIZE(GNAME(fast_bzero_detect))
1012 .align align_8byte,0x90
1013 .globl GNAME(fast_bzero_sse)
1014 TYPE(GNAME(fast_bzero_sse))
1016 GNAME(fast_bzero_sse):
1017 /* A fast routine for zero-filling blocks of memory that are
1018 * guaranteed to start and end at a 4096-byte aligned address.
1020 push %esi /* Save temporary registers */
1022 mov 16(%esp), %esi /* Parameter: amount of bytes to fill */
1023 mov 12(%esp), %edi /* Parameter: start address */
1024 shr $6, %esi /* Amount of 64-byte blocks to copy */
1025 jz Lend_sse /* If none, stop */
1026 movups %xmm7, -16(%esp) /* Save XMM register */
1027 xorps %xmm7, %xmm7 /* Zero the XMM register */
1032 /* Copy the 16 zeroes from xmm7 to memory, 4 times. MOVNTDQ is the
1033 * non-caching double-quadword moving variant, i.e. the memory areas
1034 * we're touching are not fetched into the L1 cache, since we're just
1035 * going to overwrite the memory soon anyway.
1037 movntdq %xmm7, 0(%edi)
1038 movntdq %xmm7, 16(%edi)
1039 movntdq %xmm7, 32(%edi)
1040 movntdq %xmm7, 48(%edi)
1042 add $64, %edi /* Advance pointer */
1043 dec %esi /* Decrement 64-byte block count */
1045 movups -16(%esp), %xmm7 /* Restore the XMM register */
1046 sfence /* Ensure that weakly ordered writes are flushed. */
1048 mov 12(%esp), %esi /* Parameter: start address */
1049 prefetcht0 0(%esi) /* Prefetch the start of the block into cache,
1050 * since it's likely to be used immediately. */
1051 pop %edi /* Restore temp registers */
1054 SIZE(GNAME(fast_bzero_sse))
1058 .align align_8byte,0x90
1059 .globl GNAME(fast_bzero_base)
1060 TYPE(GNAME(fast_bzero_base))
1062 GNAME(fast_bzero_base):
1063 /* A fast routine for zero-filling blocks of memory that are
1064 * guaranteed to start and end at a 4096-byte aligned address.
1066 push %eax /* Save temporary registers */
1069 mov 20(%esp), %ecx /* Parameter: amount of bytes to fill */
1070 mov 16(%esp), %edi /* Parameter: start address */
1071 xor %eax, %eax /* Zero EAX */
1072 shr $2, %ecx /* Amount of 4-byte blocks to copy */
1074 cld /* Set direction of STOSL to increment */
1077 stosl /* Store EAX to *EDI, ECX times, incrementing
1078 * EDI by 4 after each store */
1081 pop %edi /* Restore temp registers */
1085 SIZE(GNAME(fast_bzero_base))