2003-06-30 01:28:48 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 2003 Institut National de Recherche en Informatique et */
|
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* Asm part of the runtime system, AMD64 processor */
|
|
|
|
/* Must be preprocessed by cpp */
|
|
|
|
|
|
|
|
#define FUNCTION_ALIGN 4
|
|
|
|
|
|
|
|
#define FUNCTION(name) \
|
|
|
|
.globl name; \
|
|
|
|
.type name,@function; \
|
|
|
|
.align FUNCTION_ALIGN; \
|
|
|
|
name:
|
|
|
|
|
|
|
|
.text
|
|
|
|
|
|
|
|
/* Allocation */
|
|
|
|
|
|
|
|
FUNCTION(caml_call_gc)
|
|
|
|
/* Record lowest stack address and return address */
|
|
|
|
movq 0(%rsp), %rax
|
|
|
|
movq %rax, caml_last_return_address(%rip)
|
|
|
|
leaq 8(%rsp), %rax
|
|
|
|
movq %rax, caml_bottom_of_stack(%rip)
|
2003-12-31 06:20:40 -08:00
|
|
|
/* Save caml_young_ptr, caml_exception_pointer */
|
|
|
|
movq %r15, caml_young_ptr(%rip)
|
2003-06-30 01:28:48 -07:00
|
|
|
movq %r14, caml_exception_pointer(%rip)
|
|
|
|
/* Build array of registers, save it into caml_gc_regs */
|
|
|
|
.L105:
|
|
|
|
pushq %r13
|
|
|
|
pushq %r12
|
|
|
|
pushq %rbp
|
|
|
|
pushq %r11
|
|
|
|
pushq %r10
|
|
|
|
pushq %r9
|
|
|
|
pushq %r8
|
|
|
|
pushq %rcx
|
|
|
|
pushq %rdx
|
|
|
|
pushq %rsi
|
|
|
|
pushq %rdi
|
|
|
|
pushq %rbx
|
|
|
|
pushq %rax
|
|
|
|
movq %rsp, caml_gc_regs
|
|
|
|
/* Save floating-point registers */
|
|
|
|
subq $(16*8), %rsp
|
|
|
|
movlpd %xmm0, 0*8(%rsp)
|
|
|
|
movlpd %xmm1, 1*8(%rsp)
|
|
|
|
movlpd %xmm2, 2*8(%rsp)
|
|
|
|
movlpd %xmm3, 3*8(%rsp)
|
|
|
|
movlpd %xmm4, 4*8(%rsp)
|
|
|
|
movlpd %xmm5, 5*8(%rsp)
|
|
|
|
movlpd %xmm6, 6*8(%rsp)
|
|
|
|
movlpd %xmm7, 7*8(%rsp)
|
|
|
|
movlpd %xmm8, 8*8(%rsp)
|
|
|
|
movlpd %xmm9, 9*8(%rsp)
|
|
|
|
movlpd %xmm10, 10*8(%rsp)
|
|
|
|
movlpd %xmm11, 11*8(%rsp)
|
|
|
|
movlpd %xmm12, 12*8(%rsp)
|
|
|
|
movlpd %xmm13, 13*8(%rsp)
|
|
|
|
movlpd %xmm14, 14*8(%rsp)
|
|
|
|
movlpd %xmm15, 15*8(%rsp)
|
|
|
|
/* Call the garbage collector */
|
2004-01-01 08:42:43 -08:00
|
|
|
call caml_garbage_collection
|
2003-06-30 01:28:48 -07:00
|
|
|
/* Restore all regs used by the code generator */
|
|
|
|
movlpd 0*8(%rsp), %xmm0
|
|
|
|
movlpd 1*8(%rsp), %xmm1
|
|
|
|
movlpd 2*8(%rsp), %xmm2
|
|
|
|
movlpd 3*8(%rsp), %xmm3
|
|
|
|
movlpd 4*8(%rsp), %xmm4
|
|
|
|
movlpd 5*8(%rsp), %xmm5
|
|
|
|
movlpd 6*8(%rsp), %xmm6
|
|
|
|
movlpd 7*8(%rsp), %xmm7
|
|
|
|
movlpd 8*8(%rsp), %xmm8
|
|
|
|
movlpd 9*8(%rsp), %xmm9
|
|
|
|
movlpd 10*8(%rsp), %xmm10
|
|
|
|
movlpd 11*8(%rsp), %xmm11
|
|
|
|
movlpd 12*8(%rsp), %xmm12
|
|
|
|
movlpd 13*8(%rsp), %xmm13
|
|
|
|
movlpd 14*8(%rsp), %xmm14
|
|
|
|
movlpd 15*8(%rsp), %xmm15
|
|
|
|
addq $(16*8), %rsp
|
|
|
|
popq %rax
|
|
|
|
popq %rbx
|
|
|
|
popq %rdi
|
|
|
|
popq %rsi
|
|
|
|
popq %rdx
|
|
|
|
popq %rcx
|
|
|
|
popq %r8
|
|
|
|
popq %r9
|
|
|
|
popq %r10
|
|
|
|
popq %r11
|
|
|
|
popq %rbp
|
|
|
|
popq %r12
|
|
|
|
popq %r13
|
2003-12-31 06:20:40 -08:00
|
|
|
/* Restore caml_young_ptr, caml_exception_pointer */
|
|
|
|
movq caml_young_ptr(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
movq caml_exception_pointer(%rip), %r14
|
|
|
|
/* Return to caller */
|
|
|
|
ret
|
|
|
|
|
|
|
|
FUNCTION(caml_alloc1)
|
|
|
|
subq $16, %r15
|
2003-12-31 06:20:40 -08:00
|
|
|
cmpq caml_young_limit(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
jb .L100
|
|
|
|
ret
|
|
|
|
.L100:
|
|
|
|
movq 0(%rsp), %rax
|
|
|
|
movq %rax, caml_last_return_address(%rip)
|
|
|
|
leaq 8(%rsp), %rax
|
|
|
|
movq %rax, caml_bottom_of_stack(%rip)
|
|
|
|
subq $8, %rsp
|
|
|
|
call .L105
|
|
|
|
addq $8, %rsp
|
|
|
|
jmp caml_alloc1
|
|
|
|
|
|
|
|
FUNCTION(caml_alloc2)
|
|
|
|
subq $24, %r15
|
2003-12-31 06:20:40 -08:00
|
|
|
cmpq caml_young_limit(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
jb .L101
|
|
|
|
ret
|
|
|
|
.L101:
|
|
|
|
movq 0(%rsp), %rax
|
|
|
|
movq %rax, caml_last_return_address(%rip)
|
|
|
|
leaq 8(%rsp), %rax
|
|
|
|
movq %rax, caml_bottom_of_stack(%rip)
|
|
|
|
subq $8, %rsp
|
|
|
|
call .L105
|
|
|
|
addq $8, %rsp
|
|
|
|
jmp caml_alloc2
|
|
|
|
|
|
|
|
FUNCTION(caml_alloc3)
|
|
|
|
subq $32, %r15
|
2003-12-31 06:20:40 -08:00
|
|
|
cmpq caml_young_limit(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
jb .L102
|
|
|
|
ret
|
|
|
|
.L102:
|
|
|
|
movq 0(%rsp), %rax
|
|
|
|
movq %rax, caml_last_return_address(%rip)
|
|
|
|
leaq 8(%rsp), %rax
|
|
|
|
movq %rax, caml_bottom_of_stack(%rip)
|
|
|
|
subq $8, %rsp
|
|
|
|
call .L105
|
|
|
|
addq $8, %rsp
|
|
|
|
jmp caml_alloc3
|
|
|
|
|
2004-01-01 08:42:43 -08:00
|
|
|
FUNCTION(caml_allocN)
|
2003-06-30 01:28:48 -07:00
|
|
|
subq %rax, %r15
|
2003-12-31 06:20:40 -08:00
|
|
|
cmpq caml_young_limit(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
jb .L103
|
|
|
|
ret
|
|
|
|
.L103:
|
|
|
|
pushq %rax /* save desired size */
|
|
|
|
movq 8(%rsp), %rax
|
|
|
|
movq %rax, caml_last_return_address(%rip)
|
|
|
|
leaq 16(%rsp), %rax
|
|
|
|
movq %rax, caml_bottom_of_stack(%rip)
|
|
|
|
call .L105
|
|
|
|
popq %rax /* recover desired size */
|
2004-01-01 08:42:43 -08:00
|
|
|
jmp caml_allocN
|
2003-06-30 01:28:48 -07:00
|
|
|
|
|
|
|
/* Call a C function from Caml */
|
|
|
|
|
|
|
|
FUNCTION(caml_c_call)
|
|
|
|
/* Record lowest stack address and return address */
|
|
|
|
popq %r12
|
|
|
|
movq %r12, caml_last_return_address(%rip)
|
|
|
|
movq %rsp, caml_bottom_of_stack(%rip)
|
|
|
|
/* Make the exception handler and alloc ptr available to the C code */
|
2003-12-31 06:20:40 -08:00
|
|
|
movq %r15, caml_young_ptr(%rip)
|
2003-06-30 01:28:48 -07:00
|
|
|
movq %r14, caml_exception_pointer(%rip)
|
|
|
|
/* Call the function (address in %rax) */
|
|
|
|
call *%rax
|
|
|
|
/* Reload alloc ptr */
|
2003-12-31 06:20:40 -08:00
|
|
|
movq caml_young_ptr(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
/* Return to caller */
|
|
|
|
pushq %r12
|
|
|
|
ret
|
|
|
|
|
|
|
|
/* Start the Caml program */
|
|
|
|
|
|
|
|
FUNCTION(caml_start_program)
|
|
|
|
/* Save callee-save registers */
|
|
|
|
pushq %rbx
|
|
|
|
pushq %rbp
|
|
|
|
pushq %r12
|
|
|
|
pushq %r13
|
|
|
|
pushq %r14
|
|
|
|
pushq %r15
|
|
|
|
subq $8, %rsp /* stack 16-aligned */
|
|
|
|
/* Initial entry point is caml_program */
|
|
|
|
leaq caml_program(%rip), %r12
|
2003-12-31 06:20:40 -08:00
|
|
|
/* Common code for caml_start_program and caml_callback* */
|
2003-06-30 01:28:48 -07:00
|
|
|
.L106:
|
|
|
|
/* Build a callback link */
|
|
|
|
subq $8, %rsp /* stack 16-aligned */
|
|
|
|
pushq caml_gc_regs(%rip)
|
|
|
|
pushq caml_last_return_address(%rip)
|
|
|
|
pushq caml_bottom_of_stack(%rip)
|
|
|
|
/* Setup alloc ptr and exception ptr */
|
2003-12-31 06:20:40 -08:00
|
|
|
movq caml_young_ptr(%rip), %r15
|
2003-06-30 01:28:48 -07:00
|
|
|
movq caml_exception_pointer(%rip), %r14
|
|
|
|
/* Build an exception handler */
|
|
|
|
lea .L108(%rip), %r13
|
|
|
|
pushq %r13
|
|
|
|
pushq %r14
|
|
|
|
movq %rsp, %r14
|
|
|
|
/* Call the Caml code */
|
|
|
|
call *%r12
|
|
|
|
.L107:
|
|
|
|
/* Pop the exception handler */
|
|
|
|
popq %r14
|
|
|
|
popq %r12 /* dummy register */
|
|
|
|
.L109:
|
|
|
|
/* Update alloc ptr and exception ptr */
|
2003-12-31 06:20:40 -08:00
|
|
|
movq %r15, caml_young_ptr(%rip)
|
2003-06-30 01:28:48 -07:00
|
|
|
movq %r14, caml_exception_pointer(%rip)
|
|
|
|
/* Pop the callback link, restoring the global variables */
|
|
|
|
popq caml_bottom_of_stack(%rip)
|
|
|
|
popq caml_last_return_address(%rip)
|
|
|
|
popq caml_gc_regs(%rip)
|
|
|
|
addq $8, %rsp
|
|
|
|
/* Restore callee-save registers. */
|
|
|
|
addq $8, %rsp
|
|
|
|
popq %r15
|
|
|
|
popq %r14
|
|
|
|
popq %r13
|
|
|
|
popq %r12
|
|
|
|
popq %rbp
|
|
|
|
popq %rbx
|
|
|
|
/* Return to caller. */
|
|
|
|
ret
|
|
|
|
.L108:
|
|
|
|
/* Exception handler*/
|
|
|
|
/* Mark the bucket as an exception result and return it */
|
|
|
|
orq $2, %rax
|
|
|
|
jmp .L109
|
|
|
|
|
|
|
|
/* Raise an exception from C */
|
|
|
|
|
2004-01-01 08:42:43 -08:00
|
|
|
FUNCTION(caml_raise_exception)
|
2003-06-30 01:28:48 -07:00
|
|
|
movq %rdi, %rax
|
|
|
|
movq caml_exception_pointer(%rip), %rsp
|
2003-12-20 03:05:51 -08:00
|
|
|
popq %r14 /* Recover previous exception handler */
|
2003-12-31 06:20:40 -08:00
|
|
|
movq caml_young_ptr(%rip), %r15 /* Reload alloc ptr */
|
2003-06-30 01:28:48 -07:00
|
|
|
ret
|
|
|
|
|
|
|
|
/* Callback from C to Caml */
|
|
|
|
|
2003-12-31 06:20:40 -08:00
|
|
|
FUNCTION(caml_callback_exn)
|
2003-06-30 01:28:48 -07:00
|
|
|
/* Save callee-save registers */
|
|
|
|
pushq %rbx
|
|
|
|
pushq %rbp
|
|
|
|
pushq %r12
|
|
|
|
pushq %r13
|
|
|
|
pushq %r14
|
|
|
|
pushq %r15
|
|
|
|
subq $8, %rsp /* stack 16-aligned */
|
|
|
|
/* Initial loading of arguments */
|
|
|
|
movq %rdi, %rbx /* closure */
|
|
|
|
movq %rsi, %rax /* argument */
|
|
|
|
movq 0(%rbx), %r12 /* code pointer */
|
|
|
|
jmp .L106
|
|
|
|
|
2003-12-31 06:20:40 -08:00
|
|
|
FUNCTION(caml_callback2_exn)
|
2003-06-30 01:28:48 -07:00
|
|
|
/* Save callee-save registers */
|
|
|
|
pushq %rbx
|
|
|
|
pushq %rbp
|
|
|
|
pushq %r12
|
|
|
|
pushq %r13
|
|
|
|
pushq %r14
|
|
|
|
pushq %r15
|
|
|
|
subq $8, %rsp /* stack 16-aligned */
|
|
|
|
/* Initial loading of arguments */
|
|
|
|
/* closure stays in %rdi */
|
|
|
|
movq %rsi, %rax /* first argument */
|
|
|
|
movq %rdx, %rbx /* second argument */
|
|
|
|
leaq caml_apply2(%rip), %r12 /* code pointer */
|
|
|
|
jmp .L106
|
|
|
|
|
2003-12-31 06:20:40 -08:00
|
|
|
FUNCTION(caml_callback3_exn)
|
2003-06-30 01:28:48 -07:00
|
|
|
/* Save callee-save registers */
|
|
|
|
pushq %rbx
|
|
|
|
pushq %rbp
|
|
|
|
pushq %r12
|
|
|
|
pushq %r13
|
|
|
|
pushq %r14
|
|
|
|
pushq %r15
|
|
|
|
subq $8, %rsp /* stack 16-aligned */
|
|
|
|
/* Initial loading of arguments */
|
|
|
|
movq %rsi, %rax /* first argument */
|
|
|
|
movq %rdx, %rbx /* second argument */
|
|
|
|
movq %rdi, %rsi /* closure */
|
|
|
|
movq %rcx, %rdi /* third argument */
|
|
|
|
leaq caml_apply3(%rip), %r12 /* code pointer */
|
|
|
|
jmp .L106
|
|
|
|
|
2004-01-01 08:42:43 -08:00
|
|
|
FUNCTION(caml_ml_array_bound_error)
|
2003-06-30 01:28:48 -07:00
|
|
|
/* Make the exception handler and alloc ptr available to the C code */
|
2003-12-31 06:20:40 -08:00
|
|
|
movq %r15, caml_young_ptr(%rip)
|
2003-06-30 01:28:48 -07:00
|
|
|
movq %r14, caml_exception_pointer(%rip)
|
2004-01-02 11:23:29 -08:00
|
|
|
jmp caml_array_bound_error
|
2003-06-30 01:28:48 -07:00
|
|
|
|
|
|
|
.data
|
2004-01-03 04:51:20 -08:00
|
|
|
.globl caml_system__frametable
|
|
|
|
.type caml_system__frametable,@object
|
2003-06-30 01:28:48 -07:00
|
|
|
.align 8
|
2004-01-03 04:51:20 -08:00
|
|
|
caml_system__frametable:
|
2003-06-30 01:28:48 -07:00
|
|
|
.quad 1 /* one descriptor */
|
|
|
|
.quad .L107 /* return address into callback */
|
|
|
|
.value -1 /* negative frame size => use callback link */
|
|
|
|
.value 0 /* no roots here */
|
|
|
|
.align 8
|
|
|
|
|
|
|
|
.section .rodata.cst8,"aM",@progbits,8
|
|
|
|
.globl caml_negf_mask
|
|
|
|
.type caml_negf_mask,@object
|
|
|
|
.align 16
|
|
|
|
caml_negf_mask:
|
|
|
|
.quad 0x8000000000000000, 0
|
|
|
|
.globl caml_absf_mask
|
|
|
|
.type caml_absf_mask,@object
|
|
|
|
.align 16
|
|
|
|
caml_absf_mask:
|
|
|
|
.quad 0x7FFFFFFFFFFFFFFF, 0xFFFFFFFFFFFFFFFF
|