Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
6576d606c20b4064cd79d8ed5ba086a7ed569c98
[simgrid.git] / src / mc / mc_comm_determinism.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_state.h"
8 #include "mc_comm_pattern.h"
9 #include "mc_request.h"
10 #include "mc_safety.h"
11 #include "mc_private.h"
12 #include "mc_record.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_comm_determinism, mc,
15                                 "Logging specific to MC communication determinism detection");
16
17 /********** Global variables **********/
18
19 xbt_dynar_t initial_communications_pattern;
20 xbt_dynar_t incomplete_communications_pattern;
21
22 /********** Static functions ***********/
23
24 static void comm_pattern_free(mc_comm_pattern_t p)
25 {
26   xbt_free(p->rdv);
27   xbt_free(p->data);
28   xbt_free(p);
29   p = NULL;
30 }
31
32 static void list_comm_pattern_free(mc_list_comm_pattern_t l)
33 {
34   xbt_dynar_free(&(l->list));
35   xbt_free(l);
36   l = NULL;
37 }
38
39 static e_mc_comm_pattern_difference_t compare_comm_pattern(mc_comm_pattern_t comm1, mc_comm_pattern_t comm2) {
40   if(comm1->type != comm2->type)
41     return TYPE_DIFF;
42   if (strcmp(comm1->rdv, comm2->rdv) != 0)
43     return RDV_DIFF;
44   if (comm1->src_proc != comm2->src_proc)
45     return SRC_PROC_DIFF;
46   if (comm1->dst_proc != comm2->dst_proc)
47     return DST_PROC_DIFF;
48   if (comm1->data_size != comm2->data_size)
49     return DATA_SIZE_DIFF;
50   if(comm1->data == NULL && comm2->data == NULL)
51     return 0;
52   /*if(comm1->data != NULL && comm2->data !=NULL) {
53     if (!memcmp(comm1->data, comm2->data, comm1->data_size))
54       return 0;
55     return DATA_DIFF;
56   }else{
57     return DATA_DIFF;
58   }*/
59   return 0;
60 }
61
62 static void print_determinism_result(e_mc_comm_pattern_difference_t diff, int process, mc_comm_pattern_t comm, unsigned int cursor) {
63   if (_sg_mc_comms_determinism && !initial_global_state->comm_deterministic) {
64     XBT_INFO("****************************************************");
65     XBT_INFO("***** Non-deterministic communications pattern *****");
66     XBT_INFO("****************************************************");
67     XBT_INFO("The communications pattern of the process %d is different!",  process);
68     switch(diff) {
69     case TYPE_DIFF:
70       XBT_INFO("Different communication type for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
71       break;
72     case RDV_DIFF:
73       XBT_INFO("Different communication rdv for communication %s at index %d",  comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
74       break;
75     case SRC_PROC_DIFF:
76         XBT_INFO("Different communication source process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
77       break;
78     case DST_PROC_DIFF:
79         XBT_INFO("Different communication destination process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
80       break;
81     case DATA_SIZE_DIFF:
82       XBT_INFO("Different communication data size for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
83       break;
84     case DATA_DIFF:
85       XBT_INFO("Different communication data for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
86       break;
87     default:
88       break;
89     }
90     MC_print_statistics(mc_stats);
91     xbt_abort();
92   } else if (_sg_mc_send_determinism && !initial_global_state->send_deterministic) {
93     XBT_INFO("*********************************************************");
94     XBT_INFO("***** Non-send-deterministic communications pattern *****");
95     XBT_INFO("*********************************************************");
96     XBT_INFO("The communications pattern of the process %d is different!",  process);
97     switch(diff) {
98     case TYPE_DIFF:
99       XBT_INFO("Different communication type for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
100       break;
101     case RDV_DIFF:
102       XBT_INFO("Different communication rdv for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
103       break;
104     case SRC_PROC_DIFF:
105         XBT_INFO("Different communication source process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
106       break;
107     case DST_PROC_DIFF:
108         XBT_INFO("Different communication destination process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
109       break;
110     case DATA_SIZE_DIFF:
111       XBT_INFO("Different communication data size for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
112       break;
113     case DATA_DIFF:
114       XBT_INFO("Different communication data for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
115       break;
116     default:
117       break;
118     }
119     MC_print_statistics(mc_stats);
120     xbt_abort();
121   }
122 }
123
124 static void print_communications_pattern()
125 {
126   unsigned int cursor = 0, cursor2 = 0;
127   mc_comm_pattern_t current_comm;
128   mc_list_comm_pattern_t current_list;
129   unsigned int current_process = 1;
130   while (current_process < simix_process_maxpid) {
131     current_list = (mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, current_process, mc_list_comm_pattern_t);
132     XBT_INFO("Communications from the process %u:", current_process);
133     while(cursor2 < current_list->index_comm){
134       current_comm = (mc_comm_pattern_t)xbt_dynar_get_as(current_list->list, cursor2, mc_comm_pattern_t);
135       if (current_comm->type == SIMIX_COMM_SEND) {
136         XBT_INFO("(%u) [(%lu) %s -> (%lu) %s] %s ", cursor,current_comm->src_proc,
137                  current_comm->src_host, current_comm->dst_proc,
138                  current_comm->dst_host, "iSend");
139       } else {
140         XBT_INFO("(%u) [(%lu) %s <- (%lu) %s] %s ", cursor, current_comm->dst_proc,
141                  current_comm->dst_host, current_comm->src_proc,
142                  current_comm->src_host, "iRecv");
143       }
144       cursor2++;
145     }
146     current_process++;
147     cursor = 0;
148     cursor2 = 0;
149   }
150 }
151
152 static void print_incomplete_communications_pattern(){
153   unsigned int cursor = 0;
154   unsigned int current_process = 1;
155   xbt_dynar_t current_pattern;
156   mc_comm_pattern_t comm;
157   while (current_process < simix_process_maxpid) {
158     current_pattern = (xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, current_process, xbt_dynar_t);
159     XBT_INFO("Incomplete communications from the process %u:", current_process);
160     xbt_dynar_foreach(current_pattern, cursor, comm) {
161       XBT_DEBUG("(%u) Communication %p", cursor, comm);
162     }
163     current_process++;
164     cursor = 0;
165   }
166 }
167
168 static void update_comm_pattern(mc_comm_pattern_t comm_pattern, smx_synchro_t comm)
169 {
170   mc_process_t process = &mc_model_checker->process;
171   void *addr_pointed;
172   comm_pattern->src_proc = comm->comm.src_proc->pid;
173   comm_pattern->dst_proc = comm->comm.dst_proc->pid;
174   comm_pattern->src_host = simcall_host_get_name(comm->comm.src_proc->smx_host);
175   comm_pattern->dst_host = simcall_host_get_name(comm->comm.dst_proc->smx_host);
176   if (comm_pattern->data_size == -1 && comm->comm.src_buff != NULL) {
177     comm_pattern->data_size = *(comm->comm.dst_buff_size);
178     comm_pattern->data = xbt_malloc0(comm_pattern->data_size);
179     addr_pointed = *(void **) comm->comm.src_buff;
180     if (addr_pointed > (void*) process->heap_address
181         && addr_pointed < MC_process_get_heap(process)->breakval)
182       memcpy(comm_pattern->data, addr_pointed, comm_pattern->data_size);
183     else
184       memcpy(comm_pattern->data, comm->comm.src_buff, comm_pattern->data_size);
185   }
186 }
187
188 static void deterministic_comm_pattern(int process, mc_comm_pattern_t comm, int backtracking) {
189
190   mc_list_comm_pattern_t list_comm_pattern = (mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, process, mc_list_comm_pattern_t);
191
192   if(!backtracking){
193     mc_comm_pattern_t initial_comm = xbt_dynar_get_as(list_comm_pattern->list, comm->index, mc_comm_pattern_t);
194     e_mc_comm_pattern_difference_t diff;
195     
196     if((diff = compare_comm_pattern(initial_comm, comm)) != NONE_DIFF){
197       if (comm->type == SIMIX_COMM_SEND)
198         initial_global_state->send_deterministic = 0;
199       initial_global_state->comm_deterministic = 0;
200       print_determinism_result(diff, process, comm, list_comm_pattern->index_comm + 1);
201     }
202   }
203     
204   list_comm_pattern->index_comm++;
205   comm_pattern_free(comm);
206
207 }
208
209 /********** Non Static functions ***********/
210
211 void comm_pattern_free_voidp(void *p) {
212   comm_pattern_free((mc_comm_pattern_t) * (void **) p);
213 }
214
215 void list_comm_pattern_free_voidp(void *p) {
216   list_comm_pattern_free((mc_list_comm_pattern_t) * (void **) p);
217 }
218
219 void get_comm_pattern(xbt_dynar_t list, smx_simcall_t request, e_mc_call_type_t call_type)
220 {
221   mc_process_t process = &mc_model_checker->process;
222   mc_comm_pattern_t pattern = NULL;
223   pattern = xbt_new0(s_mc_comm_pattern_t, 1);
224   pattern->data_size = -1;
225   pattern->data = NULL;
226
227   pattern->index = ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, request->issuer->pid, mc_list_comm_pattern_t))->index_comm + xbt_dynar_length((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, request->issuer->pid, xbt_dynar_t));
228   
229   void *addr_pointed;
230   
231   if (call_type == MC_CALL_TYPE_SEND) {
232     /* Create comm pattern */
233     pattern->type = SIMIX_COMM_SEND;
234     pattern->comm = simcall_comm_isend__get__result(request);
235     pattern->rdv = (pattern->comm->comm.rdv != NULL) ? strdup(pattern->comm->comm.rdv->name) : strdup(pattern->comm->comm.rdv_cpy->name);
236     pattern->src_proc = pattern->comm->comm.src_proc->pid;
237     pattern->src_host = simcall_host_get_name(request->issuer->smx_host);
238     if(pattern->comm->comm.src_buff != NULL){
239       pattern->data_size = pattern->comm->comm.src_buff_size;
240       pattern->data = xbt_malloc0(pattern->data_size);
241       addr_pointed = *(void **) pattern->comm->comm.src_buff;
242       if (addr_pointed > (void*) process->heap_address
243           && addr_pointed < MC_process_get_heap(process)->breakval)
244         memcpy(pattern->data, addr_pointed, pattern->data_size);
245       else
246         memcpy(pattern->data, pattern->comm->comm.src_buff, pattern->data_size);
247     }
248   } else if (call_type == MC_CALL_TYPE_RECV) {                      
249     pattern->type = SIMIX_COMM_RECEIVE;
250     pattern->comm = simcall_comm_irecv__get__result(request);
251     pattern->rdv = (pattern->comm->comm.rdv != NULL) ? strdup(pattern->comm->comm.rdv->name) : strdup(pattern->comm->comm.rdv_cpy->name);
252     pattern->dst_proc = pattern->comm->comm.dst_proc->pid;
253     pattern->dst_host = simcall_host_get_name(request->issuer->smx_host);
254   } else {
255     xbt_die("Unexpected call_type %i", (int) call_type);
256   }
257
258   xbt_dynar_push((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, request->issuer->pid, xbt_dynar_t), &pattern);
259
260   XBT_DEBUG("Insert incomplete comm pattern %p for process %lu", pattern, request->issuer->pid);
261 }
262
263 void complete_comm_pattern(xbt_dynar_t list, smx_synchro_t comm, int backtracking) {
264
265   mc_comm_pattern_t current_comm_pattern;
266   unsigned int cursor = 0;
267   unsigned int src = comm->comm.src_proc->pid;
268   unsigned int dst = comm->comm.dst_proc->pid;
269   mc_comm_pattern_t src_comm_pattern;
270   mc_comm_pattern_t dst_comm_pattern;
271   int src_completed = 0, dst_completed = 0;
272
273   /* Complete comm pattern */
274   xbt_dynar_foreach((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, src, xbt_dynar_t), cursor, current_comm_pattern) {
275     if (current_comm_pattern-> comm == comm) {
276       update_comm_pattern(current_comm_pattern, comm);
277       src_completed = 1;
278       xbt_dynar_remove_at((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, src, xbt_dynar_t), cursor, &src_comm_pattern);
279       XBT_DEBUG("Remove incomplete comm pattern for process %u at cursor %u", src, cursor);
280       break;
281     }
282   }
283   if(!src_completed)
284     xbt_die("Corresponding communication for the source process not found!");
285
286   cursor = 0;
287
288   xbt_dynar_foreach((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, dst, xbt_dynar_t), cursor, current_comm_pattern) {
289     if (current_comm_pattern-> comm == comm) {
290       update_comm_pattern(current_comm_pattern, comm);
291       dst_completed = 1;
292       xbt_dynar_remove_at((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, dst, xbt_dynar_t), cursor, &dst_comm_pattern);
293       XBT_DEBUG("Remove incomplete comm pattern for process %u at cursor %u", dst, cursor);
294       break;
295     }
296   }
297   if(!dst_completed)
298     xbt_die("Corresponding communication for the destination process not found!");
299   
300   if (!initial_global_state->initial_communications_pattern_done) {
301     /* Store comm pattern */
302     if(src_comm_pattern->index < xbt_dynar_length(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list)){
303       xbt_dynar_set(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list, src_comm_pattern->index, &src_comm_pattern);
304       ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list->used++;
305     } else {
306       xbt_dynar_insert_at(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list, src_comm_pattern->index, &src_comm_pattern);
307     }
308     
309     if(dst_comm_pattern->index < xbt_dynar_length(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list)) {
310       xbt_dynar_set(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list, dst_comm_pattern->index, &dst_comm_pattern);
311       ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list->used++;
312     } else {
313       xbt_dynar_insert_at(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list, dst_comm_pattern->index, &dst_comm_pattern);
314     }
315     ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->index_comm++;
316     ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->index_comm++;
317   } else {
318     /* Evaluate comm determinism */
319     deterministic_comm_pattern(src, src_comm_pattern, backtracking);
320     deterministic_comm_pattern(dst, dst_comm_pattern, backtracking);
321   }
322 }
323
324 /************************ Main algorithm ************************/
325
326 void MC_pre_modelcheck_comm_determinism(void)
327 {
328   MC_SET_MC_HEAP;
329
330   mc_state_t initial_state = NULL;
331   smx_process_t process;
332   int i;
333
334   if (_sg_mc_visited > 0)
335     visited_states = xbt_dynar_new(sizeof(mc_visited_state_t), visited_state_free_voidp);
336  
337   initial_communications_pattern = xbt_dynar_new(sizeof(mc_list_comm_pattern_t), list_comm_pattern_free_voidp);
338   for (i=0; i<simix_process_maxpid; i++){
339     mc_list_comm_pattern_t process_list_pattern = xbt_new0(s_mc_list_comm_pattern_t, 1);
340     process_list_pattern->list = xbt_dynar_new(sizeof(mc_comm_pattern_t), comm_pattern_free_voidp);
341     process_list_pattern->index_comm = 0;
342     xbt_dynar_insert_at(initial_communications_pattern, i, &process_list_pattern);
343   }
344   incomplete_communications_pattern = xbt_dynar_new(sizeof(xbt_dynar_t), xbt_dynar_free_voidp);
345   for (i=0; i<simix_process_maxpid; i++){
346     xbt_dynar_t process_pattern = xbt_dynar_new(sizeof(mc_comm_pattern_t), NULL);
347     xbt_dynar_insert_at(incomplete_communications_pattern, i, &process_pattern);
348   }
349
350   initial_state = MC_state_new();
351   MC_SET_STD_HEAP;
352   
353   XBT_DEBUG("********* Start communication determinism verification *********");
354
355   /* Wait for requests (schedules processes) */
356   MC_wait_for_requests();
357
358   MC_SET_MC_HEAP;
359
360   /* Get an enabled process and insert it in the interleave set of the initial state */
361   xbt_swag_foreach(process, simix_global->process_list) {
362     if (MC_process_is_enabled(process)) {
363       MC_state_interleave_process(initial_state, process);
364     }
365   }
366
367   xbt_fifo_unshift(mc_stack, initial_state);
368
369   MC_SET_STD_HEAP;
370
371 }
372
373 void MC_modelcheck_comm_determinism(void)
374 {
375
376   char *req_str = NULL;
377   int value;
378   mc_visited_state_t visited_state = NULL;
379   smx_simcall_t req = NULL;
380   smx_process_t process = NULL;
381   mc_state_t state = NULL, next_state = NULL;
382
383   while (xbt_fifo_size(mc_stack) > 0) {
384
385     /* Get current state */
386     state = (mc_state_t) xbt_fifo_get_item_content(xbt_fifo_get_first_item(mc_stack));
387
388     XBT_DEBUG("**************************************************");
389     XBT_DEBUG("Exploration depth = %d (state = %d, interleaved processes = %d)",
390               xbt_fifo_size(mc_stack), state->num,
391               MC_state_interleave_size(state));
392
393     /* Update statistics */
394     mc_stats->visited_states++;
395
396     if ((xbt_fifo_size(mc_stack) <= _sg_mc_max_depth)
397         && (req = MC_state_get_request(state, &value))
398         && (visited_state == NULL)) {
399
400       req_str = MC_request_to_string(req, value);  
401       XBT_DEBUG("Execute: %s", req_str);                 
402       xbt_free(req_str);
403       
404       if (dot_output != NULL) {
405         MC_SET_MC_HEAP;
406         req_str = MC_request_get_dot_output(req, value);
407         MC_SET_STD_HEAP;
408       }
409
410       MC_state_set_executed_request(state, req, value);
411       mc_stats->executed_transitions++;
412
413       /* TODO : handle test and testany simcalls */
414       e_mc_call_type_t call = MC_CALL_TYPE_NONE;
415       if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
416         call = mc_get_call_type(req);
417       }
418
419       /* Answer the request */
420       SIMIX_simcall_handle(req, value);    /* After this call req is no longer useful */
421
422       MC_SET_MC_HEAP;
423       if(!initial_global_state->initial_communications_pattern_done)
424         handle_comm_pattern(call, req, value, initial_communications_pattern, 0);
425       else
426         handle_comm_pattern(call, req, value, NULL, 0);
427       MC_SET_STD_HEAP;
428
429       /* Wait for requests (schedules processes) */
430       MC_wait_for_requests();
431
432       /* Create the new expanded state */
433       MC_SET_MC_HEAP;
434
435       next_state = MC_state_new();
436
437       if ((visited_state = is_visited_state(next_state)) == NULL) {
438
439         /* Get enabled processes and insert them in the interleave set of the next state */
440         xbt_swag_foreach(process, simix_global->process_list) {
441           if (MC_process_is_enabled(process)) {
442             MC_state_interleave_process(next_state, process);
443           }
444         }
445
446         if (dot_output != NULL)
447           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num,  next_state->num, req_str);
448
449       } else {
450
451         if (dot_output != NULL)
452           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num, visited_state->other_num == -1 ? visited_state->num : visited_state->other_num, req_str);
453
454       }
455
456       xbt_fifo_unshift(mc_stack, next_state);
457
458       if (dot_output != NULL)
459         xbt_free(req_str);
460
461       MC_SET_STD_HEAP;
462
463     } else {
464
465       if (xbt_fifo_size(mc_stack) > _sg_mc_max_depth) {
466         XBT_WARN("/!\\ Max depth reached ! /!\\ ");
467       } else if (visited_state != NULL) {
468         XBT_DEBUG("State already visited (equal to state %d), exploration stopped on this path.", visited_state->other_num == -1 ? visited_state->num : visited_state->other_num);
469       } else {
470         XBT_DEBUG("There are no more processes to interleave. (depth %d)", xbt_fifo_size(mc_stack));
471       }
472
473       MC_SET_MC_HEAP;
474
475       if (!initial_global_state->initial_communications_pattern_done) 
476         initial_global_state->initial_communications_pattern_done = 1;
477
478       /* Trash the current state, no longer needed */
479       xbt_fifo_shift(mc_stack);
480       MC_state_delete(state, !state->in_visited_states ? 1 : 0);
481       XBT_DEBUG("Delete state %d at depth %d", state->num, xbt_fifo_size(mc_stack) + 1);
482
483       MC_SET_STD_HEAP;
484
485       visited_state = NULL;
486
487       /* Check for deadlocks */
488       if (MC_deadlock_check()) {
489         MC_show_deadlock(NULL);
490         return;
491       }
492
493       MC_SET_MC_HEAP;
494
495       while ((state = xbt_fifo_shift(mc_stack)) != NULL) {
496         if (MC_state_interleave_size(state) && xbt_fifo_size(mc_stack) < _sg_mc_max_depth) {
497           /* We found a back-tracking point, let's loop */
498           XBT_DEBUG("Back-tracking to state %d at depth %d", state->num, xbt_fifo_size(mc_stack) + 1);
499           xbt_fifo_unshift(mc_stack, state);
500           MC_SET_STD_HEAP;
501
502           MC_replay(mc_stack);
503
504           XBT_DEBUG("Back-tracking to state %d at depth %d done", state->num, xbt_fifo_size(mc_stack));
505
506           break;
507         } else {
508           XBT_DEBUG("Delete state %d at depth %d", state->num, xbt_fifo_size(mc_stack) + 1);
509           MC_state_delete(state, !state->in_visited_states ? 1 : 0);
510         }
511       }
512
513       MC_SET_STD_HEAP;
514     }
515   }
516
517   MC_print_statistics(mc_stats);
518   MC_SET_STD_HEAP;
519
520   return;
521 }