Logo AND Algorithmique Numérique Distribuée

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