Logo AND Algorithmique Numérique Distribuée

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