Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ba18225497ff6eed6b99b4d35d3f6d81aa81c2c4
[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 <functional>
18 #include "smx_private.h"
19 #include "src/mc/mc_forward.hpp"
20 #include "xbt/ex.h"
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_kill(smx_actor_t process) {
40     /* Go to that function to follow the code flow through the simcall barrier */
41     if (0) simcall_HANDLER_process_kill(&SIMIX_process_self()->simcall, process);
42     return simcall<void, smx_actor_t>(SIMCALL_PROCESS_KILL, process);
43   }
44
45 inline static void simcall_BODY_process_killall(int reset_pid) {
46     /* Go to that function to follow the code flow through the simcall barrier */
47     if (0) simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall, reset_pid);
48     return simcall<void, int>(SIMCALL_PROCESS_KILLALL, reset_pid);
49   }
50
51 inline static void simcall_BODY_process_cleanup(smx_actor_t process) {
52     /* Go to that function to follow the code flow through the simcall barrier */
53     if (0) SIMIX_process_cleanup(process);
54     return simcall<void, smx_actor_t>(SIMCALL_PROCESS_CLEANUP, process);
55   }
56
57 inline static void simcall_BODY_process_suspend(smx_actor_t process) {
58     /* Go to that function to follow the code flow through the simcall barrier */
59     if (0) simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
60     return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
61   }
62
63 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout) {
64     /* Go to that function to follow the code flow through the simcall barrier */
65     if (0) simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
66     return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
67   }
68
69 inline static int simcall_BODY_process_sleep(double duration) {
70     /* Go to that function to follow the code flow through the simcall barrier */
71     if (0) simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
72     return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
73   }
74
75   inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
76   simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound)
77   {
78     /* Go to that function to follow the code flow through the simcall barrier */
79     if (0) simcall_HANDLER_execution_start(&SIMIX_process_self()->simcall, name, flops_amount, priority, bound);
80     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, double, double, double>(
81         SIMCALL_EXECUTION_START, name, flops_amount, priority, bound);
82   }
83
84   inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
85   simcall_BODY_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
86                                         double* bytes_amount, double amount, double rate, double timeout)
87   {
88     /* Go to that function to follow the code flow through the simcall barrier */
89     if (0) SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, amount, rate, timeout);
90     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, int, sg_host_t*, double*,
91                    double*, double, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list,
92                                                     flops_amount, bytes_amount, amount, rate, timeout);
93   }
94
95   inline static void
96   simcall_BODY_execution_cancel(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
97   {
98     /* Go to that function to follow the code flow through the simcall barrier */
99     if (0) SIMIX_execution_cancel(execution);
100     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_CANCEL,
101                                                                                         execution);
102   }
103
104   inline static void
105   simcall_BODY_execution_set_priority(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution,
106                                       double priority)
107   {
108     /* Go to that function to follow the code flow through the simcall barrier */
109     if (0) SIMIX_execution_set_priority(execution, priority);
110     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(
111         SIMCALL_EXECUTION_SET_PRIORITY, execution, priority);
112   }
113
114   inline static void
115   simcall_BODY_execution_set_bound(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution,
116                                    double bound)
117   {
118     /* Go to that function to follow the code flow through the simcall barrier */
119     if (0) SIMIX_execution_set_bound(execution, bound);
120     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(
121         SIMCALL_EXECUTION_SET_BOUND, execution, bound);
122   }
123
124   inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
125   {
126     /* Go to that function to follow the code flow through the simcall barrier */
127     if (0) simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
128     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT,
129                                                                                        execution);
130   }
131
132 inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data) {
133     /* Go to that function to follow the code flow through the simcall barrier */
134     if (0) SIMIX_process_on_exit(process, fun, data);
135     return simcall<void, smx_actor_t, int_f_pvoid_pvoid_t, void*>(SIMCALL_PROCESS_ON_EXIT, process, fun, data);
136   }
137
138   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
139   simcall_BODY_comm_iprobe(smx_mailbox_t mbox, int type, simix_match_func_t match_fun, void* data)
140   {
141     /* Go to that function to follow the code flow through the simcall barrier */
142     if (0)
143       simcall_HANDLER_comm_iprobe(&SIMIX_process_self()->simcall, mbox, type, match_fun, data);
144     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_mailbox_t, int,
145                    simix_match_func_t, void*>(SIMCALL_COMM_IPROBE, mbox, type, match_fun, data);
146   }
147
148 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) {
149     /* Go to that function to follow the code flow through the simcall barrier */
150     if (0) 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);
151     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);
152   }
153
154   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
155   simcall_BODY_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff,
156                           size_t src_buff_size, simix_match_func_t match_fun, simix_clean_func_t clean_fun,
157                           simix_copy_data_func_t copy_data_fun, void* data, int detached)
158   {
159     /* Go to that function to follow the code flow through the simcall barrier */
160     if (0) 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);
161     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, double,
162                    double, void*, size_t, simix_match_func_t, simix_clean_func_t, simix_copy_data_func_t, void*, int>(
163         SIMCALL_COMM_ISEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun,
164         data, detached);
165   }
166
167 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) {
168     /* Go to that function to follow the code flow through the simcall barrier */
169     if (0) simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
170     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);
171   }
172
173   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
174   simcall_BODY_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size,
175                           simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double rate)
176   {
177     /* Go to that function to follow the code flow through the simcall barrier */
178     if (0) simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
179     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, void*,
180                    size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double>(
181         SIMCALL_COMM_IRECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
182   }
183
184 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout) {
185     /* Go to that function to follow the code flow through the simcall barrier */
186     if (0) simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
187     return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
188   }
189
190   inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm,
191                                             double timeout)
192   {
193     /* Go to that function to follow the code flow through the simcall barrier */
194     if (0) simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
195     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm,
196                                                                                                 timeout);
197   }
198
199   inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
200   {
201     /* Go to that function to follow the code flow through the simcall barrier */
202     if (0) simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
203     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
204   }
205
206   inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms,
207                                               size_t count)
208   {
209     /* Go to that function to follow the code flow through the simcall barrier */
210     if (0) simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
211     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY,
212                                                                                                 comms, count);
213   }
214
215 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex) {
216     /* Go to that function to follow the code flow through the simcall barrier */
217     if (0) simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
218     return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
219   }
220
221 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex) {
222     /* Go to that function to follow the code flow through the simcall barrier */
223     if (0) simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
224     return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
225   }
226
227 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex) {
228     /* Go to that function to follow the code flow through the simcall barrier */
229     if (0) simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
230     return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
231   }
232
233 inline static smx_cond_t simcall_BODY_cond_init() {
234     /* Go to that function to follow the code flow through the simcall barrier */
235     if (0) SIMIX_cond_init();
236     return simcall<smx_cond_t>(SIMCALL_COND_INIT);
237   }
238
239 inline static void simcall_BODY_cond_signal(smx_cond_t cond) {
240     /* Go to that function to follow the code flow through the simcall barrier */
241     if (0) SIMIX_cond_signal(cond);
242     return simcall<void, smx_cond_t>(SIMCALL_COND_SIGNAL, cond);
243   }
244
245 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex) {
246     /* Go to that function to follow the code flow through the simcall barrier */
247     if (0) simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
248     return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
249   }
250
251 inline static void simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout) {
252     /* Go to that function to follow the code flow through the simcall barrier */
253     if (0) simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
254     return simcall<void, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
255   }
256
257 inline static void simcall_BODY_cond_broadcast(smx_cond_t cond) {
258     /* Go to that function to follow the code flow through the simcall barrier */
259     if (0) SIMIX_cond_broadcast(cond);
260     return simcall<void, smx_cond_t>(SIMCALL_COND_BROADCAST, cond);
261   }
262
263 inline static void simcall_BODY_sem_acquire(smx_sem_t sem) {
264     /* Go to that function to follow the code flow through the simcall barrier */
265     if (0) simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
266     return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
267   }
268
269 inline static void simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout) {
270     /* Go to that function to follow the code flow through the simcall barrier */
271     if (0) simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
272     return simcall<void, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
273   }
274
275   inline static sg_size_t simcall_BODY_file_read(surf_file_t fd, sg_size_t size)
276   {
277     /* Go to that function to follow the code flow through the simcall barrier */
278     if (0)
279       simcall_HANDLER_file_read(&SIMIX_process_self()->simcall, fd, size);
280     return simcall<sg_size_t, surf_file_t, sg_size_t>(SIMCALL_FILE_READ, fd, size);
281   }
282
283   inline static sg_size_t simcall_BODY_file_write(surf_file_t fd, sg_size_t size)
284   {
285     /* Go to that function to follow the code flow through the simcall barrier */
286     if (0)
287       simcall_HANDLER_file_write(&SIMIX_process_self()->simcall, fd, size);
288     return simcall<sg_size_t, surf_file_t, sg_size_t>(SIMCALL_FILE_WRITE, fd, size);
289   }
290
291 inline static int simcall_BODY_mc_random(int min, int max) {
292     /* Go to that function to follow the code flow through the simcall barrier */
293     if (0) simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
294     return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
295   }
296
297   inline static void simcall_BODY_set_category(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> synchro,
298                                                const char* category)
299   {
300     /* Go to that function to follow the code flow through the simcall barrier */
301     if (0) SIMIX_set_category(synchro, category);
302     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, const char*>(
303         SIMCALL_SET_CATEGORY, synchro, category);
304   }
305
306 inline static void simcall_BODY_run_kernel(std::function<void()> const* code) {
307     /* Go to that function to follow the code flow through the simcall barrier */
308     if (0) SIMIX_run_kernel(code);
309     return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
310   }
311
312 inline static void simcall_BODY_run_blocking(std::function<void()> const* code) {
313     /* Go to that function to follow the code flow through the simcall barrier */
314     if (0) SIMIX_run_blocking(code);
315     return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
316   }/** @endcond */