blob: cc8a363890c7b49f3485ee108a16aac1d2d677f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/***********************************************************************/
/* */
/* OCaml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* en Automatique. All rights reserved. This file is distributed */
/* under the terms of the Q Public License version 1.0. */
/* */
/***********************************************************************/
/* Linux with ELF binaries does not prefix identifiers with _.
Linux with a.out binaries, FreeBSD, and NextStep do. */
#if defined(SYS_linux_elf) || defined(SYS_bsd_elf) \
|| defined(SYS_solaris) || defined(SYS_beos) || defined(SYS_gnu)
#define G(x) x
#define FUNCTION_ALIGN 16
#else
#define G(x) _##x
#define FUNCTION_ALIGN 4
#endif
.globl G(call_gen_code)
.align FUNCTION_ALIGN
G(call_gen_code):
pushl %ebp
movl %esp,%ebp
pushl %ebx
pushl %esi
pushl %edi
movl 12(%ebp),%eax
movl 16(%ebp),%ebx
movl 20(%ebp),%ecx
movl 24(%ebp),%edx
call *8(%ebp)
popl %edi
popl %esi
popl %ebx
popl %ebp
ret
.globl G(caml_c_call)
.align FUNCTION_ALIGN
G(caml_c_call):
ffree %st(0)
ffree %st(1)
ffree %st(2)
ffree %st(3)
jmp *%eax
.comm G(caml_exception_pointer), 4
.comm G(young_ptr), 4
.comm G(young_start), 4
|