Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Initial support MC record/replay
[simgrid.git] / src / mc / mc_base.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 <simgrid/simix.h>
8
9 #include "mc_base.h"
10 #include "../simix/smx_private.h"
11 #include "mc_record.h"
12
13 XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
14
15 /**
16  * \brief Schedules all the process that are ready to run
17  */
18 void MC_wait_for_requests(void)
19 {
20   smx_process_t process;
21   smx_simcall_t req;
22   unsigned int iter;
23
24   while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
25     SIMIX_process_runall();
26     xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
27       req = &process->simcall;
28       if (req->call != SIMCALL_NONE && !MC_request_is_visible(req))
29         SIMIX_simcall_handle(req, 0);
30     }
31   }
32 }
33
34 int MC_request_is_enabled(smx_simcall_t req)
35 {
36   unsigned int index = 0;
37   smx_synchro_t act = 0;
38
39   switch (req->call) {
40   case SIMCALL_NONE:
41     return FALSE;
42
43   case SIMCALL_COMM_WAIT:
44     /* FIXME: check also that src and dst processes are not suspended */
45     act = simcall_comm_wait__get__comm(req);
46     if (simcall_comm_wait__get__timeout(req) >= 0) {
47       /* If it has a timeout it will be always be enabled, because even if the
48        * communication is not ready, it can timeout and won't block. */
49       if (_sg_mc_timeout == 1)
50         return TRUE;
51     } else {
52       /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
53       if (act->comm.detached && act->comm.src_proc == NULL
54           && act->comm.type == SIMIX_COMM_READY)
55         return (act->comm.dst_proc != NULL);
56     }
57     return (act->comm.src_proc && act->comm.dst_proc);
58
59   case SIMCALL_COMM_WAITANY:
60     /* Check if it has at least one communication ready */
61     xbt_dynar_foreach(simcall_comm_waitany__get__comms(req), index, act)
62       if (act->comm.src_proc && act->comm.dst_proc)
63         return TRUE;
64     return FALSE;
65
66   default:
67     /* The rest of the requests are always enabled */
68     return TRUE;
69   }
70 }
71
72 int MC_request_is_visible(smx_simcall_t req)
73 {
74   return req->call == SIMCALL_COMM_ISEND
75       || req->call == SIMCALL_COMM_IRECV
76       || req->call == SIMCALL_COMM_WAIT
77       || req->call == SIMCALL_COMM_WAITANY
78       || req->call == SIMCALL_COMM_TEST
79       || req->call == SIMCALL_COMM_TESTANY
80       || req->call == SIMCALL_MC_RANDOM
81 #ifdef HAVE_MC
82       || req->call == SIMCALL_MC_SNAPSHOT
83       || req->call == SIMCALL_MC_COMPARE_SNAPSHOTS
84 #endif
85       ;
86 }
87
88 int MC_random(int min, int max)
89 {
90   /*FIXME: return mc_current_state->executed_transition->random.value; */
91   return simcall_mc_random(min, max);
92 }
93
94 static int prng_random(int min, int max)
95 {
96   unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;
97   unsigned long input_size = (unsigned long) RAND_MAX + 1;
98   unsigned long reject_size = input_size % output_size;
99   unsigned long accept_size = input_size - reject_size; // module*accept_size
100
101   // Use rejection in order to avoid skew
102   long x;
103   do {
104     x = random();
105   } while( x >= accept_size );
106   return min + (x % output_size);
107 }
108
109 int simcall_HANDLER_mc_random(smx_simcall_t simcall, int min, int max)
110 {
111   if (!MC_is_active() && !MC_record_path){
112     return prng_random(min, max);
113   }
114
115   return simcall->mc_value;
116 }