1 /* Copyright (c) 2008-2012 Da SimGrid Team. All rights reserved. */
3 /* This program is free software; you can redistribute it and/or modify it
4 * under the terms of the license (GNU LGPL) which comes with this package. */
6 #include "../simix/smx_private.h"
8 #include "mc_private.h"
11 * \brief Creates a state data structure used by the exploration algorithm
13 mc_state_t MC_state_new()
15 mc_state_t state = NULL;
17 state = xbt_new0(s_mc_state_t, 1);
18 state->max_pid = simix_process_maxpid;
19 state->proc_status = xbt_new0(s_mc_procstate_t, state->max_pid);
20 state->system_state = NULL;
22 mc_stats->expanded_states++;
26 mc_state_t MC_state_pair_new(void)
28 mc_state_t state = NULL;
30 state = xbt_new0(s_mc_state_t, 1);
31 state->max_pid = simix_process_maxpid;
32 state->proc_status = xbt_new0(s_mc_procstate_t, state->max_pid);
34 //mc_stats->expanded_states++;
39 * \brief Deletes a state data structure
40 * \param trans The state to be deleted
42 void MC_state_delete(mc_state_t state)
44 xbt_free(state->proc_status);
48 void MC_state_interleave_process(mc_state_t state, smx_process_t process)
50 state->proc_status[process->pid].state = MC_INTERLEAVE;
51 state->proc_status[process->pid].interleave_count = 0;
54 void MC_state_remove_interleave_process(mc_state_t state, smx_process_t process)
56 if(state->proc_status[process->pid].state == MC_INTERLEAVE)
57 state->proc_status[process->pid].state = MC_DONE;
60 unsigned int MC_state_interleave_size(mc_state_t state)
62 unsigned int i, size=0;
64 for(i=0; i < state->max_pid; i++){
65 if(state->proc_status[i].state == MC_INTERLEAVE)
72 int MC_state_process_is_done(mc_state_t state, smx_process_t process){
73 return state->proc_status[process->pid].state == MC_DONE ? TRUE : FALSE;
76 void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int value)
78 state->executed_req = *req;
79 state->req_num = value;
81 /* The waitany and testany request are transformed into a wait or test request over the
82 * corresponding communication action so it can be treated later by the dependence
85 case SIMCALL_COMM_WAITANY:
86 state->internal_req.call = SIMCALL_COMM_WAIT;
87 state->internal_req.issuer = req->issuer;
88 state->internal_comm = *xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value, smx_action_t);
89 simcall_comm_wait__set__comm(&state->internal_req, &state->internal_comm);
90 simcall_comm_wait__set__timeout(&state->internal_req, 0);
93 case SIMCALL_COMM_TESTANY:
94 state->internal_req.call = SIMCALL_COMM_TEST;
95 state->internal_req.issuer = req->issuer;
98 state->internal_comm = *xbt_dynar_get_as(simcall_comm_testany__get__comms(req), value, smx_action_t);
100 simcall_comm_test__set__comm(&state->internal_req, xbt_dynar_get_as(simcall_comm_testany__get__comms(req), value, smx_action_t));
101 simcall_comm_test__set__result(&state->internal_req, value);
104 case SIMCALL_COMM_WAIT:
105 state->internal_req = *req;
106 state->internal_comm = *(simcall_comm_wait__get__comm(req));
107 simcall_comm_wait__set__comm(&state->executed_req, &state->internal_comm);
108 simcall_comm_wait__set__comm(&state->internal_req, &state->internal_comm);
111 case SIMCALL_COMM_TEST:
112 state->internal_req = *req;
113 state->internal_comm = *simcall_comm_test__get__comm(req);
114 simcall_comm_test__set__comm(&state->executed_req, &state->internal_comm);
115 simcall_comm_test__set__comm(&state->internal_req, &state->internal_comm);
119 state->internal_req = *req;
124 smx_simcall_t MC_state_get_executed_request(mc_state_t state, int *value)
126 *value = state->req_num;
127 return &state->executed_req;
130 smx_simcall_t MC_state_get_internal_request(mc_state_t state)
132 return &state->internal_req;
135 smx_simcall_t MC_state_get_request(mc_state_t state, int *value)
137 smx_process_t process = NULL;
138 mc_procstate_t procstate = NULL;
139 unsigned int start_count;
141 xbt_swag_foreach(process, simix_global->process_list){
142 procstate = &state->proc_status[process->pid];
144 if(procstate->state == MC_INTERLEAVE){
145 if(MC_process_is_enabled(process)){
146 switch(process->simcall.call){
147 case SIMCALL_COMM_WAITANY:
149 while(procstate->interleave_count < xbt_dynar_length(simcall_comm_waitany__get__comms(&process->simcall))){
150 if(MC_request_is_enabled_by_idx(&process->simcall, procstate->interleave_count++)){
151 *value = procstate->interleave_count-1;
156 if(procstate->interleave_count >= xbt_dynar_length(simcall_comm_waitany__get__comms(&process->simcall)))
157 procstate->state = MC_DONE;
160 return &process->simcall;
164 case SIMCALL_COMM_TESTANY:
165 start_count = procstate->interleave_count;
167 while(procstate->interleave_count < xbt_dynar_length(simcall_comm_testany__get__comms(&process->simcall))){
168 if(MC_request_is_enabled_by_idx(&process->simcall, procstate->interleave_count++)){
169 *value = procstate->interleave_count - 1;
174 if(procstate->interleave_count >= xbt_dynar_length(simcall_comm_testany__get__comms(&process->simcall)))
175 procstate->state = MC_DONE;
177 if(*value != -1 || start_count == 0)
178 return &process->simcall;
182 case SIMCALL_COMM_WAIT:
183 if(simcall_comm_wait__get__comm(&process->simcall)->comm.src_proc
184 && simcall_comm_wait__get__comm(&process->simcall)->comm.dst_proc){
189 procstate->state = MC_DONE;
190 return &process->simcall;
195 procstate->state = MC_DONE;
197 return &process->simcall;