forked from ocaml-flambda/flambda-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcallback.c
358 lines (301 loc) · 9.63 KB
/
callback.c
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/**************************************************************************/
/* */
/* 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 GNU Lesser General Public License version 2.1, with the */
/* special exception on linking described in the file LICENSE. */
/* */
/**************************************************************************/
#define CAML_INTERNALS
/* Callbacks from C to OCaml */
#include <string.h>
#include "caml/callback.h"
#include "caml/domain.h"
#include "caml/fail.h"
#include "caml/memory.h"
#include "caml/mlvalues.h"
#include "caml/signals.h"
static value raise_if_exception(value res)
{
if (Is_exception_result(res)) {
if (Caml_state->raising_async_exn) {
Caml_state->raising_async_exn = 0;
caml_raise_async(Extract_exception(res));
} else {
caml_raise(Extract_exception(res));
}
}
return res;
}
#ifndef NATIVE_CODE
/* Bytecode callbacks */
#include "caml/codefrag.h"
#include "caml/interp.h"
#include "caml/instruct.h"
#include "caml/fix_code.h"
#include "caml/stacks.h"
CAMLexport int caml_callback_depth = 0;
static opcode_t callback_code[] = { ACC, 0, APPLY, 0, POP, 1, STOP };
static int callback_code_inited = 0;
static void init_callback_code(void)
{
caml_register_code_fragment((char *) callback_code,
(char *) callback_code + sizeof(callback_code),
DIGEST_IGNORE, NULL);
#ifdef THREADED_CODE
caml_thread_code(callback_code, sizeof(callback_code));
#endif
callback_code_inited = 1;
}
/* Functions that return all exceptions, including asynchronous ones */
static value caml_callbackN_exn0(value closure, int narg, value args[])
{
int i;
value res;
CAMLassert(narg + 4 <= 256);
Caml_state->extern_sp -= narg + 4;
for (i = 0; i < narg; i++) Caml_state->extern_sp[i] = args[i]; /* arguments */
Caml_state->extern_sp[narg] = (value)(callback_code + 4); /* return address */
Caml_state->extern_sp[narg + 1] = Val_unit; /* environment */
Caml_state->extern_sp[narg + 2] = Val_long(0); /* extra args */
Caml_state->extern_sp[narg + 3] = closure;
if (!callback_code_inited) init_callback_code();
callback_code[1] = narg + 3;
callback_code[3] = narg;
res = caml_interprete(callback_code, sizeof(callback_code));
if (Is_exception_result(res)) Caml_state->extern_sp += narg + 4; /* PR#3419 */
return res;
}
CAMLexport value caml_callbackN_exn(value closure, int narg, value args[])
{
value res = caml_callbackN_exn0(closure, narg, args);
Caml_state->raising_async_exn = 0;
return res;
}
CAMLexport value caml_callback_exn(value closure, value arg1)
{
value res, arg[1];
arg[0] = arg1;
res = caml_callbackN_exn0(closure, 1, arg);
Caml_state->raising_async_exn = 0;
return res;
}
CAMLexport value caml_callback2_exn(value closure, value arg1, value arg2)
{
value res, arg[2];
arg[0] = arg1;
arg[1] = arg2;
res = caml_callbackN_exn0(closure, 2, arg);
Caml_state->raising_async_exn = 0;
return res;
}
CAMLexport value caml_callback3_exn(value closure,
value arg1, value arg2, value arg3)
{
value res, arg[3];
arg[0] = arg1;
arg[1] = arg2;
arg[2] = arg3;
res = caml_callbackN_exn0(closure, 3, arg);
Caml_state->raising_async_exn = 0;
return res;
}
/* Functions that propagate all exceptions, with any asynchronous exceptions
also being propagated asynchronously. */
CAMLexport value caml_callbackN(value closure, int narg, value args[])
{
return raise_if_exception(caml_callbackN_exn0(closure, narg, args));
}
CAMLexport value caml_callback(value closure, value arg1)
{
value arg[1];
arg[0] = arg1;
return caml_callbackN(closure, 1, arg);
}
CAMLexport value caml_callback2(value closure, value arg1, value arg2)
{
value arg[2];
arg[0] = arg1;
arg[1] = arg2;
return caml_callbackN(closure, 2, arg);
}
CAMLexport value caml_callback3(value closure,
value arg1, value arg2, value arg3)
{
value arg[3];
arg[0] = arg1;
arg[1] = arg2;
arg[2] = arg3;
return caml_callbackN(closure, 3, arg);
}
#else
/* Native-code callbacks. */
typedef value (callback_stub)(caml_domain_state* state, value closure,
value* args);
callback_stub caml_callback_asm, caml_callback2_asm, caml_callback3_asm;
static value callback(value closure, value arg)
{
return caml_callback_asm(Caml_state, closure, &arg);
}
static value callback2(value closure, value arg1, value arg2)
{
value args[] = {arg1, arg2};
return caml_callback2_asm(Caml_state, closure, args);
}
static value callback3(value closure, value arg1, value arg2, value arg3)
{
value args[] = {arg1, arg2, arg3};
return caml_callback3_asm(Caml_state, closure, args);
}
static value callbackN(value closure, int narg, value args[])
{
CAMLparam1 (closure);
CAMLxparamN (args, narg);
CAMLlocal1 (res);
int i;
res = closure;
for (i = 0; i < narg; /*nothing*/) {
/* Pass as many arguments as possible */
switch (narg - i) {
case 1:
res = callback(res, args[i]);
if (Is_exception_result(res)) CAMLreturn (res);
i += 1;
break;
case 2:
res = callback2(res, args[i], args[i + 1]);
if (Is_exception_result(res)) CAMLreturn (res);
i += 2;
break;
default:
res = callback3(res, args[i], args[i + 1], args[i + 2]);
if (Is_exception_result(res)) CAMLreturn (res);
i += 3;
break;
}
}
CAMLreturn (res);
}
/* Functions that return all exceptions, including asynchronous ones */
CAMLexport value caml_callback_exn(value closure, value arg)
{
value res = callback(closure, arg);
Caml_state->raising_async_exn = 0;
return res;
}
CAMLexport value caml_callback2_exn(value closure, value arg1, value arg2)
{
value res = callback2(closure, arg1, arg2);
Caml_state->raising_async_exn = 0;
return res;
}
CAMLexport value caml_callback3_exn(value closure, value arg1, value arg2,
value arg3)
{
value res = callback3(closure, arg1, arg2, arg3);
Caml_state->raising_async_exn = 0;
return res;
}
CAMLexport value caml_callbackN_exn(value closure, int narg, value args[])
{
value res = callbackN(closure, narg, args);
Caml_state->raising_async_exn = 0;
return res;
}
/* Functions that propagate all exceptions, with any asynchronous exceptions
also being propagated asynchronously. */
CAMLexport value caml_callback (value closure, value arg)
{
return raise_if_exception(callback(closure, arg));
}
CAMLexport value caml_callback2 (value closure, value arg1, value arg2)
{
return raise_if_exception(callback2(closure, arg1, arg2));
}
CAMLexport value caml_callback3 (value closure, value arg1, value arg2,
value arg3)
{
return raise_if_exception(callback3(closure, arg1, arg2, arg3));
}
CAMLexport value caml_callbackN (value closure, int narg, value args[])
{
return raise_if_exception(callbackN(closure, narg, args));
}
#endif
CAMLprim value caml_with_async_exns(value body_callback)
{
value res;
res = caml_callback_exn(body_callback, Val_unit);
/* raised as a normal exn, even if it was asynchronous */
if (Is_exception_result(res)) {
/* Drain the queue of pending actions. We may need to do
this several times if some raise */
do {
res = Extract_exception(res);
res = caml_process_pending_actions_with_root_exn(res);
} while (Is_exception_result(res));
caml_raise(res);
}
return res;
}
/* Naming of OCaml values */
struct named_value {
value val;
struct named_value * next;
char name[1];
};
#define Named_value_size 13
static struct named_value * named_value_table[Named_value_size] = { NULL, };
static unsigned int hash_value_name(char const *name)
{
unsigned int h;
for (h = 0; *name != 0; name++) h = h * 19 + *name;
return h % Named_value_size;
}
CAMLprim value caml_register_named_value(value vname, value val)
{
struct named_value * nv;
const char * name = String_val(vname);
size_t namelen = strlen(name);
unsigned int h = hash_value_name(name);
for (nv = named_value_table[h]; nv != NULL; nv = nv->next) {
if (strcmp(name, nv->name) == 0) {
caml_modify_generational_global_root(&nv->val, val);
return Val_unit;
}
}
nv = (struct named_value *)
caml_stat_alloc(sizeof(struct named_value) + namelen);
memcpy(nv->name, name, namelen + 1);
nv->val = val;
nv->next = named_value_table[h];
named_value_table[h] = nv;
caml_register_generational_global_root(&nv->val);
return Val_unit;
}
CAMLexport const value * caml_named_value(char const *name)
{
struct named_value * nv;
for (nv = named_value_table[hash_value_name(name)];
nv != NULL;
nv = nv->next) {
if (strcmp(name, nv->name) == 0) return &nv->val;
}
return NULL;
}
CAMLexport void caml_iterate_named_values(caml_named_action f)
{
int i;
for(i = 0; i < Named_value_size; i++){
struct named_value * nv;
for (nv = named_value_table[i]; nv != NULL; nv = nv->next) {
f( &nv->val, nv->name );
}
}
}