Logo AND Algorithmique Numérique Distribuée

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