Logo AND Algorithmique Numérique Distribuée

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