Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename smx_action_t to smx_synchro_t
[simgrid.git] / src / mc / mc_request.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_private.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_request, mc,
10                                 "Logging specific to MC (request)");
11
12 static char *pointer_to_string(void *pointer);
13 static char *buff_size_to_string(size_t size);
14
15 int MC_request_depend(smx_simcall_t r1, smx_simcall_t r2)
16 {
17   if (mc_reduce_kind == e_mc_reduce_none)
18     return TRUE;
19
20   if (r1->issuer == r2->issuer)
21     return FALSE;
22
23   /* Wait with timeout transitions are not considered by the independance theorem, thus we consider them as dependant with all other transitions */
24   if ((r1->call == SIMCALL_COMM_WAIT && simcall_comm_wait__get__timeout(r1) > 0)
25       || (r2->call == SIMCALL_COMM_WAIT
26           && simcall_comm_wait__get__timeout(r2) > 0))
27     return TRUE;
28
29   if (r1->call == SIMCALL_COMM_ISEND && r2->call == SIMCALL_COMM_IRECV)
30     return FALSE;
31
32   if (r1->call == SIMCALL_COMM_IRECV && r2->call == SIMCALL_COMM_ISEND)
33     return FALSE;
34
35   if ((r1->call == SIMCALL_COMM_ISEND || r1->call == SIMCALL_COMM_IRECV)
36       && r2->call == SIMCALL_COMM_WAIT) {
37
38     smx_rdv_t rdv =
39         r1->call ==
40         SIMCALL_COMM_ISEND ? simcall_comm_isend__get__rdv(r1) :
41         simcall_comm_irecv__get__rdv(r1);
42
43     if (rdv != simcall_comm_wait__get__comm(r2)->comm.rdv_cpy
44         && simcall_comm_wait__get__timeout(r2) <= 0)
45       return FALSE;
46
47     if ((r1->issuer != simcall_comm_wait__get__comm(r2)->comm.src_proc)
48         && (r1->issuer != simcall_comm_wait__get__comm(r2)->comm.dst_proc)
49         && simcall_comm_wait__get__timeout(r2) <= 0)
50       return FALSE;
51
52     if ((r1->call == SIMCALL_COMM_ISEND)
53         && (simcall_comm_wait__get__comm(r2)->comm.type == SIMIX_COMM_SEND)
54         && (simcall_comm_wait__get__comm(r2)->comm.src_buff !=
55             simcall_comm_isend__get__src_buff(r1))
56         && simcall_comm_wait__get__timeout(r2) <= 0)
57       return FALSE;
58
59     if ((r1->call == SIMCALL_COMM_IRECV)
60         && (simcall_comm_wait__get__comm(r2)->comm.type == SIMIX_COMM_RECEIVE)
61         && (simcall_comm_wait__get__comm(r2)->comm.dst_buff !=
62             simcall_comm_irecv__get__dst_buff(r1))
63         && simcall_comm_wait__get__timeout(r2) <= 0)
64       return FALSE;
65   }
66
67   if ((r2->call == SIMCALL_COMM_ISEND || r2->call == SIMCALL_COMM_IRECV)
68       && r1->call == SIMCALL_COMM_WAIT) {
69
70     smx_rdv_t rdv =
71         r2->call ==
72         SIMCALL_COMM_ISEND ? simcall_comm_isend__get__rdv(r2) :
73         simcall_comm_irecv__get__rdv(r2);
74
75     if (rdv != simcall_comm_wait__get__comm(r1)->comm.rdv_cpy
76         && simcall_comm_wait__get__timeout(r1) <= 0)
77       return FALSE;
78
79     if ((r2->issuer != simcall_comm_wait__get__comm(r1)->comm.src_proc)
80         && (r2->issuer != simcall_comm_wait__get__comm(r1)->comm.dst_proc)
81         && simcall_comm_wait__get__timeout(r1) <= 0)
82       return FALSE;
83
84     if ((r2->call == SIMCALL_COMM_ISEND)
85         && (simcall_comm_wait__get__comm(r1)->comm.type == SIMIX_COMM_SEND)
86         && (simcall_comm_wait__get__comm(r1)->comm.src_buff !=
87             simcall_comm_isend__get__src_buff(r2))
88         && simcall_comm_wait__get__timeout(r1) <= 0)
89       return FALSE;
90
91     if ((r2->call == SIMCALL_COMM_IRECV)
92         && (simcall_comm_wait__get__comm(r1)->comm.type == SIMIX_COMM_RECEIVE)
93         && (simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
94             simcall_comm_irecv__get__dst_buff(r2))
95         && simcall_comm_wait__get__timeout(r1) <= 0)
96       return FALSE;
97   }
98
99   /* FIXME: the following rule assumes that the result of the
100    * isend/irecv call is not stored in a buffer used in the
101    * test call. */
102   /*if(   (r1->call == SIMCALL_COMM_ISEND || r1->call == SIMCALL_COMM_IRECV)
103      &&  r2->call == SIMCALL_COMM_TEST)
104      return FALSE; */
105
106   /* FIXME: the following rule assumes that the result of the
107    * isend/irecv call is not stored in a buffer used in the
108    * test call.*/
109   /*if(   (r2->call == SIMCALL_COMM_ISEND || r2->call == SIMCALL_COMM_IRECV)
110      && r1->call == SIMCALL_COMM_TEST)
111      return FALSE; */
112
113   if (r1->call == SIMCALL_COMM_ISEND && r2->call == SIMCALL_COMM_ISEND
114       && simcall_comm_isend__get__rdv(r1) != simcall_comm_isend__get__rdv(r2))
115     return FALSE;
116
117   if (r1->call == SIMCALL_COMM_IRECV && r2->call == SIMCALL_COMM_IRECV
118       && simcall_comm_irecv__get__rdv(r1) != simcall_comm_irecv__get__rdv(r2))
119     return FALSE;
120
121   if (r1->call == SIMCALL_COMM_WAIT
122       && (r2->call == SIMCALL_COMM_WAIT || r2->call == SIMCALL_COMM_TEST)
123       && (simcall_comm_wait__get__comm(r1)->comm.src_proc == NULL
124           || simcall_comm_wait__get__comm(r1)->comm.dst_proc == NULL))
125     return FALSE;
126
127   if (r2->call == SIMCALL_COMM_WAIT
128       && (r1->call == SIMCALL_COMM_WAIT || r1->call == SIMCALL_COMM_TEST)
129       && (simcall_comm_wait__get__comm(r2)->comm.src_proc == NULL
130           || simcall_comm_wait__get__comm(r2)->comm.dst_proc == NULL))
131     return FALSE;
132
133   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_WAIT
134       && simcall_comm_wait__get__comm(r1)->comm.src_buff ==
135       simcall_comm_wait__get__comm(r2)->comm.src_buff
136       && simcall_comm_wait__get__comm(r1)->comm.dst_buff ==
137       simcall_comm_wait__get__comm(r2)->comm.dst_buff)
138     return FALSE;
139
140   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_WAIT
141       && simcall_comm_wait__get__comm(r1)->comm.src_buff != NULL
142       && simcall_comm_wait__get__comm(r1)->comm.dst_buff != NULL
143       && simcall_comm_wait__get__comm(r2)->comm.src_buff != NULL
144       && simcall_comm_wait__get__comm(r2)->comm.dst_buff != NULL
145       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
146       simcall_comm_wait__get__comm(r2)->comm.src_buff
147       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
148       simcall_comm_wait__get__comm(r2)->comm.dst_buff
149       && simcall_comm_wait__get__comm(r2)->comm.dst_buff !=
150       simcall_comm_wait__get__comm(r1)->comm.src_buff)
151     return FALSE;
152
153   if (r1->call == SIMCALL_COMM_TEST &&
154       (simcall_comm_test__get__comm(r1) == NULL
155        || simcall_comm_test__get__comm(r1)->comm.src_buff == NULL
156        || simcall_comm_test__get__comm(r1)->comm.dst_buff == NULL))
157     return FALSE;
158
159   if (r2->call == SIMCALL_COMM_TEST &&
160       (simcall_comm_test__get__comm(r2) == NULL
161        || simcall_comm_test__get__comm(r2)->comm.src_buff == NULL
162        || simcall_comm_test__get__comm(r2)->comm.dst_buff == NULL))
163     return FALSE;
164
165   if (r1->call == SIMCALL_COMM_TEST && r2->call == SIMCALL_COMM_WAIT
166       && simcall_comm_test__get__comm(r1)->comm.src_buff ==
167       simcall_comm_wait__get__comm(r2)->comm.src_buff
168       && simcall_comm_test__get__comm(r1)->comm.dst_buff ==
169       simcall_comm_wait__get__comm(r2)->comm.dst_buff)
170     return FALSE;
171
172   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_TEST
173       && simcall_comm_wait__get__comm(r1)->comm.src_buff ==
174       simcall_comm_test__get__comm(r2)->comm.src_buff
175       && simcall_comm_wait__get__comm(r1)->comm.dst_buff ==
176       simcall_comm_test__get__comm(r2)->comm.dst_buff)
177     return FALSE;
178
179   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_TEST
180       && simcall_comm_wait__get__comm(r1)->comm.src_buff != NULL
181       && simcall_comm_wait__get__comm(r1)->comm.dst_buff != NULL
182       && simcall_comm_test__get__comm(r2)->comm.src_buff != NULL
183       && simcall_comm_test__get__comm(r2)->comm.dst_buff != NULL
184       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
185       simcall_comm_test__get__comm(r2)->comm.src_buff
186       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
187       simcall_comm_test__get__comm(r2)->comm.dst_buff
188       && simcall_comm_test__get__comm(r2)->comm.dst_buff !=
189       simcall_comm_wait__get__comm(r1)->comm.src_buff)
190     return FALSE;
191
192   if (r1->call == SIMCALL_COMM_TEST && r2->call == SIMCALL_COMM_WAIT
193       && simcall_comm_test__get__comm(r1)->comm.src_buff != NULL
194       && simcall_comm_test__get__comm(r1)->comm.dst_buff != NULL
195       && simcall_comm_wait__get__comm(r2)->comm.src_buff != NULL
196       && simcall_comm_wait__get__comm(r2)->comm.dst_buff != NULL
197       && simcall_comm_test__get__comm(r1)->comm.dst_buff !=
198       simcall_comm_wait__get__comm(r2)->comm.src_buff
199       && simcall_comm_test__get__comm(r1)->comm.dst_buff !=
200       simcall_comm_wait__get__comm(r2)->comm.dst_buff
201       && simcall_comm_wait__get__comm(r2)->comm.dst_buff !=
202       simcall_comm_test__get__comm(r1)->comm.src_buff)
203     return FALSE;
204
205
206   return TRUE;
207 }
208
209 static char *pointer_to_string(void *pointer)
210 {
211
212   if (XBT_LOG_ISENABLED(mc_request, xbt_log_priority_verbose))
213     return bprintf("%p", pointer);
214
215   return xbt_strdup("(verbose only)");
216 }
217
218 static char *buff_size_to_string(size_t buff_size)
219 {
220
221   if (XBT_LOG_ISENABLED(mc_request, xbt_log_priority_verbose))
222     return bprintf("%zu", buff_size);
223
224   return xbt_strdup("(verbose only)");
225 }
226
227
228 char *MC_request_to_string(smx_simcall_t req, int value)
229 {
230   char *type = NULL, *args = NULL, *str = NULL, *p = NULL, *bs = NULL;
231   smx_synchro_t act = NULL;
232   size_t size = 0;
233
234   switch (req->call) {
235   case SIMCALL_COMM_ISEND:
236     type = xbt_strdup("iSend");
237     p = pointer_to_string(simcall_comm_isend__get__src_buff(req));
238     bs = buff_size_to_string(simcall_comm_isend__get__src_buff_size(req));
239     if (req->issuer->smx_host)
240       args =
241           bprintf("src=(%lu)%s (%s), buff=%s, size=%s", req->issuer->pid,
242                   MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
243                   p, bs);
244     else
245       args =
246           bprintf("src=(%lu)%s, buff=%s, size=%s", req->issuer->pid,
247                   req->issuer->name, p, bs);
248     break;
249   case SIMCALL_COMM_IRECV:
250     size =
251         simcall_comm_irecv__get__dst_buff_size(req) ?
252         *simcall_comm_irecv__get__dst_buff_size(req) : 0;
253     type = xbt_strdup("iRecv");
254     p = pointer_to_string(simcall_comm_irecv__get__dst_buff(req));
255     bs = buff_size_to_string(size);
256     if (req->issuer->smx_host)
257       args =
258           bprintf("dst=(%lu)%s (%s), buff=%s, size=%s", req->issuer->pid,
259                   MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
260                   p, bs);
261     else
262       args =
263           bprintf("dst=(%lu)%s, buff=%s, size=%s", req->issuer->pid,
264                   req->issuer->name, p, bs);
265     break;
266   case SIMCALL_COMM_WAIT:
267     act = simcall_comm_wait__get__comm(req);
268     if (value == -1) {
269       type = xbt_strdup("WaitTimeout");
270       p = pointer_to_string(act);
271       args = bprintf("comm=%s", p);
272     } else {
273       type = xbt_strdup("Wait");
274       p = pointer_to_string(act);
275       args = bprintf("comm=%s [(%lu)%s (%s)-> (%lu)%s (%s)]", p,
276                      act->comm.src_proc ? act->comm.src_proc->pid : 0,
277                      act->comm.src_proc ? MSG_host_get_name(act->comm.src_proc->
278                                                             smx_host) : "",
279                      act->comm.src_proc ? act->comm.src_proc->name : "",
280                      act->comm.dst_proc ? act->comm.dst_proc->pid : 0,
281                      act->comm.dst_proc ? MSG_host_get_name(act->comm.dst_proc->
282                                                             smx_host) : "",
283                      act->comm.dst_proc ? act->comm.dst_proc->name : "");
284     }
285     break;
286   case SIMCALL_COMM_TEST:
287     act = simcall_comm_test__get__comm(req);
288     if (act->comm.src_proc == NULL || act->comm.dst_proc == NULL) {
289       type = xbt_strdup("Test FALSE");
290       p = pointer_to_string(act);
291       args = bprintf("comm=%s", p);
292     } else {
293       type = xbt_strdup("Test TRUE");
294       p = pointer_to_string(act);
295       args = bprintf("comm=%s [(%lu)%s (%s) -> (%lu)%s (%s)]", p,
296                      act->comm.src_proc->pid, act->comm.src_proc->name,
297                      MSG_host_get_name(act->comm.src_proc->smx_host),
298                      act->comm.dst_proc->pid, act->comm.dst_proc->name,
299                      MSG_host_get_name(act->comm.dst_proc->smx_host));
300     }
301     break;
302
303   case SIMCALL_COMM_WAITANY:
304     type = xbt_strdup("WaitAny");
305     if (!xbt_dynar_is_empty(simcall_comm_waitany__get__comms(req))) {
306       p = pointer_to_string(xbt_dynar_get_as
307                             (simcall_comm_waitany__get__comms(req), value,
308                              smx_synchro_t));
309       args =
310           bprintf("comm=%s (%d of %lu)", p, value + 1,
311                   xbt_dynar_length(simcall_comm_waitany__get__comms(req)));
312     } else {
313       args = bprintf("comm at idx %d", value);
314     }
315     break;
316
317   case SIMCALL_COMM_TESTANY:
318     if (value == -1) {
319       type = xbt_strdup("TestAny FALSE");
320       args = xbt_strdup("-");
321     } else {
322       type = xbt_strdup("TestAny");
323       args =
324           bprintf("(%d of %lu)", value + 1,
325                   xbt_dynar_length(simcall_comm_testany__get__comms(req)));
326     }
327     break;
328
329   case SIMCALL_MC_SNAPSHOT:
330     type = xbt_strdup("MC_SNAPSHOT");
331     args = NULL;
332     break;
333
334   case SIMCALL_MC_COMPARE_SNAPSHOTS:
335     type = xbt_strdup("MC_COMPARE_SNAPSHOTS");
336     args = NULL;
337     break;
338
339   case SIMCALL_MC_RANDOM:
340     type = xbt_strdup("MC_RANDOM");
341     args = bprintf("%d", value);
342     break;
343
344   default:
345     THROW_UNIMPLEMENTED;
346   }
347
348   if (args != NULL) {
349     str =
350         bprintf("[(%lu)%s (%s)] %s(%s)", req->issuer->pid,
351                 MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
352                 type, args);
353   } else {
354     str =
355         bprintf("[(%lu)%s (%s)] %s ", req->issuer->pid,
356                 MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
357                 type);
358   }
359
360   xbt_free(args);
361   xbt_free(type);
362   xbt_free(p);
363   xbt_free(bs);
364   return str;
365 }
366
367 unsigned int MC_request_testany_fail(smx_simcall_t req)
368 {
369   unsigned int cursor;
370   smx_synchro_t action;
371
372   xbt_dynar_foreach(simcall_comm_testany__get__comms(req), cursor, action) {
373     if (action->comm.src_proc && action->comm.dst_proc)
374       return FALSE;
375   }
376
377   return TRUE;
378 }
379
380 int MC_request_is_visible(smx_simcall_t req)
381 {
382   return req->call == SIMCALL_COMM_ISEND
383       || req->call == SIMCALL_COMM_IRECV
384       || req->call == SIMCALL_COMM_WAIT
385       || req->call == SIMCALL_COMM_WAITANY
386       || req->call == SIMCALL_COMM_TEST
387       || req->call == SIMCALL_COMM_TESTANY
388       || req->call == SIMCALL_MC_RANDOM
389       || req->call == SIMCALL_MC_SNAPSHOT
390       || req->call == SIMCALL_MC_COMPARE_SNAPSHOTS;
391 }
392
393 int MC_request_is_enabled(smx_simcall_t req)
394 {
395   unsigned int index = 0;
396   smx_synchro_t act = 0;
397
398   switch (req->call) {
399   case SIMCALL_NONE:
400     return FALSE;
401
402   case SIMCALL_COMM_WAIT:
403     /* FIXME: check also that src and dst processes are not suspended */
404     act = simcall_comm_wait__get__comm(req);
405     if (simcall_comm_wait__get__timeout(req) >= 0) {
406       /* If it has a timeout it will be always be enabled, because even if the
407        * communication is not ready, it can timeout and won't block. */
408       if (_sg_mc_timeout == 1)
409         return TRUE;
410     } else {
411       /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
412       if (act->comm.detached && act->comm.src_proc == NULL
413           && act->comm.type == SIMIX_COMM_READY)
414         return (act->comm.dst_proc != NULL);
415     }
416     return (act->comm.src_proc && act->comm.dst_proc);
417
418   case SIMCALL_COMM_WAITANY:
419     /* Check if it has at least one communication ready */
420     xbt_dynar_foreach(simcall_comm_waitany__get__comms(req), index, act)
421       if (act->comm.src_proc && act->comm.dst_proc)
422         return TRUE;
423     return FALSE;
424
425   default:
426     /* The rest of the requests are always enabled */
427     return TRUE;
428   }
429 }
430
431 int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx)
432 {
433   smx_synchro_t act;
434
435   switch (req->call) {
436
437   case SIMCALL_COMM_WAIT:
438     /* FIXME: check also that src and dst processes are not suspended */
439     act = simcall_comm_wait__get__comm(req);
440     return (act->comm.src_proc && act->comm.dst_proc);
441     break;
442
443   case SIMCALL_COMM_WAITANY:
444     act =
445         xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), idx,
446                          smx_synchro_t);
447     return (act->comm.src_proc && act->comm.dst_proc);
448     break;
449
450   case SIMCALL_COMM_TESTANY:
451     act =
452         xbt_dynar_get_as(simcall_comm_testany__get__comms(req), idx,
453                          smx_synchro_t);
454     return (act->comm.src_proc && act->comm.dst_proc);
455     break;
456
457   default:
458     return TRUE;
459   }
460 }
461
462 int MC_process_is_enabled(smx_process_t process)
463 {
464   return MC_request_is_enabled(&process->simcall);
465 }
466
467 char *MC_request_get_dot_output(smx_simcall_t req, int value)
468 {
469
470   char *str = NULL, *label = NULL;
471   smx_synchro_t act = NULL;
472
473   switch (req->call) {
474   case SIMCALL_COMM_ISEND:
475     if (req->issuer->smx_host)
476       label =
477           bprintf("[(%lu)%s] iSend", req->issuer->pid,
478                   MSG_host_get_name(req->issuer->smx_host));
479     else
480       label = bprintf("[(%lu)] iSend", req->issuer->pid);
481     break;
482
483   case SIMCALL_COMM_IRECV:
484     if (req->issuer->smx_host)
485       label =
486           bprintf("[(%lu)%s] iRecv", req->issuer->pid,
487                   MSG_host_get_name(req->issuer->smx_host));
488     else
489       label = bprintf("[(%lu)] iRecv", req->issuer->pid);
490     break;
491
492   case SIMCALL_COMM_WAIT:
493     act = simcall_comm_wait__get__comm(req);
494     if (value == -1) {
495       if (req->issuer->smx_host)
496         label =
497             bprintf("[(%lu)%s] WaitTimeout", req->issuer->pid,
498                     MSG_host_get_name(req->issuer->smx_host));
499       else
500         label = bprintf("[(%lu)] WaitTimeout", req->issuer->pid);
501     } else {
502       if (req->issuer->smx_host)
503         label =
504             bprintf("[(%lu)%s] Wait [(%lu)->(%lu)]", req->issuer->pid,
505                     MSG_host_get_name(req->issuer->smx_host),
506                     act->comm.src_proc ? act->comm.src_proc->pid : 0,
507                     act->comm.dst_proc ? act->comm.dst_proc->pid : 0);
508       else
509         label =
510             bprintf("[(%lu)] Wait [(%lu)->(%lu)]", req->issuer->pid,
511                     act->comm.src_proc ? act->comm.src_proc->pid : 0,
512                     act->comm.dst_proc ? act->comm.dst_proc->pid : 0);
513     }
514     break;
515
516   case SIMCALL_COMM_TEST:
517     act = simcall_comm_test__get__comm(req);
518     if (act->comm.src_proc == NULL || act->comm.dst_proc == NULL) {
519       if (req->issuer->smx_host)
520         label =
521             bprintf("[(%lu)%s] Test FALSE", req->issuer->pid,
522                     MSG_host_get_name(req->issuer->smx_host));
523       else
524         label = bprintf("[(%lu)] Test FALSE", req->issuer->pid);
525     } else {
526       if (req->issuer->smx_host)
527         label =
528             bprintf("[(%lu)%s] Test TRUE", req->issuer->pid,
529                     MSG_host_get_name(req->issuer->smx_host));
530       else
531         label = bprintf("[(%lu)] Test TRUE", req->issuer->pid);
532     }
533     break;
534
535   case SIMCALL_COMM_WAITANY:
536     if (req->issuer->smx_host)
537       label =
538           bprintf("[(%lu)%s] WaitAny [%d of %lu]", req->issuer->pid,
539                   MSG_host_get_name(req->issuer->smx_host), value + 1,
540                   xbt_dynar_length(simcall_comm_waitany__get__comms(req)));
541     else
542       label =
543           bprintf("[(%lu)] WaitAny [%d of %lu]", req->issuer->pid, value + 1,
544                   xbt_dynar_length(simcall_comm_waitany__get__comms(req)));
545     break;
546
547   case SIMCALL_COMM_TESTANY:
548     if (value == -1) {
549       if (req->issuer->smx_host)
550         label =
551             bprintf("[(%lu)%s] TestAny FALSE", req->issuer->pid,
552                     MSG_host_get_name(req->issuer->smx_host));
553       else
554         label = bprintf("[(%lu)] TestAny FALSE", req->issuer->pid);
555     } else {
556       if (req->issuer->smx_host)
557         label =
558             bprintf("[(%lu)%s] TestAny TRUE [%d of %lu]", req->issuer->pid,
559                     MSG_host_get_name(req->issuer->smx_host), value + 1,
560                     xbt_dynar_length(simcall_comm_testany__get__comms(req)));
561       else
562         label =
563             bprintf("[(%lu)] TestAny TRUE [%d of %lu]", req->issuer->pid,
564                     value + 1,
565                     xbt_dynar_length(simcall_comm_testany__get__comms(req)));
566     }
567     break;
568
569   case SIMCALL_MC_RANDOM:
570     if (req->issuer->smx_host)
571       label =
572           bprintf("[(%lu)%s] MC_RANDOM (%d)", req->issuer->pid,
573                   MSG_host_get_name(req->issuer->smx_host), value);
574     else
575       label = bprintf("[(%lu)] MC_RANDOM (%d)", req->issuer->pid, value);
576     break;
577
578   case SIMCALL_MC_SNAPSHOT:
579     if (req->issuer->smx_host)
580       label =
581           bprintf("[(%lu)%s] MC_SNAPSHOT", req->issuer->pid,
582                   MSG_host_get_name(req->issuer->smx_host));
583     else
584       label = bprintf("[(%lu)] MC_SNAPSHOT", req->issuer->pid);
585     break;
586
587   case SIMCALL_MC_COMPARE_SNAPSHOTS:
588     if (req->issuer->smx_host)
589       label =
590           bprintf("[(%lu)%s] MC_COMPARE_SNAPSHOTS", req->issuer->pid,
591                   MSG_host_get_name(req->issuer->smx_host));
592     else
593       label = bprintf("[(%lu)] MC_COMPARE_SNAPSHOTS", req->issuer->pid);
594     break;
595
596   default:
597     THROW_UNIMPLEMENTED;
598   }
599
600   str =
601       bprintf("label = \"%s\", color = %s, fontcolor = %s", label,
602               colors[req->issuer->pid - 1], colors[req->issuer->pid - 1]);
603   xbt_free(label);
604   return str;
605
606 }