Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : new files forgotten
[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->comm_deterministic = 1;
253   initial_global_state->send_deterministic = 1;
254   MC_SET_STD_HEAP;
255
256   MC_modelcheck_comm_determinism();
257
258   if(mc_mem_set)
259     MC_SET_MC_HEAP;
260
261 }
262
263 static void MC_modelcheck_safety_init(void)
264 {
265   int mc_mem_set = (mmalloc_get_current_heap() == mc_heap);
266
267   _sg_mc_safety = 1;
268
269   MC_init();
270
271   if (!mc_mem_set)
272     MC_SET_MC_HEAP;
273
274   /* Create exploration stack */
275   mc_stack = xbt_fifo_new();
276
277   MC_SET_STD_HEAP;
278
279   MC_pre_modelcheck_safety();
280
281   MC_SET_MC_HEAP;
282   /* Save the initial state */
283   initial_global_state = xbt_new0(s_mc_global_t, 1);
284   initial_global_state->snapshot = MC_take_snapshot(0);
285   MC_SET_STD_HEAP;
286
287   MC_modelcheck_safety();
288
289   if (mc_mem_set)
290     MC_SET_MC_HEAP;
291
292   xbt_abort();
293   //MC_exit();
294 }
295
296 static void MC_modelcheck_liveness_init()
297 {
298
299   int mc_mem_set = (mmalloc_get_current_heap() == mc_heap);
300
301   _sg_mc_liveness = 1;
302
303   MC_init();
304
305   if (!mc_mem_set)
306     MC_SET_MC_HEAP;
307
308   /* Create exploration stack */
309   mc_stack = xbt_fifo_new();
310
311   /* Create the initial state */
312   initial_global_state = xbt_new0(s_mc_global_t, 1);
313
314   MC_SET_STD_HEAP;
315
316   MC_pre_modelcheck_liveness();
317
318   /* We're done */
319   MC_print_statistics(mc_stats);
320   xbt_free(mc_time);
321
322   if (mc_mem_set)
323     MC_SET_MC_HEAP;
324
325 }
326
327 void MC_do_the_modelcheck_for_real()
328 {
329
330   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
331     XBT_INFO("Check communication determinism");
332     MC_modelcheck_comm_determinism_init();
333   } else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0') {
334     if (mc_reduce_kind == e_mc_reduce_unset)
335       mc_reduce_kind = e_mc_reduce_dpor;
336     if(_sg_mc_termination)
337       XBT_INFO("Check non progressive cycles");
338     else
339       XBT_INFO("Check a safety property");
340     MC_modelcheck_safety_init();
341   } else {
342     if (mc_reduce_kind == e_mc_reduce_unset)
343       mc_reduce_kind = e_mc_reduce_none;
344     XBT_INFO("Check the liveness property %s", _sg_mc_property_file);
345     MC_automaton_load(_sg_mc_property_file);
346     MC_modelcheck_liveness_init();
347   }
348 }
349
350
351 void MC_exit(void)
352 {
353   xbt_free(mc_time);
354
355   MC_memory_exit();
356   //xbt_abort();
357 }
358
359 int MC_deadlock_check()
360 {
361   int deadlock = FALSE;
362   smx_process_t process;
363   if (xbt_swag_size(simix_global->process_list)) {
364     deadlock = TRUE;
365     xbt_swag_foreach(process, simix_global->process_list) {
366       if (MC_request_is_enabled(&process->simcall)) {
367         deadlock = FALSE;
368         break;
369       }
370     }
371   }
372   return deadlock;
373 }
374
375 void handle_comm_pattern(e_mc_call_type_t call_type, smx_simcall_t req, int value, xbt_dynar_t pattern, int backtracking) {
376
377   switch(call_type) {
378   case MC_CALL_TYPE_NONE:
379     break;
380   case MC_CALL_TYPE_SEND:
381   case MC_CALL_TYPE_RECV:
382     get_comm_pattern(pattern, req, call_type);
383     break;
384   case MC_CALL_TYPE_WAIT:
385   case MC_CALL_TYPE_WAITANY:
386     {
387       smx_synchro_t current_comm = NULL;
388       if (call_type == MC_CALL_TYPE_WAIT)
389         current_comm = simcall_comm_wait__get__comm(req);
390       else
391         current_comm = xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value, smx_synchro_t);
392       // First wait only must be considered:
393       if (current_comm->comm.refcount == 1)
394         complete_comm_pattern(pattern, current_comm, backtracking);
395       break;
396     }
397   default:
398     xbt_die("Unexpected call type %i", (int)call_type);
399   }
400   
401 }
402
403 static void MC_restore_communications_pattern(mc_state_t state) {
404   mc_list_comm_pattern_t list_process_comm;
405   unsigned int cursor, cursor2;
406   xbt_dynar_foreach(initial_communications_pattern, cursor, list_process_comm){
407     list_process_comm->index_comm = (int)xbt_dynar_get_as(state->index_comm, cursor, int);
408   }
409   mc_comm_pattern_t comm;
410   cursor = 0;
411   xbt_dynar_t initial_incomplete_process_comms, incomplete_process_comms;
412   for(int i=0; i<simix_process_maxpid; i++){
413     initial_incomplete_process_comms = xbt_dynar_get_as(incomplete_communications_pattern, i, xbt_dynar_t);
414     xbt_dynar_reset(initial_incomplete_process_comms);
415     incomplete_process_comms = xbt_dynar_get_as(state->incomplete_comm_pattern, i, xbt_dynar_t);
416     xbt_dynar_foreach(incomplete_process_comms, cursor2, comm) {
417       mc_comm_pattern_t copy_comm = xbt_new0(s_mc_comm_pattern_t, 1);
418       copy_comm->index = comm->index;
419       copy_comm->type = comm->type;
420       copy_comm->comm = comm->comm;
421       copy_comm->rdv = strdup(comm->rdv);
422       copy_comm->data_size = -1;
423       copy_comm->data = NULL;
424       if(comm->type == SIMIX_COMM_SEND){
425         copy_comm->src_proc = comm->src_proc;
426         copy_comm->src_host = comm->src_host;
427         if(comm->data != NULL){
428           copy_comm->data_size = comm->data_size;
429           copy_comm->data = xbt_malloc0(comm->data_size);
430           memcpy(copy_comm->data, comm->data, comm->data_size);
431         }
432       }else{
433         copy_comm->dst_proc = comm->dst_proc;
434         copy_comm->dst_host = comm->dst_host;
435       }
436       xbt_dynar_push(initial_incomplete_process_comms, &copy_comm);
437     }
438   }
439 }
440
441 /**
442  * \brief Re-executes from the state at position start all the transitions indicated by
443  *        a given model-checker stack.
444  * \param stack The stack with the transitions to execute.
445  * \param start Start index to begin the re-execution.
446  */
447 void MC_replay(xbt_fifo_t stack)
448 {
449   int raw_mem = (mmalloc_get_current_heap() == mc_heap);
450
451   int value, count = 1, j;
452   char *req_str;
453   smx_simcall_t req = NULL, saved_req = NULL;
454   xbt_fifo_item_t item, start_item;
455   mc_state_t state;
456   
457   XBT_DEBUG("**** Begin Replay ****");
458
459   /* Intermediate backtracking */
460   if(_sg_mc_checkpoint > 0) {
461     start_item = xbt_fifo_get_first_item(stack);
462     state = (mc_state_t)xbt_fifo_get_item_content(start_item);
463     if(state->system_state){
464       MC_restore_snapshot(state->system_state);
465       if(_sg_mc_comms_determinism || _sg_mc_send_determinism) 
466         MC_restore_communications_pattern(state);
467       MC_SET_STD_HEAP;
468       return;
469     }
470   }
471
472
473   /* Restore the initial state */
474   MC_restore_snapshot(initial_global_state->snapshot);
475   /* At the moment of taking the snapshot the raw heap was set, so restoring
476    * it will set it back again, we have to unset it to continue  */
477   MC_SET_STD_HEAP;
478
479   start_item = xbt_fifo_get_last_item(stack);
480   
481   MC_SET_MC_HEAP;
482
483   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
484     for (j=0; j<simix_process_maxpid; j++) {
485       xbt_dynar_reset((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, j, xbt_dynar_t));
486       ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, j, mc_list_comm_pattern_t))->index_comm = 0;
487     }
488   }
489
490   MC_SET_STD_HEAP;
491
492   /* Traverse the stack from the state at position start and re-execute the transitions */
493   for (item = start_item;
494        item != xbt_fifo_get_first_item(stack);
495        item = xbt_fifo_get_prev_item(item)) {
496
497     state = (mc_state_t) xbt_fifo_get_item_content(item);
498     saved_req = MC_state_get_executed_request(state, &value);
499     
500     if (saved_req) {
501       /* because we got a copy of the executed request, we have to fetch the  
502          real one, pointed by the request field of the issuer process */
503       req = &saved_req->issuer->simcall;
504
505       /* Debug information */
506       if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
507         req_str = MC_request_to_string(req, value);
508         XBT_DEBUG("Replay: %s (%p)", req_str, state);
509         xbt_free(req_str);
510       }
511
512       /* TODO : handle test and testany simcalls */
513       e_mc_call_type_t call = MC_CALL_TYPE_NONE;
514       if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
515         call = mc_get_call_type(req);
516
517       SIMIX_simcall_handle(req, value);
518
519       MC_SET_MC_HEAP;
520       if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
521         handle_comm_pattern(call, req, value, NULL, 1);
522       MC_SET_STD_HEAP;
523       
524       MC_wait_for_requests();
525
526       count++;
527     }
528
529     /* Update statistics */
530     mc_stats->visited_states++;
531     mc_stats->executed_transitions++;
532
533   }
534
535   XBT_DEBUG("**** End Replay ****");
536
537   if (raw_mem)
538     MC_SET_MC_HEAP;
539   else
540     MC_SET_STD_HEAP;
541
542
543 }
544
545 void MC_replay_liveness(xbt_fifo_t stack)
546 {
547
548   initial_global_state->raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
549
550   xbt_fifo_item_t item;
551   mc_pair_t pair = NULL;
552   mc_state_t state = NULL;
553   smx_simcall_t req = NULL, saved_req = NULL;
554   int value, depth = 1;
555   char *req_str;
556
557   XBT_DEBUG("**** Begin Replay ****");
558
559   /* Intermediate backtracking */
560   if(_sg_mc_checkpoint > 0) {
561     item = xbt_fifo_get_first_item(stack);
562     pair = (mc_pair_t) xbt_fifo_get_item_content(item);
563     if(pair->graph_state->system_state){
564       MC_restore_snapshot(pair->graph_state->system_state);
565       MC_SET_STD_HEAP;
566       return;
567     }
568   }
569
570   /* Restore the initial state */
571   MC_restore_snapshot(initial_global_state->snapshot);
572
573   /* At the moment of taking the snapshot the raw heap was set, so restoring
574    * it will set it back again, we have to unset it to continue  */
575   if (!initial_global_state->raw_mem_set)
576     MC_SET_STD_HEAP;
577
578     /* Traverse the stack from the initial state and re-execute the transitions */
579     for (item = xbt_fifo_get_last_item(stack);
580          item != xbt_fifo_get_first_item(stack);
581          item = xbt_fifo_get_prev_item(item)) {
582
583       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
584
585       state = (mc_state_t) pair->graph_state;
586
587       if (pair->exploration_started) {
588
589         saved_req = MC_state_get_executed_request(state, &value);
590
591         if (saved_req != NULL) {
592           /* because we got a copy of the executed request, we have to fetch the
593              real one, pointed by the request field of the issuer process */
594           req = &saved_req->issuer->simcall;
595
596           /* Debug information */
597           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
598             req_str = MC_request_to_string(req, value);
599             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
600             xbt_free(req_str);
601           }
602
603         }
604
605         SIMIX_simcall_handle(req, value);
606         MC_wait_for_requests();
607       }
608
609       /* Update statistics */
610       mc_stats->visited_pairs++;
611       mc_stats->executed_transitions++;
612
613       depth++;
614       
615     }
616
617   XBT_DEBUG("**** End Replay ****");
618
619   if (initial_global_state->raw_mem_set)
620     MC_SET_MC_HEAP;
621   else
622     MC_SET_STD_HEAP;
623
624 }
625
626 /**
627  * \brief Dumps the contents of a model-checker's stack and shows the actual
628  *        execution trace
629  * \param stack The stack to dump
630  */
631 void MC_dump_stack_safety(xbt_fifo_t stack)
632 {
633
634   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
635
636   MC_show_stack_safety(stack);
637   
638   mc_state_t state;
639   
640   MC_SET_MC_HEAP;
641   while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
642     MC_state_delete(state, !state->in_visited_states ? 1 : 0);
643   MC_SET_STD_HEAP;
644
645   if (raw_mem_set)
646     MC_SET_MC_HEAP;
647   else
648     MC_SET_STD_HEAP;
649
650 }
651
652
653 void MC_show_stack_safety(xbt_fifo_t stack)
654 {
655
656   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
657
658   MC_SET_MC_HEAP;
659
660   int value;
661   mc_state_t state;
662   xbt_fifo_item_t item;
663   smx_simcall_t req;
664   char *req_str = NULL;
665
666   for (item = xbt_fifo_get_last_item(stack);
667        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
668         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
669     req = MC_state_get_executed_request(state, &value);
670     if (req) {
671       req_str = MC_request_to_string(req, value);
672       XBT_INFO("%s", req_str);
673       xbt_free(req_str);
674     }
675   }
676
677   if (!raw_mem_set)
678     MC_SET_STD_HEAP;
679 }
680
681 void MC_show_deadlock(smx_simcall_t req)
682 {
683   /*char *req_str = NULL; */
684   XBT_INFO("**************************");
685   XBT_INFO("*** DEAD-LOCK DETECTED ***");
686   XBT_INFO("**************************");
687   XBT_INFO("Locked request:");
688   /*req_str = MC_request_to_string(req);
689      XBT_INFO("%s", req_str);
690      xbt_free(req_str); */
691   XBT_INFO("Counter-example execution trace:");
692   MC_dump_stack_safety(mc_stack);
693   MC_print_statistics(mc_stats);
694 }
695
696 void MC_show_non_termination(void){
697   XBT_INFO("******************************************");
698   XBT_INFO("*** NON-PROGRESSIVE CYCLE DETECTED ***");
699   XBT_INFO("******************************************");
700   XBT_INFO("Counter-example execution trace:");
701   MC_dump_stack_safety(mc_stack);
702   MC_print_statistics(mc_stats);
703 }
704
705
706 void MC_show_stack_liveness(xbt_fifo_t stack)
707 {
708   int value;
709   mc_pair_t pair;
710   xbt_fifo_item_t item;
711   smx_simcall_t req;
712   char *req_str = NULL;
713
714   for (item = xbt_fifo_get_last_item(stack);
715        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item))) : (NULL));
716        item = xbt_fifo_get_prev_item(item)) {
717     req = MC_state_get_executed_request(pair->graph_state, &value);
718     if (req && req->call != SIMCALL_NONE) {
719       req_str = MC_request_to_string(req, value);
720       XBT_INFO("%s", req_str);
721       xbt_free(req_str);
722     }
723   }
724 }
725
726
727 void MC_dump_stack_liveness(xbt_fifo_t stack)
728 {
729
730   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
731
732   mc_pair_t pair;
733
734   MC_SET_MC_HEAP;
735   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
736     MC_pair_delete(pair);
737   MC_SET_STD_HEAP;
738
739   if (raw_mem_set)
740     MC_SET_MC_HEAP;
741
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 (stats->expanded_pairs == 0) {
750     XBT_INFO("Expanded states = %lu", stats->expanded_states);
751     XBT_INFO("Visited states = %lu", stats->visited_states);
752   } else {
753     XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
754     XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
755   }
756   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
757   MC_SET_MC_HEAP;
758   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0')) {
759     fprintf(dot_output, "}\n");
760     fclose(dot_output);
761   }
762   if (initial_global_state != NULL) {
763     if (_sg_mc_comms_determinism)
764       XBT_INFO("Communication-deterministic : %s", !initial_global_state->comm_deterministic ? "No" : "Yes");
765     if (_sg_mc_send_determinism)
766       XBT_INFO("Send-deterministic : %s", !initial_global_state->send_deterministic ? "No" : "Yes");
767   }
768   mmalloc_set_current_heap(previous_heap);
769 }
770
771 void MC_assert(int prop)
772 {
773   if (MC_is_active() && !prop) {
774     XBT_INFO("**************************");
775     XBT_INFO("*** PROPERTY NOT VALID ***");
776     XBT_INFO("**************************");
777     XBT_INFO("Counter-example execution trace:");
778     MC_record_dump_path(mc_stack);
779     MC_dump_stack_safety(mc_stack);
780     MC_print_statistics(mc_stats);
781     xbt_abort();
782   }
783 }
784
785 void MC_cut(void)
786 {
787   user_max_depth_reached = 1;
788 }
789
790 void MC_automaton_load(const char *file)
791 {
792
793   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
794
795   MC_SET_MC_HEAP;
796
797   if (_mc_property_automaton == NULL)
798     _mc_property_automaton = xbt_automaton_new();
799
800   xbt_automaton_load(_mc_property_automaton, file);
801
802   MC_SET_STD_HEAP;
803
804   if (raw_mem_set)
805     MC_SET_MC_HEAP;
806
807 }
808
809 void MC_automaton_new_propositional_symbol(const char *id, void *fct)
810 {
811
812   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
813
814   MC_SET_MC_HEAP;
815
816   if (_mc_property_automaton == NULL)
817     _mc_property_automaton = xbt_automaton_new();
818
819   xbt_automaton_propositional_symbol_new(_mc_property_automaton, id, fct);
820
821   MC_SET_STD_HEAP;
822
823   if (raw_mem_set)
824     MC_SET_MC_HEAP;
825
826 }
827
828 void MC_dump_stacks(FILE* file)
829 {
830   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
831   MC_SET_MC_HEAP;
832
833   int nstack = 0;
834   stack_region_t current_stack;
835   unsigned cursor;
836   xbt_dynar_foreach(stacks_areas, cursor, current_stack) {
837     unw_context_t * context = (unw_context_t *)current_stack->context;
838     fprintf(file, "Stack %i:\n", nstack);
839
840     int nframe = 0;
841     char buffer[100];
842     unw_cursor_t c;
843     unw_init_local (&c, context);
844     unw_word_t off;
845     do {
846       const char * name = !unw_get_proc_name(&c, buffer, 100, &off) ? buffer : "?";
847       fprintf(file, "  %i: %s\n", nframe, name);
848       ++nframe;
849     } while(unw_step(&c));
850
851     ++nstack;
852   }
853
854   if (raw_mem_set)
855     MC_SET_MC_HEAP;
856 }
857 #endif
858
859 double MC_process_clock_get(smx_process_t process)
860 {
861   if (mc_time) {
862     if (process != NULL)
863       return mc_time[process->pid];
864     else
865       return -1;
866   } else {
867     return 0;
868   }
869 }
870
871 void MC_process_clock_add(smx_process_t process, double amount)
872 {
873   mc_time[process->pid] += amount;
874 }