Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / simix / popping_bodies.cpp
1 /**********************************************************************/
2 /* File generated by src/simix/simcalls.py from src/simix/simcalls.in */
3 /*                                                                    */
4 /*                    DO NOT EVER CHANGE THIS FILE                    */
5 /*                                                                    */
6 /* change simcalls specification in src/simix/simcalls.in             */
7 /* Copyright (c) 2014-2017. The SimGrid Team. All rights reserved.    */
8 /**********************************************************************/
9
10 /*
11  * Note that the name comes from http://en.wikipedia.org/wiki/Popping
12  * Indeed, the control flow is doing a strange dance in there.
13  *
14  * That's not about http://en.wikipedia.org/wiki/Poop, despite the odor :)
15  */
16
17 #include "smx_private.hpp"
18 #include "src/mc/mc_forward.hpp"
19 #include "xbt/ex.h"
20 #include <functional>
21 #include <simgrid/simix.hpp>
22 /** @cond */ // Please Doxygen, don't look at this
23
24 template<class R, class... T>
25 inline static R simcall(e_smx_simcall_t call, T const&... t)
26 {
27   smx_actor_t self = SIMIX_process_self();
28   simgrid::simix::marshal(&self->simcall, call, t...);
29   if (self != simix_global->maestro_process) {
30     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->name.c_str(),
31               SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call);
32     SIMIX_process_yield(self);
33   } else {
34     SIMIX_simcall_handle(&self->simcall, 0);
35   }
36   return simgrid::simix::unmarshal<R>(self->simcall.result);
37 }
38
39 inline static void simcall_BODY_process_killall()
40 {
41   if (0) /* Go to that function to follow the code flow through the simcall barrier */
42     simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall);
43   return simcall<void>(SIMCALL_PROCESS_KILLALL);
44 }
45
46 inline static void simcall_BODY_process_cleanup(smx_actor_t process)
47 {
48   if (0) /* Go to that function to follow the code flow through the simcall barrier */
49     SIMIX_process_cleanup(process);
50   return simcall<void, smx_actor_t>(SIMCALL_PROCESS_CLEANUP, process);
51 }
52
53 inline static void simcall_BODY_process_suspend(smx_actor_t process)
54 {
55   if (0) /* Go to that function to follow the code flow through the simcall barrier */
56     simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
57   return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
58 }
59
60 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout)
61 {
62   if (0) /* Go to that function to follow the code flow through the simcall barrier */
63     simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
64   return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
65 }
66
67 inline static int simcall_BODY_process_sleep(double duration)
68 {
69   if (0) /* Go to that function to follow the code flow through the simcall barrier */
70     simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
71   return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
72 }
73
74 inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
75 simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host)
76 {
77   if (0) /* Go to that function to follow the code flow through the simcall barrier */
78     SIMIX_execution_start(name, flops_amount, priority, bound, host);
79   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, double, double, double,
80                  sg_host_t>(SIMCALL_EXECUTION_START, name, flops_amount, priority, bound, host);
81 }
82
83 inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl> simcall_BODY_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount, double* bytes_amount, double rate, double timeout)
84 {
85   if (0) /* Go to that function to follow the code flow through the simcall barrier */
86     SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, rate, timeout);
87   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, int, sg_host_t*, double*, double*, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list, flops_amount, bytes_amount, rate, timeout);
88 }
89
90 inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
91 {
92   if (0) /* Go to that function to follow the code flow through the simcall barrier */
93     simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
94   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT, execution);
95 }
96
97 inline static int simcall_BODY_execution_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
98 {
99   if (0) /* Go to that function to follow the code flow through the simcall barrier */
100     simcall_HANDLER_execution_test(&SIMIX_process_self()->simcall, execution);
101   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_TEST, execution);
102 }
103
104 inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data)
105 {
106   if (0) /* Go to that function to follow the code flow through the simcall barrier */
107     SIMIX_process_on_exit(process, fun, data);
108   return simcall<void, smx_actor_t, int_f_pvoid_pvoid_t, void*>(SIMCALL_PROCESS_ON_EXIT, process, fun, data);
109 }
110
111 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> simcall_BODY_comm_iprobe(smx_mailbox_t mbox, int type, simix_match_func_t match_fun, void* data)
112 {
113   if (0) /* Go to that function to follow the code flow through the simcall barrier */
114     simcall_HANDLER_comm_iprobe(&SIMIX_process_self()->simcall, mbox, type, match_fun, data);
115   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_mailbox_t, int, simix_match_func_t, void*>(SIMCALL_COMM_IPROBE, mbox, type, match_fun, data);
116 }
117
118 inline static void simcall_BODY_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, size_t src_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout)
119 {
120   if (0) /* Go to that function to follow the code flow through the simcall barrier */
121     simcall_HANDLER_comm_send(&SIMIX_process_self()->simcall, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
122   return simcall<void, smx_actor_t, smx_mailbox_t, double, double, void*, size_t, simix_match_func_t, simix_copy_data_func_t, void*, double>(SIMCALL_COMM_SEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
123 }
124
125 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> simcall_BODY_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, size_t src_buff_size, simix_match_func_t match_fun, simix_clean_func_t clean_fun, simix_copy_data_func_t copy_data_fun, void* data, int detached)
126 {
127   if (0) /* Go to that function to follow the code flow through the simcall barrier */
128     simcall_HANDLER_comm_isend(&SIMIX_process_self()->simcall, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
129   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, double, double, void*, size_t, simix_match_func_t, simix_clean_func_t, simix_copy_data_func_t, void*, int>(SIMCALL_COMM_ISEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
130 }
131
132 inline static void simcall_BODY_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout, double rate)
133 {
134   if (0) /* Go to that function to follow the code flow through the simcall barrier */
135     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
136   return simcall<void, smx_actor_t, smx_mailbox_t, void*, size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double, double>(SIMCALL_COMM_RECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
137 }
138
139 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> simcall_BODY_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double rate)
140 {
141   if (0) /* Go to that function to follow the code flow through the simcall barrier */
142     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
143   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, void*, size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double>(SIMCALL_COMM_IRECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
144 }
145
146 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout)
147 {
148   if (0) /* Go to that function to follow the code flow through the simcall barrier */
149     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
150   return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
151 }
152
153 inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm, double timeout)
154 {
155   if (0) /* Go to that function to follow the code flow through the simcall barrier */
156     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
157   return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm, timeout);
158 }
159
160 inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
161 {
162   if (0) /* Go to that function to follow the code flow through the simcall barrier */
163     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
164   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
165 }
166
167 inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms, size_t count)
168 {
169   if (0) /* Go to that function to follow the code flow through the simcall barrier */
170     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
171   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY, comms, count);
172 }
173
174 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex)
175 {
176   if (0) /* Go to that function to follow the code flow through the simcall barrier */
177     simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
178   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
179 }
180
181 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex)
182 {
183   if (0) /* Go to that function to follow the code flow through the simcall barrier */
184     simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
185   return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
186 }
187
188 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex)
189 {
190   if (0) /* Go to that function to follow the code flow through the simcall barrier */
191     simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
192   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
193 }
194
195 inline static smx_cond_t simcall_BODY_cond_init()
196 {
197   if (0) /* Go to that function to follow the code flow through the simcall barrier */
198     SIMIX_cond_init();
199   return simcall<smx_cond_t>(SIMCALL_COND_INIT);
200 }
201
202 inline static void simcall_BODY_cond_signal(smx_cond_t cond)
203 {
204   if (0) /* Go to that function to follow the code flow through the simcall barrier */
205     SIMIX_cond_signal(cond);
206   return simcall<void, smx_cond_t>(SIMCALL_COND_SIGNAL, cond);
207 }
208
209 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
210 {
211   if (0) /* Go to that function to follow the code flow through the simcall barrier */
212     simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
213   return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
214 }
215
216 inline static void simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout)
217 {
218   if (0) /* Go to that function to follow the code flow through the simcall barrier */
219     simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
220   return simcall<void, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
221 }
222
223 inline static void simcall_BODY_cond_broadcast(smx_cond_t cond)
224 {
225   if (0) /* Go to that function to follow the code flow through the simcall barrier */
226     SIMIX_cond_broadcast(cond);
227   return simcall<void, smx_cond_t>(SIMCALL_COND_BROADCAST, cond);
228 }
229
230 inline static void simcall_BODY_sem_acquire(smx_sem_t sem)
231 {
232   if (0) /* Go to that function to follow the code flow through the simcall barrier */
233     simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
234   return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
235 }
236
237 inline static void simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout)
238 {
239   if (0) /* Go to that function to follow the code flow through the simcall barrier */
240     simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
241   return simcall<void, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
242 }
243
244 inline static sg_size_t simcall_BODY_storage_read(surf_storage_t st, sg_size_t size)
245 {
246   if (0) /* Go to that function to follow the code flow through the simcall barrier */
247     simcall_HANDLER_storage_read(&SIMIX_process_self()->simcall, st, size);
248   return simcall<sg_size_t, surf_storage_t, sg_size_t>(SIMCALL_STORAGE_READ, st, size);
249 }
250
251 inline static sg_size_t simcall_BODY_storage_write(surf_storage_t st, sg_size_t size)
252 {
253   if (0) /* Go to that function to follow the code flow through the simcall barrier */
254     simcall_HANDLER_storage_write(&SIMIX_process_self()->simcall, st, size);
255   return simcall<sg_size_t, surf_storage_t, sg_size_t>(SIMCALL_STORAGE_WRITE, st, size);
256 }
257
258 inline static int simcall_BODY_mc_random(int min, int max)
259 {
260   if (0) /* Go to that function to follow the code flow through the simcall barrier */
261     simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
262   return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
263 }
264
265 inline static void simcall_BODY_set_category(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> synchro, const char* category)
266 {
267   if (0) /* Go to that function to follow the code flow through the simcall barrier */
268     SIMIX_set_category(synchro, category);
269   return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, const char*>(SIMCALL_SET_CATEGORY, synchro, category);
270 }
271
272 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
273 {
274   if (0) /* Go to that function to follow the code flow through the simcall barrier */
275     SIMIX_run_kernel(code);
276   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
277 }
278
279 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
280 {
281   if (0) /* Go to that function to follow the code flow through the simcall barrier */
282     SIMIX_run_blocking(code);
283   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
284 } /** @endcond */