Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc' into mc++
[simgrid.git] / src / simix / smx_smurf.c
1 /* Copyright (c) 2010-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 "smx_private.h"
8 #include "xbt/fifo.h"
9 #include "xbt/xbt_os_thread.h"
10 #ifdef HAVE_MC
11 #include "mc/mc_private.h"
12 #endif
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_smurf, simix,
15                                 "Logging specific to SIMIX (SMURF)");
16
17 XBT_INLINE smx_simcall_t SIMIX_simcall_mine()
18 {
19   smx_process_t issuer = SIMIX_process_self();
20   return &issuer->simcall;
21 }
22
23 /**
24  * \brief Makes the current process do a simcall to the kernel and yields
25  * until completion. If the current thread is maestro, we don't yield and
26  * execute the simcall directly.
27  * \param self the current process
28  */
29 void SIMIX_simcall_push(smx_process_t self)
30 {
31   if (self != simix_global->maestro_process) {
32     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->name,
33               SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call);
34     SIMIX_process_yield(self);
35   } else {
36     XBT_DEBUG("I'm the maestro, execute the simcall directly");
37     SIMIX_simcall_pre(&self->simcall, 0);
38   }
39 }
40
41 void SIMIX_simcall_answer(smx_simcall_t simcall)
42 {
43   if (simcall->issuer != simix_global->maestro_process){
44     XBT_DEBUG("Answer simcall %s (%d) issued by %s (%p)", SIMIX_simcall_name(simcall->call), (int)simcall->call,
45         simcall->issuer->name, simcall->issuer);
46     simcall->issuer->simcall.call = SIMCALL_NONE;
47 /*    This check should be useless and slows everyone. Reactivate if you see something
48  *    weird in process scheduling.
49  */
50 /*    if(!xbt_dynar_member(simix_global->process_to_run, &(simcall->issuer))) */
51     xbt_dynar_push_as(simix_global->process_to_run, smx_process_t, simcall->issuer);
52 /*    else DIE_IMPOSSIBLE; */
53   }
54 }
55
56 void SIMIX_simcall_pre(smx_simcall_t simcall, int value)
57 {
58   XBT_DEBUG("Handling simcall %p: %s", simcall, SIMIX_simcall_name(simcall->call));
59   simcall->mc_value = value;
60   if (simcall->issuer->context->iwannadie && simcall->call != SIMCALL_PROCESS_CLEANUP)
61     return;
62   switch (simcall->call) {
63 #include "simcalls_generated_case.c"
64     case NUM_SIMCALLS:;
65       break;
66     case SIMCALL_NONE:;
67       THROWF(arg_error,0,"Asked to do the noop syscall on %s@%s",
68           SIMIX_process_get_name(simcall->issuer),
69           SIMIX_host_get_name(SIMIX_process_get_host(simcall->issuer))
70           );
71       break;
72
73     /* ****************************************************************************************** */
74     /* TUTORIAL: New API                                                                        */
75     /* ****************************************************************************************** */
76     case SIMCALL_NEW_API_INIT:
77       SIMIX_pre_new_api_fct(simcall);
78       break;
79   }
80 }
81
82 void SIMIX_simcall_post(smx_action_t action)
83 {
84   switch (action->type) {
85
86     case SIMIX_ACTION_EXECUTE:
87     case SIMIX_ACTION_PARALLEL_EXECUTE:
88       SIMIX_post_host_execute(action);
89       break;
90
91     case SIMIX_ACTION_COMMUNICATE:
92       SIMIX_post_comm(action);
93       break;
94
95     case SIMIX_ACTION_SLEEP:
96       SIMIX_post_process_sleep(action);
97       break;
98
99     case SIMIX_ACTION_SYNCHRO:
100       SIMIX_post_synchro(action);
101       break;
102
103     case SIMIX_ACTION_IO:
104       SIMIX_post_io(action);
105       break;
106
107     /* ****************************************************************************************** */
108     /* TUTORIAL: New API                                                                        */
109     /* ****************************************************************************************** */
110     case SIMIX_ACTION_NEW_API:
111       SIMIX_post_new_api(action);
112       break;
113   }
114 }
115
116 /* New Simcal interface */
117
118 /* FIXME: add types for every simcall */
119 //const char *simcall_types[NUM_SIMCALLS] = { [SIMCALL_HOST_EXECUTE] = "%s%p%f%f%p" };
120 /* FIXME find a way to make this work
121 simcall_handler_t simcall_table[NUM_SIMCALLS] = {
122 #undef SIMCALL_ENUM_ELEMENT
123 #define SIMCALL_ENUM_ELEMENT(x,y) &y // generate strings from the enumeration values 
124 SIMCALL_LIST
125 #undef SIMCALL_ENUM_ELEMENT
126 };*/
127
128 /* New Simcal interface */
129
130 /* FIXME: add types for every simcall */
131 //const char *simcall_types[NUM_SIMCALLS] = { [SIMCALL_HOST_EXECUTE] = "%s%p%f%f%p", [SIMCALL_HOST_EXECUTION_WAIT] = "%p%p" };
132
133
134 /*TOFIX find a way to make this work
135 simcall_handler_t simcall_table[NUM_SIMCALLS] = {
136 #undef SIMCALL_ENUM_ELEMENT
137 #define SIMCALL_ENUM_ELEMENT(x,y) &y // generate strings from the enumeration values
138 SIMCALL_LIST
139 #undef SIMCALL_ENUM_ELEMENT
140 };*/
141