Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remote support for MC_deadlock_check() using MC_MESSAGE_DEADLOCK_CHECK IPC message
[simgrid.git] / src / mc / mc_global.c
1 /* Copyright (c) 2008-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <string.h>
8
9 #include "mc_base.h"
10
11 #ifndef _XBT_WIN32
12 #include <unistd.h>
13 #include <sys/wait.h>
14 #include <sys/time.h>
15 #endif
16
17 #include "simgrid/sg_config.h"
18 #include "../surf/surf_private.h"
19 #include "../simix/smx_private.h"
20 #include "xbt/fifo.h"
21 #include "xbt/automaton.h"
22 #include "xbt/dict.h"
23
24 #ifdef HAVE_MC
25 #include <libunwind.h>
26 #include <xbt/mmalloc.h>
27
28 #include "../xbt/mmalloc/mmprivate.h"
29 #include "mc_object_info.h"
30 #include "mc_comm_pattern.h"
31 #include "mc_request.h"
32 #include "mc_safety.h"
33 #include "mc_memory_map.h"
34 #include "mc_snapshot.h"
35 #include "mc_liveness.h"
36 #include "mc_private.h"
37 #include "mc_unw.h"
38 #endif
39 #include "mc_record.h"
40 #include "mc_protocol.h"
41 #include "mc_client.h"
42
43 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc,
44                                 "Logging specific to MC (global)");
45
46 e_mc_mode_t mc_mode;
47
48 double *mc_time = NULL;
49
50 #ifdef HAVE_MC
51 int user_max_depth_reached = 0;
52
53 /* MC global data structures */
54 mc_state_t mc_current_state = NULL;
55 char mc_replay_mode = FALSE;
56
57 __thread mc_comparison_times_t mc_comp_times = NULL;
58 __thread double mc_snapshot_comparison_time;
59 mc_stats_t mc_stats = NULL;
60 mc_global_t initial_global_state = NULL;
61 xbt_fifo_t mc_stack = NULL;
62
63 /* Liveness */
64 xbt_automaton_t _mc_property_automaton = NULL;
65
66 /* Dot output */
67 FILE *dot_output = NULL;
68 const char *colors[13];
69
70
71 /*******************************  Initialisation of MC *******************************/
72 /*********************************************************************************/
73
74 static void MC_init_dot_output()
75 {                               /* FIXME : more colors */
76
77   colors[0] = "blue";
78   colors[1] = "red";
79   colors[2] = "green3";
80   colors[3] = "goldenrod";
81   colors[4] = "brown";
82   colors[5] = "purple";
83   colors[6] = "magenta";
84   colors[7] = "turquoise4";
85   colors[8] = "gray25";
86   colors[9] = "forestgreen";
87   colors[10] = "hotpink";
88   colors[11] = "lightblue";
89   colors[12] = "tan";
90
91   dot_output = fopen(_sg_mc_dot_output_file, "w");
92
93   if (dot_output == NULL) {
94     perror("Error open dot output file");
95     xbt_abort();
96   }
97
98   fprintf(dot_output,
99           "digraph graphname{\n fixedsize=true; rankdir=TB; ranksep=.25; edge [fontsize=12]; node [fontsize=10, shape=circle,width=.5 ]; graph [resolution=20, fontsize=10];\n");
100
101 }
102
103 void MC_init()
104 {
105   MC_init_pid(getpid(), -1);
106 }
107
108 void MC_init_pid(pid_t pid, int socket)
109 {
110   if (mc_mode == MC_MODE_NONE) {
111     if (getenv(MC_ENV_SOCKET_FD)) {
112       mc_mode = MC_MODE_CLIENT;
113     } else {
114       mc_mode = MC_MODE_STANDALONE;
115     }
116   }
117
118   mc_time = xbt_new0(double, simix_process_maxpid);
119
120   /* Initialize the data structures that must be persistent across every
121      iteration of the model-checker (in RAW memory) */
122
123   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
124
125   mc_model_checker = MC_model_checker_new(pid, socket);
126
127   mc_comp_times = xbt_new0(s_mc_comparison_times_t, 1);
128
129   /* Initialize statistics */
130   mc_stats = xbt_new0(s_mc_stats_t, 1);
131   mc_stats->state_size = 1;
132
133   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0'))
134     MC_init_dot_output();
135
136   /* Init parmap */
137   //parmap = xbt_parmap_mc_new(xbt_os_get_numcores(), XBT_PARMAP_DEFAULT);
138
139   MC_SET_STD_HEAP;
140
141   if (_sg_mc_visited > 0 || _sg_mc_liveness) {
142     /* Ignore some variables from xbt/ex.h used by exception e for stacks comparison */
143     MC_ignore_local_variable("e", "*");
144     MC_ignore_local_variable("__ex_cleanup", "*");
145     MC_ignore_local_variable("__ex_mctx_en", "*");
146     MC_ignore_local_variable("__ex_mctx_me", "*");
147     MC_ignore_local_variable("__xbt_ex_ctx_ptr", "*");
148     MC_ignore_local_variable("_log_ev", "*");
149     MC_ignore_local_variable("_throw_ctx", "*");
150     MC_ignore_local_variable("ctx", "*");
151
152     MC_ignore_local_variable("self", "simcall_BODY_mc_snapshot");
153     MC_ignore_local_variable("next_cont"
154       "ext", "smx_ctx_sysv_suspend_serial");
155     MC_ignore_local_variable("i", "smx_ctx_sysv_suspend_serial");
156
157     /* Ignore local variable about time used for tracing */
158     MC_ignore_local_variable("start_time", "*");
159
160     /* Main MC state: */
161     MC_ignore_global_variable("mc_model_checker");
162     MC_ignore_global_variable("initial_communications_pattern");
163     MC_ignore_global_variable("incomplete_communications_pattern");
164     MC_ignore_global_variable("nb_comm_pattern");
165
166     /* MC __thread variables: */
167     MC_ignore_global_variable("mc_diff_info");
168     MC_ignore_global_variable("mc_comp_times");
169     MC_ignore_global_variable("mc_snapshot_comparison_time");
170
171     /* This MC state is used in MC replay as well: */
172     MC_ignore_global_variable("mc_time");
173
174     /* Static variable used for tracing */
175     MC_ignore_global_variable("counter");
176
177     /* SIMIX */
178     MC_ignore_global_variable("smx_total_comms");
179
180     if (mc_mode == MC_MODE_STANDALONE || mc_mode == MC_MODE_CLIENT) {
181       /* Those requests are handled on the client side and propagated by message
182        * to the server: */
183
184       MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double));
185
186       smx_process_t process;
187       xbt_swag_foreach(process, simix_global->process_list) {
188         MC_ignore_heap(&(process->process_hookup), sizeof(process->process_hookup));
189       }
190     }
191   }
192
193   mmalloc_set_current_heap(heap);
194
195   if (mc_mode == MC_MODE_CLIENT) {
196     // This will move somehwere else:
197     MC_client_handle_messages();
198   }
199
200 }
201
202 /*******************************  Core of MC *******************************/
203 /**************************************************************************/
204
205 static void MC_modelcheck_comm_determinism_init(void)
206 {
207   MC_init();
208
209   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
210
211   /* Create exploration stack */
212   mc_stack = xbt_fifo_new();
213
214   MC_SET_STD_HEAP;
215
216   MC_pre_modelcheck_comm_determinism();
217
218   MC_SET_MC_HEAP;
219   initial_global_state = xbt_new0(s_mc_global_t, 1);
220   initial_global_state->snapshot = MC_take_snapshot(0);
221   initial_global_state->initial_communications_pattern_done = 0;
222   initial_global_state->comm_deterministic = 1;
223   initial_global_state->send_deterministic = 1;
224   MC_SET_STD_HEAP;
225
226   MC_modelcheck_comm_determinism();
227
228   mmalloc_set_current_heap(heap);
229 }
230
231 static void MC_modelcheck_safety_init(void)
232 {
233   _sg_mc_safety = 1;
234
235   MC_init();
236
237   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
238
239   /* Create exploration stack */
240   mc_stack = xbt_fifo_new();
241
242   MC_SET_STD_HEAP;
243
244   MC_pre_modelcheck_safety();
245
246   MC_SET_MC_HEAP;
247   /* Save the initial state */
248   initial_global_state = xbt_new0(s_mc_global_t, 1);
249   initial_global_state->snapshot = MC_take_snapshot(0);
250   MC_SET_STD_HEAP;
251
252   MC_modelcheck_safety();
253
254   mmalloc_set_current_heap(heap);
255
256   xbt_abort();
257   //MC_exit();
258 }
259
260 static void MC_modelcheck_liveness_init()
261 {
262   _sg_mc_liveness = 1;
263
264   MC_init();
265
266   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
267
268   /* Create exploration stack */
269   mc_stack = xbt_fifo_new();
270
271   /* Create the initial state */
272   initial_global_state = xbt_new0(s_mc_global_t, 1);
273
274   MC_SET_STD_HEAP;
275
276   MC_pre_modelcheck_liveness();
277
278   /* We're done */
279   MC_print_statistics(mc_stats);
280   xbt_free(mc_time);
281
282   mmalloc_set_current_heap(heap);
283
284 }
285
286 void MC_do_the_modelcheck_for_real()
287 {
288
289   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
290     XBT_INFO("Check communication determinism");
291     MC_modelcheck_comm_determinism_init();
292   } else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0') {
293     if (mc_reduce_kind == e_mc_reduce_unset)
294       mc_reduce_kind = e_mc_reduce_dpor;
295     XBT_INFO("Check a safety property");
296     MC_modelcheck_safety_init();
297   } else {
298     if (mc_reduce_kind == e_mc_reduce_unset)
299       mc_reduce_kind = e_mc_reduce_none;
300     XBT_INFO("Check the liveness property %s", _sg_mc_property_file);
301     MC_automaton_load(_sg_mc_property_file);
302     MC_modelcheck_liveness_init();
303   }
304 }
305
306
307 void MC_exit(void)
308 {
309   xbt_free(mc_time);
310
311   MC_memory_exit();
312   //xbt_abort();
313 }
314
315 int MC_deadlock_check()
316 {
317   if (mc_mode == MC_MODE_SERVER) {
318     int res;
319     if ((res = MC_protocol_send_simple_message(mc_model_checker->process.socket,
320       MC_MESSAGE_DEADLOCK_CHECK)))
321       xbt_die("Could not check deadlock state: %s",strerror(res));
322     s_mc_int_message_t message;
323     ssize_t s = MC_receive_message(mc_model_checker->process.socket, &message, sizeof(message));
324     if (s == -1)
325       xbt_die("Could not receive message");
326     else if (s != sizeof(message) || message.type != MC_MESSAGE_DEADLOCK_CHECK_REPLY) {
327       xbt_die("Unexpected message, expected MC_MESSAGE_DEADLOCK_CHECK_REPLY %i %i vs %i %i",
328         (int) s, (int) message.type, (int) sizeof(message), (int) MC_MESSAGE_DEADLOCK_CHECK_REPLY
329         );
330     }
331     else
332       return message.value;
333   }
334
335   int deadlock = FALSE;
336   smx_process_t process;
337   if (xbt_swag_size(simix_global->process_list)) {
338     deadlock = TRUE;
339     xbt_swag_foreach(process, simix_global->process_list) {
340       if (MC_request_is_enabled(&process->simcall)) {
341         deadlock = FALSE;
342         break;
343       }
344     }
345   }
346   return deadlock;
347 }
348
349 void handle_comm_pattern(e_mc_call_type_t call_type, smx_simcall_t req, int value, xbt_dynar_t pattern, int backtracking) {
350
351   switch(call_type) {
352   case MC_CALL_TYPE_NONE:
353     break;
354   case MC_CALL_TYPE_SEND:
355   case MC_CALL_TYPE_RECV:
356     get_comm_pattern(pattern, req, call_type);
357     break;
358   case MC_CALL_TYPE_WAIT:
359   case MC_CALL_TYPE_WAITANY:
360     {
361       smx_synchro_t current_comm = NULL;
362       if (call_type == MC_CALL_TYPE_WAIT)
363         current_comm = simcall_comm_wait__get__comm(req);
364       else
365         current_comm = xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value, smx_synchro_t);
366       // First wait only must be considered:
367       if (current_comm->comm.refcount == 1)
368         complete_comm_pattern(pattern, current_comm, backtracking);
369       break;
370     }
371   default:
372     xbt_die("Unexpected call type %i", (int)call_type);
373   }
374   
375 }
376
377 static void MC_restore_communications_pattern(mc_state_t state) {
378   mc_list_comm_pattern_t list_process_comm;
379   unsigned int cursor, cursor2;
380   xbt_dynar_foreach(initial_communications_pattern, cursor, list_process_comm){
381     list_process_comm->index_comm = (int)xbt_dynar_get_as(state->index_comm, cursor, int);
382   }
383   mc_comm_pattern_t comm;
384   cursor = 0;
385   xbt_dynar_t initial_incomplete_process_comms, incomplete_process_comms;
386   for(int i=0; i<simix_process_maxpid; i++){
387     initial_incomplete_process_comms = xbt_dynar_get_as(incomplete_communications_pattern, i, xbt_dynar_t);
388     xbt_dynar_reset(initial_incomplete_process_comms);
389     incomplete_process_comms = xbt_dynar_get_as(state->incomplete_comm_pattern, i, xbt_dynar_t);
390     xbt_dynar_foreach(incomplete_process_comms, cursor2, comm) {
391       mc_comm_pattern_t copy_comm = xbt_new0(s_mc_comm_pattern_t, 1);
392       copy_comm->index = comm->index;
393       copy_comm->type = comm->type;
394       copy_comm->comm = comm->comm;
395       copy_comm->rdv = strdup(comm->rdv);
396       copy_comm->data_size = -1;
397       copy_comm->data = NULL;
398       if(comm->type == SIMIX_COMM_SEND){
399         copy_comm->src_proc = comm->src_proc;
400         copy_comm->src_host = comm->src_host;
401         if(comm->data != NULL){
402           copy_comm->data_size = comm->data_size;
403           copy_comm->data = xbt_malloc0(comm->data_size);
404           memcpy(copy_comm->data, comm->data, comm->data_size);
405         }
406       }else{
407         copy_comm->dst_proc = comm->dst_proc;
408         copy_comm->dst_host = comm->dst_host;
409       }
410       xbt_dynar_push(initial_incomplete_process_comms, &copy_comm);
411     }
412   }
413 }
414
415 /**
416  * \brief Re-executes from the state at position start all the transitions indicated by
417  *        a given model-checker stack.
418  * \param stack The stack with the transitions to execute.
419  * \param start Start index to begin the re-execution.
420  */
421 void MC_replay(xbt_fifo_t stack)
422 {
423   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
424
425   int value, count = 1, j;
426   char *req_str;
427   smx_simcall_t req = NULL, saved_req = NULL;
428   xbt_fifo_item_t item, start_item;
429   mc_state_t state;
430   
431   XBT_DEBUG("**** Begin Replay ****");
432
433   /* Intermediate backtracking */
434   if(_sg_mc_checkpoint > 0) {
435     start_item = xbt_fifo_get_first_item(stack);
436     state = (mc_state_t)xbt_fifo_get_item_content(start_item);
437     if(state->system_state){
438       MC_restore_snapshot(state->system_state);
439       if(_sg_mc_comms_determinism || _sg_mc_send_determinism) 
440         MC_restore_communications_pattern(state);
441       MC_SET_STD_HEAP;
442       return;
443     }
444   }
445
446
447   /* Restore the initial state */
448   MC_restore_snapshot(initial_global_state->snapshot);
449   /* At the moment of taking the snapshot the raw heap was set, so restoring
450    * it will set it back again, we have to unset it to continue  */
451   MC_SET_STD_HEAP;
452
453   start_item = xbt_fifo_get_last_item(stack);
454   
455   MC_SET_MC_HEAP;
456
457   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
458     for (j=0; j<simix_process_maxpid; j++) {
459       xbt_dynar_reset((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, j, xbt_dynar_t));
460       ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, j, mc_list_comm_pattern_t))->index_comm = 0;
461     }
462   }
463
464   MC_SET_STD_HEAP;
465
466   /* Traverse the stack from the state at position start and re-execute the transitions */
467   for (item = start_item;
468        item != xbt_fifo_get_first_item(stack);
469        item = xbt_fifo_get_prev_item(item)) {
470
471     state = (mc_state_t) xbt_fifo_get_item_content(item);
472     saved_req = MC_state_get_executed_request(state, &value);
473     
474     if (saved_req) {
475       /* because we got a copy of the executed request, we have to fetch the  
476          real one, pointed by the request field of the issuer process */
477       req = &saved_req->issuer->simcall;
478
479       /* Debug information */
480       if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
481         req_str = MC_request_to_string(req, value);
482         XBT_DEBUG("Replay: %s (%p)", req_str, state);
483         xbt_free(req_str);
484       }
485
486       /* TODO : handle test and testany simcalls */
487       e_mc_call_type_t call = MC_CALL_TYPE_NONE;
488       if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
489         call = mc_get_call_type(req);
490
491       SIMIX_simcall_handle(req, value);
492
493       MC_SET_MC_HEAP;
494       if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
495         handle_comm_pattern(call, req, value, NULL, 1);
496       MC_SET_STD_HEAP;
497       
498       MC_wait_for_requests();
499
500       count++;
501     }
502
503     /* Update statistics */
504     mc_stats->visited_states++;
505     mc_stats->executed_transitions++;
506
507   }
508
509   XBT_DEBUG("**** End Replay ****");
510   mmalloc_set_current_heap(heap);
511 }
512
513 void MC_replay_liveness(xbt_fifo_t stack)
514 {
515
516   initial_global_state->raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
517
518   xbt_fifo_item_t item;
519   mc_pair_t pair = NULL;
520   mc_state_t state = NULL;
521   smx_simcall_t req = NULL, saved_req = NULL;
522   int value, depth = 1;
523   char *req_str;
524
525   XBT_DEBUG("**** Begin Replay ****");
526
527   /* Intermediate backtracking */
528   if(_sg_mc_checkpoint > 0) {
529     item = xbt_fifo_get_first_item(stack);
530     pair = (mc_pair_t) xbt_fifo_get_item_content(item);
531     if(pair->graph_state->system_state){
532       MC_restore_snapshot(pair->graph_state->system_state);
533       MC_SET_STD_HEAP;
534       return;
535     }
536   }
537
538   /* Restore the initial state */
539   MC_restore_snapshot(initial_global_state->snapshot);
540
541   /* At the moment of taking the snapshot the raw heap was set, so restoring
542    * it will set it back again, we have to unset it to continue  */
543   if (!initial_global_state->raw_mem_set)
544     MC_SET_STD_HEAP;
545
546     /* Traverse the stack from the initial state and re-execute the transitions */
547     for (item = xbt_fifo_get_last_item(stack);
548          item != xbt_fifo_get_first_item(stack);
549          item = xbt_fifo_get_prev_item(item)) {
550
551       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
552
553       state = (mc_state_t) pair->graph_state;
554
555       if (pair->exploration_started) {
556
557         saved_req = MC_state_get_executed_request(state, &value);
558
559         if (saved_req != NULL) {
560           /* because we got a copy of the executed request, we have to fetch the
561              real one, pointed by the request field of the issuer process */
562           req = &saved_req->issuer->simcall;
563
564           /* Debug information */
565           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
566             req_str = MC_request_to_string(req, value);
567             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
568             xbt_free(req_str);
569           }
570
571         }
572
573         SIMIX_simcall_handle(req, value);
574         MC_wait_for_requests();
575       }
576
577       /* Update statistics */
578       mc_stats->visited_pairs++;
579       mc_stats->executed_transitions++;
580
581       depth++;
582       
583     }
584
585   XBT_DEBUG("**** End Replay ****");
586
587   if (initial_global_state->raw_mem_set)
588     MC_SET_MC_HEAP;
589   else
590     MC_SET_STD_HEAP;
591
592 }
593
594 /**
595  * \brief Dumps the contents of a model-checker's stack and shows the actual
596  *        execution trace
597  * \param stack The stack to dump
598  */
599 void MC_dump_stack_safety(xbt_fifo_t stack)
600 {
601   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
602
603   MC_show_stack_safety(stack);
604   
605   mc_state_t state;
606   
607   MC_SET_MC_HEAP;
608   while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
609     MC_state_delete(state, !state->in_visited_states ? 1 : 0);
610   mmalloc_set_current_heap(heap);
611 }
612
613
614 void MC_show_stack_safety(xbt_fifo_t stack)
615 {
616   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
617
618   int value;
619   mc_state_t state;
620   xbt_fifo_item_t item;
621   smx_simcall_t req;
622   char *req_str = NULL;
623
624   for (item = xbt_fifo_get_last_item(stack);
625        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
626         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
627     req = MC_state_get_executed_request(state, &value);
628     if (req) {
629       req_str = MC_request_to_string(req, value);
630       XBT_INFO("%s", req_str);
631       xbt_free(req_str);
632     }
633   }
634
635   mmalloc_set_current_heap(heap);
636 }
637
638 void MC_show_deadlock(smx_simcall_t req)
639 {
640   /*char *req_str = NULL; */
641   XBT_INFO("**************************");
642   XBT_INFO("*** DEAD-LOCK DETECTED ***");
643   XBT_INFO("**************************");
644   XBT_INFO("Locked request:");
645   /*req_str = MC_request_to_string(req);
646      XBT_INFO("%s", req_str);
647      xbt_free(req_str); */
648   XBT_INFO("Counter-example execution trace:");
649   MC_dump_stack_safety(mc_stack);
650   MC_print_statistics(mc_stats);
651 }
652
653
654 void MC_show_stack_liveness(xbt_fifo_t stack)
655 {
656   int value;
657   mc_pair_t pair;
658   xbt_fifo_item_t item;
659   smx_simcall_t req;
660   char *req_str = NULL;
661
662   for (item = xbt_fifo_get_last_item(stack);
663        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item))) : (NULL));
664        item = xbt_fifo_get_prev_item(item)) {
665     req = MC_state_get_executed_request(pair->graph_state, &value);
666     if (req && req->call != SIMCALL_NONE) {
667       req_str = MC_request_to_string(req, value);
668       XBT_INFO("%s", req_str);
669       xbt_free(req_str);
670     }
671   }
672 }
673
674
675 void MC_dump_stack_liveness(xbt_fifo_t stack)
676 {
677   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
678   mc_pair_t pair;
679   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
680     MC_pair_delete(pair);
681   mmalloc_set_current_heap(heap);
682 }
683
684
685 void MC_print_statistics(mc_stats_t stats)
686 {
687   if (stats->expanded_pairs == 0) {
688     XBT_INFO("Expanded states = %lu", stats->expanded_states);
689     XBT_INFO("Visited states = %lu", stats->visited_states);
690   } else {
691     XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
692     XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
693   }
694   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
695   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
696   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0')) {
697     fprintf(dot_output, "}\n");
698     fclose(dot_output);
699   }
700   if (initial_global_state != NULL) {
701     if (_sg_mc_comms_determinism)
702       XBT_INFO("Communication-deterministic : %s", !initial_global_state->comm_deterministic ? "No" : "Yes");
703     if (_sg_mc_send_determinism)
704       XBT_INFO("Send-deterministic : %s", !initial_global_state->send_deterministic ? "No" : "Yes");
705   }
706   mmalloc_set_current_heap(heap);
707 }
708
709 void MC_automaton_load(const char *file)
710 {
711   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
712
713   if (_mc_property_automaton == NULL)
714     _mc_property_automaton = xbt_automaton_new();
715
716   xbt_automaton_load(_mc_property_automaton, file);
717   mmalloc_set_current_heap(heap);
718 }
719
720 static void register_symbol(xbt_automaton_propositional_symbol_t symbol)
721 {
722   if (mc_mode != MC_MODE_CLIENT)
723     return;
724   s_mc_register_symbol_message_t message;
725   message.type = MC_MESSAGE_REGISTER_SYMBOL;
726   const char* name = xbt_automaton_propositional_symbol_get_name(symbol);
727   if (strlen(name) + 1 > sizeof(message.name))
728     xbt_die("Symbol is too long");
729   strncpy(message.name, name, sizeof(message.name));
730   message.callback = xbt_automaton_propositional_symbol_get_callback(symbol);
731   message.data = xbt_automaton_propositional_symbol_get_data(symbol);
732   MC_client_send_message(&message, sizeof(message));
733 }
734
735 void MC_automaton_new_propositional_symbol(const char *id, int(*fct)(void))
736 {
737   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
738
739   if (_mc_property_automaton == NULL)
740     _mc_property_automaton = xbt_automaton_new();
741
742   xbt_automaton_propositional_symbol_t symbol = xbt_automaton_propositional_symbol_new(_mc_property_automaton, id, fct);
743   register_symbol(symbol);
744   mmalloc_set_current_heap(heap);
745 }
746
747 void MC_automaton_new_propositional_symbol_pointer(const char *id, int* value)
748 {
749   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
750   if (_mc_property_automaton == NULL)
751     _mc_property_automaton = xbt_automaton_new();
752   xbt_automaton_propositional_symbol_t symbol = xbt_automaton_propositional_symbol_new_pointer(_mc_property_automaton, id, value);
753   register_symbol(symbol);
754   mmalloc_set_current_heap(heap);
755 }
756
757 void MC_automaton_new_propositional_symbol_callback(const char* id,
758   xbt_automaton_propositional_symbol_callback_type callback,
759   void* data, xbt_automaton_propositional_symbol_free_function_type free_function)
760 {
761   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
762   if (_mc_property_automaton == NULL)
763     _mc_property_automaton = xbt_automaton_new();
764   xbt_automaton_propositional_symbol_t symbol = xbt_automaton_propositional_symbol_new_callback(
765     _mc_property_automaton, id, callback, data, free_function);
766   register_symbol(symbol);
767   mmalloc_set_current_heap(heap);
768 }
769
770 void MC_dump_stacks(FILE* file)
771 {
772   xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
773
774   int nstack = 0;
775   stack_region_t current_stack;
776   unsigned cursor;
777   xbt_dynar_foreach(stacks_areas, cursor, current_stack) {
778     unw_context_t * context = (unw_context_t *)current_stack->context;
779     fprintf(file, "Stack %i:\n", nstack);
780
781     int nframe = 0;
782     char buffer[100];
783     unw_cursor_t c;
784     unw_init_local (&c, context);
785     unw_word_t off;
786     do {
787       const char * name = !unw_get_proc_name(&c, buffer, 100, &off) ? buffer : "?";
788       fprintf(file, "  %i: %s\n", nframe, name);
789       ++nframe;
790     } while(unw_step(&c));
791
792     ++nstack;
793   }
794   mmalloc_set_current_heap(heap);
795 }
796 #endif
797
798 double MC_process_clock_get(smx_process_t process)
799 {
800   if (mc_time) {
801     if (process != NULL)
802       return mc_time[process->pid];
803     else
804       return -1;
805   } else {
806     return 0;
807   }
808 }
809
810 void MC_process_clock_add(smx_process_t process, double amount)
811 {
812   mc_time[process->pid] += amount;
813 }