forked from ocaml/ocaml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspacetime_nat.c
1160 lines (973 loc) · 36.3 KB
/
spacetime_nat.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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**************************************************************************/
/* */
/* OCaml */
/* */
/* Mark Shinwell and Leo White, Jane Street Europe */
/* */
/* Copyright 2013--2016, Jane Street Group, LLC */
/* */
/* 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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <math.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
#include "caml/config.h"
#ifdef HAS_UNISTD
#include <unistd.h>
#endif
#ifdef _WIN32
#include <process.h> /* for _getpid */
#include <direct.h> /* for _wgetcwd */
#endif
#include "caml/alloc.h"
#include "caml/backtrace_prim.h"
#include "caml/fail.h"
#include "caml/gc.h"
#include "caml/intext.h"
#include "caml/major_gc.h"
#include "caml/memory.h"
#include "caml/minor_gc.h"
#include "caml/misc.h"
#include "caml/mlvalues.h"
#include "caml/osdeps.h"
#include "caml/roots.h"
#include "caml/signals.h"
#include "caml/stack.h"
#include "caml/sys.h"
#include "caml/spacetime.h"
#ifdef WITH_SPACETIME
/* We force "noinline" in certain places to be sure we know how many
frames there will be on the stack. */
#ifdef _MSC_VER
#define NOINLINE __declspec(noinline)
#else
#define NOINLINE __attribute__((noinline))
#endif
#ifdef HAS_LIBUNWIND
#define UNW_LOCAL_ONLY
#include "libunwind.h"
#endif
static int automatic_snapshots = 0;
static double snapshot_interval = 0.0;
static double next_snapshot_time = 0.0;
static struct channel *snapshot_channel;
static int pid_when_snapshot_channel_opened;
extern value caml_spacetime_debug(value);
static char* start_of_free_node_block;
static char* end_of_free_node_block;
typedef struct per_thread {
value* trie_node_root;
value* finaliser_trie_node_root;
struct per_thread* next;
} per_thread;
/* List of tries corresponding to threads that have been created. */
/* CR-soon mshinwell: just include the main trie in this list. */
static per_thread* per_threads = NULL;
static int num_per_threads = 0;
/* [caml_spacetime_shapes] is defined in the startup file. */
extern uint64_t* caml_spacetime_shapes;
uint64_t** caml_spacetime_static_shape_tables = NULL;
shape_table* caml_spacetime_dynamic_shape_tables = NULL;
static uintnat caml_spacetime_profinfo = (uintnat) 0;
value caml_spacetime_trie_root = Val_unit;
value* caml_spacetime_trie_node_ptr = &caml_spacetime_trie_root;
static value caml_spacetime_finaliser_trie_root_main_thread = Val_unit;
value* caml_spacetime_finaliser_trie_root
= &caml_spacetime_finaliser_trie_root_main_thread;
/* CR-someday mshinwell: think about thread safety of the manipulation of
this list for multicore */
allocation_point* caml_all_allocation_points = NULL;
static const uintnat chunk_size = 1024 * 1024;
#ifdef _WIN32
#define strdup_os wcsdup
#else
#define strdup_os strdup
#endif
static void reinitialise_free_node_block(void)
{
size_t index;
start_of_free_node_block = (char*) caml_stat_alloc_noexc(chunk_size);
end_of_free_node_block = start_of_free_node_block + chunk_size;
for (index = 0; index < chunk_size / sizeof(value); index++) {
((value*) start_of_free_node_block)[index] = Val_unit;
}
}
#ifndef O_BINARY
#define O_BINARY 0
#endif
enum {
FEATURE_CALL_COUNTS = 1,
} features;
static uint16_t version_number = 0;
static uint32_t magic_number_base = 0xace00ace;
static void caml_spacetime_write_magic_number_internal(struct channel* chan)
{
value magic_number;
uint16_t features = 0;
#ifdef ENABLE_CALL_COUNTS
features |= FEATURE_CALL_COUNTS;
#endif
magic_number =
Val_long(((uint64_t) magic_number_base)
| (((uint64_t) version_number) << 32)
| (((uint64_t) features) << 48));
Lock(chan);
caml_output_val(chan, magic_number, Val_long(0));
Unlock(chan);
}
CAMLprim value caml_spacetime_write_magic_number(value v_channel)
{
caml_spacetime_write_magic_number_internal(Channel(v_channel));
return Val_unit;
}
static char_os* automatic_snapshot_dir;
static void open_snapshot_channel(void)
{
int fd;
char_os filename[8192];
int pid;
int filename_len = sizeof(filename)/sizeof(char_os);
#ifdef _WIN32
pid = _getpid();
#else
pid = getpid();
#endif
snprintf_os(filename, filename_len, T("%s/spacetime-%d"),
automatic_snapshot_dir, pid);
filename[filename_len-1] = '\0';
fd = open_os(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
if (fd == -1) {
automatic_snapshots = 0;
}
else {
snapshot_channel = caml_open_descriptor_out(fd);
snapshot_channel->flags |= CHANNEL_FLAG_BLOCKING_WRITE;
pid_when_snapshot_channel_opened = pid;
caml_spacetime_write_magic_number_internal(snapshot_channel);
}
}
static void maybe_reopen_snapshot_channel(void)
{
/* This function should be used before writing to the automatic snapshot
channel. It detects whether we have forked since the channel was opened.
If so, we close the old channel (ignoring any errors just in case the
old fd has been closed, e.g. in a double-fork situation where the middle
process has a loop to manually close all fds and no Spacetime snapshot
was written during that time) and then open a new one. */
int pid;
#ifdef _WIN32
pid = _getpid();
#else
pid = getpid();
#endif
if (pid != pid_when_snapshot_channel_opened) {
caml_close_channel(snapshot_channel);
open_snapshot_channel();
}
}
extern void caml_spacetime_automatic_save(void);
void caml_spacetime_initialize(void)
{
/* Note that this is called very early (even prior to GC initialisation). */
char_os *ap_interval;
reinitialise_free_node_block();
caml_spacetime_static_shape_tables = &caml_spacetime_shapes;
ap_interval = caml_secure_getenv (T("OCAML_SPACETIME_INTERVAL"));
if (ap_interval != NULL) {
unsigned int interval = 0;
sscanf_os(ap_interval, T("%u"), &interval);
if (interval != 0) {
double time;
char_os cwd[4096];
char_os* user_specified_automatic_snapshot_dir;
int dir_ok = 1;
user_specified_automatic_snapshot_dir =
caml_secure_getenv(T("OCAML_SPACETIME_SNAPSHOT_DIR"));
if (user_specified_automatic_snapshot_dir == NULL) {
#if defined(HAS_GETCWD)
if (getcwd_os(cwd, sizeof(cwd)/sizeof(char_os)) == NULL) {
dir_ok = 0;
}
#else
dir_ok = 0;
#endif
if (dir_ok) {
automatic_snapshot_dir = strdup_os(cwd);
}
}
else {
automatic_snapshot_dir =
strdup_os(user_specified_automatic_snapshot_dir);
}
if (dir_ok) {
automatic_snapshots = 1;
open_snapshot_channel();
if (automatic_snapshots) {
#ifdef SIGINT
/* Catch interrupt so that the profile can be completed.
We do this by marking the signal as handled without
specifying an actual handler. This causes the signal
to be handled by a call to exit. */
caml_set_signal_action(SIGINT, 2);
#endif
snapshot_interval = interval / 1e3;
time = caml_sys_time_unboxed(Val_unit);
next_snapshot_time = time + snapshot_interval;
atexit(&caml_spacetime_automatic_save);
}
}
}
}
}
void caml_spacetime_register_shapes(void* dynlinked_table)
{
shape_table* table;
table = (shape_table*) caml_stat_alloc_noexc(sizeof(shape_table));
if (table == NULL) {
fprintf(stderr, "Out of memory whilst registering shape table");
abort();
}
table->table = (uint64_t*) dynlinked_table;
table->next = caml_spacetime_dynamic_shape_tables;
caml_spacetime_dynamic_shape_tables = table;
}
CAMLprim value caml_spacetime_trie_is_initialized (value v_unit)
{
return (caml_spacetime_trie_root == Val_unit) ? Val_false : Val_true;
}
CAMLprim value caml_spacetime_get_trie_root (value v_unit)
{
return caml_spacetime_trie_root;
}
void caml_spacetime_register_thread(
value* trie_node_root, value* finaliser_trie_node_root)
{
per_thread* thr;
thr = (per_thread*) caml_stat_alloc_noexc(sizeof(per_thread));
if (thr == NULL) {
fprintf(stderr, "Out of memory while registering thread for profiling\n");
abort();
}
thr->next = per_threads;
per_threads = thr;
thr->trie_node_root = trie_node_root;
thr->finaliser_trie_node_root = finaliser_trie_node_root;
/* CR-soon mshinwell: record thread ID (and for the main thread too) */
num_per_threads++;
}
static void caml_spacetime_save_event_internal (value v_time_opt,
struct channel* chan,
value v_event_name)
{
value v_time;
double time_override = 0.0;
int use_time_override = 0;
if (Is_block(v_time_opt)) {
time_override = Double_field(Field(v_time_opt, 0), 0);
use_time_override = 1;
}
v_time = caml_spacetime_timestamp(time_override, use_time_override);
Lock(chan);
caml_output_val(chan, Val_long(2), Val_long(0));
caml_output_val(chan, v_event_name, Val_long(0));
caml_extern_allow_out_of_heap = 1;
caml_output_val(chan, v_time, Val_long(0));
caml_extern_allow_out_of_heap = 0;
Unlock(chan);
caml_stat_free(Hp_val(v_time));
}
CAMLprim value caml_spacetime_save_event (value v_time_opt,
value v_channel,
value v_event_name)
{
struct channel* chan = Channel(v_channel);
caml_spacetime_save_event_internal(v_time_opt, chan, v_event_name);
return Val_unit;
}
void save_trie (struct channel *chan, double time_override,
int use_time_override)
{
value v_time, v_frames, v_shapes;
/* CR-someday mshinwell: The commented-out changes here are for multicore,
where we think we should have one trie per domain. */
/* int num_marshalled = 0;
per_thread* thr = per_threads; */
Lock(chan);
caml_output_val(chan, Val_long(1), Val_long(0));
v_time = caml_spacetime_timestamp(time_override, use_time_override);
v_frames = caml_spacetime_frame_table();
v_shapes = caml_spacetime_shape_table();
caml_extern_allow_out_of_heap = 1;
caml_output_val(chan, v_time, Val_long(0));
caml_output_val(chan, v_frames, Val_long(0));
caml_output_val(chan, v_shapes, Val_long(0));
caml_extern_allow_out_of_heap = 0;
caml_output_val(chan, Val_long(1) /* Val_long(num_per_threads + 1) */,
Val_long(0));
/* Marshal both the main and finaliser tries, for all threads that have
been created, to an [out_channel]. This can be done by using the
extern.c code as usual, since the trie looks like standard OCaml values;
but we must allow it to traverse outside the heap. */
caml_extern_allow_out_of_heap = 1;
caml_output_val(chan, caml_spacetime_trie_root, Val_long(0));
caml_output_val(chan,
caml_spacetime_finaliser_trie_root_main_thread, Val_long(0));
/* while (thr != NULL) {
caml_output_val(chan, *(thr->trie_node_root), Val_long(0));
caml_output_val(chan, *(thr->finaliser_trie_node_root),
Val_long(0));
thr = thr->next;
num_marshalled++;
}
CAMLassert(num_marshalled == num_per_threads); */
caml_extern_allow_out_of_heap = 0;
Unlock(chan);
}
CAMLprim value caml_spacetime_save_trie (value v_time_opt, value v_channel)
{
struct channel* channel = Channel(v_channel);
double time_override = 0.0;
int use_time_override = 0;
if (Is_block(v_time_opt)) {
time_override = Double_field(Field(v_time_opt, 0), 0);
use_time_override = 1;
}
save_trie(channel, time_override, use_time_override);
return Val_unit;
}
c_node_type caml_spacetime_classify_c_node(c_node* node)
{
return (node->pc & 2) ? CALL : ALLOCATION;
}
c_node* caml_spacetime_c_node_of_stored_pointer(value node_stored)
{
CAMLassert(node_stored == Val_unit || Is_c_node(node_stored));
return (node_stored == Val_unit) ? NULL : (c_node*) Hp_val(node_stored);
}
c_node* caml_spacetime_c_node_of_stored_pointer_not_null(
value node_stored)
{
CAMLassert(Is_c_node(node_stored));
return (c_node*) Hp_val(node_stored);
}
value caml_spacetime_stored_pointer_of_c_node(c_node* c_node)
{
value node;
CAMLassert(c_node != NULL);
node = Val_hp(c_node);
CAMLassert(Is_c_node(node));
return node;
}
#ifdef HAS_LIBUNWIND
static int pc_inside_c_node_matches(c_node* node, void* pc)
{
return Decode_c_node_pc(node->pc) == pc;
}
#endif
static value allocate_uninitialized_ocaml_node(int size_including_header)
{
void* node;
uintnat size;
CAMLassert(size_including_header >= 3);
node = caml_stat_alloc(sizeof(uintnat) * size_including_header);
size = size_including_header * sizeof(value);
node = (void*) start_of_free_node_block;
if (end_of_free_node_block - start_of_free_node_block < size) {
reinitialise_free_node_block();
node = (void*) start_of_free_node_block;
CAMLassert(end_of_free_node_block - start_of_free_node_block >= size);
}
start_of_free_node_block += size;
/* We don't currently rely on [uintnat] alignment, but we do need some
alignment, so just be sure. */
CAMLassert (((uintnat) node) % sizeof(uintnat) == 0);
return Val_hp(node);
}
static value find_tail_node(value node, void* callee)
{
/* Search the tail chain within [node] (which corresponds to an invocation
of a caller of [callee]) to determine whether it contains a tail node
corresponding to [callee]. Returns any such node, or [Val_unit] if no
such node exists. */
value starting_node;
value pc;
value found = Val_unit;
starting_node = node;
pc = Encode_node_pc(callee);
do {
CAMLassert(Is_ocaml_node(node));
if (Node_pc(node) == pc) {
found = node;
}
else {
node = Tail_link(node);
}
} while (found == Val_unit && starting_node != node);
return found;
}
CAMLprim value caml_spacetime_allocate_node(
int size_including_header, void* pc, value* node_hole)
{
value node;
value caller_node = Val_unit;
node = *node_hole;
/* The node hole should either contain [Val_unit], indicating that this
function was not tail called and we have not been to this point in the
trie before; or it should contain a value encoded using
[Encoded_tail_caller_node] that points at the node of a caller
that tail called the current function. (Such a value is necessary to
be able to find the start of the caller's node, and hence its tail
chain, so we as a tail-called callee can link ourselves in.) */
CAMLassert(Is_tail_caller_node_encoded(node));
if (node != Val_unit) {
value tail_node;
/* The callee was tail called. Find whether there already exists a node
for it in the tail call chain within the caller's node. The caller's
node must always be an OCaml node. */
caller_node = Decode_tail_caller_node(node);
tail_node = find_tail_node(caller_node, pc);
if (tail_node != Val_unit) {
/* This tail calling sequence has happened before; just fill the hole
with the existing node and return. */
*node_hole = tail_node;
return 0; /* indicates an existing node was returned */
}
}
node = allocate_uninitialized_ocaml_node(size_including_header);
Hd_val(node) =
Make_header(size_including_header - 1, OCaml_node_tag, Caml_black);
CAMLassert((((uintnat) pc) % 1) == 0);
Node_pc(node) = Encode_node_pc(pc);
/* If the callee was tail called, then the tail link field will link this
new node into an existing tail chain. Otherwise, it is initialized with
the empty tail chain, i.e. the one pointing directly at [node]. */
if (caller_node == Val_unit) {
Tail_link(node) = node;
}
else {
Tail_link(node) = Tail_link(caller_node);
Tail_link(caller_node) = node;
}
/* The callee node pointers for direct tail call points are
initialized from code emitted by the OCaml compiler. This is done to
avoid having to pass this function a description of which nodes are
direct tail call points. (We cannot just count them and put them at the
beginning of the node because we need the indexes of elements within the
node during instruction selection before we have found all call points.)
All other fields have already been initialised by
[reinitialise_free_node_block].
*/
*node_hole = node;
return 1; /* indicates a new node was created */
}
static c_node* allocate_c_node(void)
{
c_node* node;
size_t index;
node = (c_node*) start_of_free_node_block;
if (end_of_free_node_block - start_of_free_node_block < sizeof(c_node)) {
reinitialise_free_node_block();
node = (c_node*) start_of_free_node_block;
CAMLassert(end_of_free_node_block - start_of_free_node_block
>= sizeof(c_node));
}
start_of_free_node_block += sizeof(c_node);
CAMLassert((sizeof(c_node) % sizeof(uintnat)) == 0);
/* CR-soon mshinwell: remove this and pad the structure properly */
for (index = 0; index < sizeof(c_node) / sizeof(value); index++) {
((value*) node)[index] = Val_unit;
}
node->gc_header =
Make_header(sizeof(c_node)/sizeof(uintnat) - 1, C_node_tag, Caml_black);
node->data.call.callee_node = Val_unit;
node->data.call.call_count = Val_long(0);
node->next = Val_unit;
return node;
}
/* Since a given indirect call site either always yields tail calls or
always yields non-tail calls, the output of
[caml_spacetime_indirect_node_hole_ptr] is uniquely determined by its
first two arguments (the callee and the node hole). We cache these
to increase performance of recursive functions containing an indirect
call (e.g. [List.map] when not inlined). */
static void* last_indirect_node_hole_ptr_callee;
static value* last_indirect_node_hole_ptr_node_hole;
static call_point* last_indirect_node_hole_ptr_result;
CAMLprim value* caml_spacetime_indirect_node_hole_ptr
(void* callee, value* node_hole, value caller_node)
{
/* Find the address of the node hole for an indirect call to [callee].
If [caller_node] is not [Val_unit], it is a pointer to the caller's
node, and indicates that this is a tail call site. */
c_node* c_node;
value encoded_callee;
if (callee == last_indirect_node_hole_ptr_callee
&& node_hole == last_indirect_node_hole_ptr_node_hole) {
#ifdef ENABLE_CALL_COUNTS
last_indirect_node_hole_ptr_result->call_count =
Val_long (Long_val (last_indirect_node_hole_ptr_result->call_count) + 1);
#endif
return &(last_indirect_node_hole_ptr_result->callee_node);
}
last_indirect_node_hole_ptr_callee = callee;
last_indirect_node_hole_ptr_node_hole = node_hole;
encoded_callee = Encode_c_node_pc_for_call(callee);
while (*node_hole != Val_unit) {
CAMLassert(((uintnat) *node_hole) % sizeof(value) == 0);
c_node = caml_spacetime_c_node_of_stored_pointer_not_null(*node_hole);
CAMLassert(c_node != NULL);
CAMLassert(caml_spacetime_classify_c_node(c_node) == CALL);
if (c_node->pc == encoded_callee) {
#ifdef ENABLE_CALL_COUNTS
c_node->data.call.call_count =
Val_long (Long_val(c_node->data.call.call_count) + 1);
#endif
last_indirect_node_hole_ptr_result = &(c_node->data.call);
return &(last_indirect_node_hole_ptr_result->callee_node);
}
else {
node_hole = &c_node->next;
}
}
c_node = allocate_c_node();
c_node->pc = encoded_callee;
if (caller_node != Val_unit) {
/* This is a tail call site.
Perform the initialization equivalent to that emitted by
[Spacetime.code_for_function_prologue] for direct tail call
sites. */
c_node->data.call.callee_node = Encode_tail_caller_node(caller_node);
}
*node_hole = caml_spacetime_stored_pointer_of_c_node(c_node);
CAMLassert(((uintnat) *node_hole) % sizeof(value) == 0);
CAMLassert(*node_hole != Val_unit);
#ifdef ENABLE_CALL_COUNTS
c_node->data.call.call_count =
Val_long (Long_val(c_node->data.call.call_count) + 1);
#endif
last_indirect_node_hole_ptr_result = &(c_node->data.call);
return &(last_indirect_node_hole_ptr_result->callee_node);
}
/* Some notes on why caml_call_gc doesn't need a distinguished node.
(Remember that thread switches are irrelevant here because each thread
has its own trie.)
caml_call_gc only invokes OCaml functions in the following circumstances:
1. running an OCaml finaliser;
2. executing an OCaml signal handler;
3. executing memprof callbacks.
All of these are done on the finaliser trie. Furthermore, all of
these invocations start via caml_callback; the code in this file for
handling that (caml_spacetime_c_to_ocaml) correctly copes with that by
attaching a single "caml_start_program" node that can cope with any
number of indirect OCaml calls from that point.
caml_call_gc may also invoke C functions that cause allocation. All of
these (assuming libunwind support is present) will cause a chain of
c_node structures to be attached to the trie, starting at the node hole
passed to caml_call_gc from OCaml code. These structures are extensible
and can thus accommodate any number of C backtraces leading from
caml_call_gc.
*/
/* CR-soon mshinwell: it might in fact be the case now that nothing called
from caml_call_gc will do any allocation that ends up on the trie. We
can revisit this after the first release. */
static NOINLINE void* find_trie_node_from_libunwind(int for_allocation,
uintnat wosize, struct ext_table** cached_frames)
{
#ifdef HAS_LIBUNWIND
/* Given that [Caml_state->last_return_address] is the most recent call site
in OCaml code, and that we are now in C (or other) code called from that
site, obtain a backtrace using libunwind and graft the most recent
portion (everything back to but not including [last_return_address])
onto the trie. See the important comment below regarding the fact that
call site, and not callee, addresses are recorded during this process.
If [for_allocation] is non-zero, the final node recorded will be for
an allocation, and the returned pointer is to the allocation node.
Otherwise, no node is recorded for the innermost frame, and the
returned pointer is a pointer to the *node hole* where a node for that
frame should be attached.
If [for_allocation] is non-zero then [wosize] must give the size in
words, excluding the header, of the value being allocated.
If [cached_frames != NULL] then:
1. If [*cached_frames] is NULL then save the captured backtrace in a
newly-allocated table and store the pointer to that table in
[*cached_frames];
2. Otherwise use [*cached_frames] as the unwinding information.
The intention is that when the context is known (e.g. a function such
as [caml_make_vect] known to have been directly invoked from OCaml),
we can avoid expensive calls to libunwind.
*/
unw_cursor_t cur;
unw_context_t ctx;
int ret;
int innermost_frame;
int frame;
static struct ext_table frames_local;
struct ext_table* frames;
static int ext_table_initialised = 0;
int have_frames_already = 0;
value* node_hole;
c_node* node = NULL;
int initial_table_size = 1000;
int must_initialise_node_for_allocation = 0;
if (!cached_frames) {
if (!ext_table_initialised) {
caml_ext_table_init(&frames_local, initial_table_size);
ext_table_initialised = 1;
}
else {
caml_ext_table_clear(&frames_local, 0);
}
frames = &frames_local;
} else {
if (*cached_frames) {
frames = *cached_frames;
have_frames_already = 1;
}
else {
frames =
(struct ext_table*) caml_stat_alloc_noexc(sizeof(struct ext_table));
if (!frames) {
caml_fatal_error("not enough memory for ext_table allocation");
}
caml_ext_table_init(frames, initial_table_size);
*cached_frames = frames;
}
}
if (!have_frames_already) {
/* Get the stack backtrace as far as [Caml_state->last_return_address]. */
ret = unw_getcontext(&ctx);
if (ret != UNW_ESUCCESS) {
return NULL;
}
ret = unw_init_local(&cur, &ctx);
if (ret != UNW_ESUCCESS) {
return NULL;
}
while ((ret = unw_step(&cur)) > 0) {
unw_word_t ip;
unw_get_reg(&cur, UNW_REG_IP, &ip);
if (Caml_state->last_return_address == (uintnat) ip) {
break;
}
else {
/* Inlined some of [caml_ext_table_add] for speed. */
if (frames->size < frames->capacity) {
frames->contents[frames->size++] = (void*) ip;
} else {
caml_ext_table_add(frames, (void*) ip);
}
}
}
}
/* We always need to ignore the frames for:
#0 find_trie_node_from_libunwind
#1 caml_spacetime_c_to_ocaml
Further, if this is not an allocation point, we should not create the
node for the current C function that triggered us (i.e. frame #2). */
innermost_frame = for_allocation ? 1 : 2;
if (frames->size - 1 < innermost_frame) {
/* Insufficiently many frames (maybe no frames) returned from
libunwind; just don't do anything. */
return NULL;
}
node_hole = caml_spacetime_trie_node_ptr;
/* Note that if [node_hole] is filled, then it must point to a C node,
since it is not possible for there to be a call point in an OCaml
function that sometimes calls C and sometimes calls OCaml. */
for (frame = frames->size - 1; frame >= innermost_frame; frame--) {
c_node_type expected_type;
void* pc = frames->contents[frame];
CAMLassert (pc != (void*) Caml_state->last_return_address);
if (!for_allocation) {
expected_type = CALL;
}
else {
expected_type = (frame > innermost_frame ? CALL : ALLOCATION);
}
if (*node_hole == Val_unit) {
node = allocate_c_node();
/* Note: for CALL nodes, the PC is the program counter at each call
site. We do not store program counter addresses of the start of
callees, unlike for OCaml nodes. This means that some trie nodes
will become conflated. These can be split during post-processing by
working out which function each call site was in. */
node->pc = (expected_type == CALL ? Encode_c_node_pc_for_call(pc)
: Encode_c_node_pc_for_alloc_point(pc));
*node_hole = caml_spacetime_stored_pointer_of_c_node(node);
if (expected_type == ALLOCATION) {
must_initialise_node_for_allocation = 1;
}
}
else {
c_node* prev;
int found = 0;
node = caml_spacetime_c_node_of_stored_pointer_not_null(*node_hole);
CAMLassert(node != NULL);
CAMLassert(node->next == Val_unit
|| (((uintnat) (node->next)) % sizeof(value) == 0));
prev = NULL;
while (!found && node != NULL) {
if (caml_spacetime_classify_c_node(node) == expected_type
&& pc_inside_c_node_matches(node, pc)) {
found = 1;
}
else {
prev = node;
node = caml_spacetime_c_node_of_stored_pointer(node->next);
}
}
if (!found) {
CAMLassert(prev != NULL);
node = allocate_c_node();
node->pc = (expected_type == CALL ? Encode_c_node_pc_for_call(pc)
: Encode_c_node_pc_for_alloc_point(pc));
if (expected_type == ALLOCATION) {
must_initialise_node_for_allocation = 1;
}
prev->next = caml_spacetime_stored_pointer_of_c_node(node);
}
}
CAMLassert(node != NULL);
CAMLassert(caml_spacetime_classify_c_node(node) == expected_type);
CAMLassert(pc_inside_c_node_matches(node, pc));
node_hole = &node->data.call.callee_node;
}
if (must_initialise_node_for_allocation) {
caml_spacetime_profinfo++;
if (caml_spacetime_profinfo > PROFINFO_MASK) {
/* Profiling counter overflow. */
caml_spacetime_profinfo = PROFINFO_MASK;
}
node->data.allocation.profinfo =
Make_header_with_profinfo(
/* "-1" because [c_node] has the GC header as its first
element. */
offsetof(c_node, data.allocation.count)/sizeof(value) - 1,
Infix_tag,
Caml_black,
caml_spacetime_profinfo);
node->data.allocation.count = Val_long(0);
/* Add the new allocation point into the linked list of all allocation
points. */
if (caml_all_allocation_points != NULL) {
node->data.allocation.next =
(value) &caml_all_allocation_points->count;
} else {
node->data.allocation.next = Val_unit;
}
caml_all_allocation_points = &node->data.allocation;
}
if (for_allocation) {
CAMLassert(caml_spacetime_classify_c_node(node) == ALLOCATION);
CAMLassert(caml_spacetime_c_node_of_stored_pointer(node->next) != node);
CAMLassert(Profinfo_hd(node->data.allocation.profinfo) > 0);
node->data.allocation.count =
Val_long(Long_val(node->data.allocation.count) + (1 + wosize));
}
CAMLassert(node->next != (value) NULL);
return for_allocation ? (void*) node : (void*) node_hole;
#else
return NULL;
#endif
}
void caml_spacetime_c_to_ocaml(void* ocaml_entry_point,
void* identifying_pc_for_caml_start_program)
{
/* Called in [caml_start_program] and [caml_callback*] when we are about
to cross from C into OCaml. [ocaml_entry_point] is the branch target.
This situation is handled by ensuring the presence of a new OCaml node
for the callback veneer; the node contains a single indirect call point
which accumulates the [ocaml_entry_point]s.
The layout of the node is described in the "system shape table"; see
amd64.S.
*/
value node;
/* Update the trie with the current backtrace, as far back as
[Caml_state->last_return_address], and leave the node hole pointer at
the correct place for attachment of a [caml_start_program] node. */
#ifdef HAS_LIBUNWIND
value* node_temp;
node_temp = (value*) find_trie_node_from_libunwind(0, 0, NULL);
if (node_temp != NULL) {
caml_spacetime_trie_node_ptr = node_temp;
}
#endif
if (*caml_spacetime_trie_node_ptr == Val_unit) {
uintnat size_including_header;
size_including_header =
1 /* GC header */ + Node_num_header_words + Indirect_num_fields;
node = allocate_uninitialized_ocaml_node(size_including_header);
Hd_val(node) =
Make_header(size_including_header - 1, OCaml_node_tag, Caml_black);
CAMLassert((((uintnat) identifying_pc_for_caml_start_program) % 1) == 0);
Node_pc(node) = Encode_node_pc(identifying_pc_for_caml_start_program);
Tail_link(node) = node;
Indirect_pc_linked_list(node, Node_num_header_words) = Val_unit;
*caml_spacetime_trie_node_ptr = node;
}
else {
node = *caml_spacetime_trie_node_ptr;
/* If there is a node here already, it should never be an initialized
(but as yet unused) tail call point, since calls from OCaml into C
are never tail calls (and no C -> C call is marked as tail). */
CAMLassert(!Is_tail_caller_node_encoded(node));
}
CAMLassert(Is_ocaml_node(node));
CAMLassert(Decode_node_pc(Node_pc(node))
== identifying_pc_for_caml_start_program);
CAMLassert(Tail_link(node) == node);
CAMLassert(Wosize_val(node) == Node_num_header_words + Indirect_num_fields);
/* Search the node to find the node hole corresponding to the indirect
call to the OCaml function. */
caml_spacetime_trie_node_ptr =
caml_spacetime_indirect_node_hole_ptr(
ocaml_entry_point,
&Indirect_pc_linked_list(node, Node_num_header_words),
Val_unit);
CAMLassert(*caml_spacetime_trie_node_ptr == Val_unit
|| Is_ocaml_node(*caml_spacetime_trie_node_ptr));
}
extern void caml_garbage_collection(void); /* signals_nat.c */
extern void caml_array_bound_error(void); /* fail.c */