Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
implement getter s4u::Comm::mailbox()
[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 void simcall_BODY_process_resume(smx_actor_t process) {
64     /* Go to that function to follow the code flow through the simcall barrier */
65     if (0) SIMIX_process_resume(process);
66     return simcall<void, smx_actor_t>(SIMCALL_PROCESS_RESUME, process);
67   }
68
69 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout) {
70     /* Go to that function to follow the code flow through the simcall barrier */
71     if (0) simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
72     return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
73   }
74
75 inline static int simcall_BODY_process_sleep(double duration) {
76     /* Go to that function to follow the code flow through the simcall barrier */
77     if (0) simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
78     return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
79   }
80
81   inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
82   simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound)
83   {
84     /* Go to that function to follow the code flow through the simcall barrier */
85     if (0) simcall_HANDLER_execution_start(&SIMIX_process_self()->simcall, name, flops_amount, priority, bound);
86     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, double, double, double>(
87         SIMCALL_EXECUTION_START, name, flops_amount, priority, bound);
88   }
89
90   inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
91   simcall_BODY_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
92                                         double* bytes_amount, double amount, double rate, double timeout)
93   {
94     /* Go to that function to follow the code flow through the simcall barrier */
95     if (0) SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, amount, rate, timeout);
96     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, int, sg_host_t*, double*,
97                    double*, double, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list,
98                                                     flops_amount, bytes_amount, amount, rate, timeout);
99   }
100
101   inline static void
102   simcall_BODY_execution_cancel(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
103   {
104     /* Go to that function to follow the code flow through the simcall barrier */
105     if (0) SIMIX_execution_cancel(execution);
106     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_CANCEL,
107                                                                                         execution);
108   }
109
110   inline static void
111   simcall_BODY_execution_set_priority(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution,
112                                       double priority)
113   {
114     /* Go to that function to follow the code flow through the simcall barrier */
115     if (0) SIMIX_execution_set_priority(execution, priority);
116     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(
117         SIMCALL_EXECUTION_SET_PRIORITY, execution, priority);
118   }
119
120   inline static void
121   simcall_BODY_execution_set_bound(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution,
122                                    double bound)
123   {
124     /* Go to that function to follow the code flow through the simcall barrier */
125     if (0) SIMIX_execution_set_bound(execution, bound);
126     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(
127         SIMCALL_EXECUTION_SET_BOUND, execution, bound);
128   }
129
130   inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
131   {
132     /* Go to that function to follow the code flow through the simcall barrier */
133     if (0) simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
134     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT,
135                                                                                        execution);
136   }
137
138 inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data) {
139     /* Go to that function to follow the code flow through the simcall barrier */
140     if (0) SIMIX_process_on_exit(process, fun, data);
141     return simcall<void, smx_actor_t, int_f_pvoid_pvoid_t, void*>(SIMCALL_PROCESS_ON_EXIT, process, fun, data);
142   }
143
144 inline static void simcall_BODY_process_auto_restart_set(smx_actor_t process, int auto_restart) {
145     /* Go to that function to follow the code flow through the simcall barrier */
146     if (0) SIMIX_process_auto_restart_set(process, auto_restart);
147     return simcall<void, smx_actor_t, int>(SIMCALL_PROCESS_AUTO_RESTART_SET, process, auto_restart);
148   }
149
150 inline static smx_actor_t simcall_BODY_process_restart(smx_actor_t process) {
151     /* Go to that function to follow the code flow through the simcall barrier */
152     if (0) simcall_HANDLER_process_restart(&SIMIX_process_self()->simcall, process);
153     return simcall<smx_actor_t, smx_actor_t>(SIMCALL_PROCESS_RESTART, process);
154   }
155
156   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
157   simcall_BODY_comm_iprobe(smx_mailbox_t mbox, int type, int src, int tag, simix_match_func_t match_fun, void* data)
158   {
159     /* Go to that function to follow the code flow through the simcall barrier */
160     if (0) simcall_HANDLER_comm_iprobe(&SIMIX_process_self()->simcall, mbox, type, src, tag, match_fun, data);
161     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_mailbox_t, int, int, int,
162                    simix_match_func_t, void*>(SIMCALL_COMM_IPROBE, mbox, type, src, tag, match_fun, data);
163   }
164
165 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) {
166     /* Go to that function to follow the code flow through the simcall barrier */
167     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);
168     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);
169   }
170
171   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
172   simcall_BODY_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff,
173                           size_t src_buff_size, simix_match_func_t match_fun, simix_clean_func_t clean_fun,
174                           simix_copy_data_func_t copy_data_fun, void* data, int detached)
175   {
176     /* Go to that function to follow the code flow through the simcall barrier */
177     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);
178     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, double,
179                    double, void*, size_t, simix_match_func_t, simix_clean_func_t, simix_copy_data_func_t, void*, int>(
180         SIMCALL_COMM_ISEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun,
181         data, detached);
182   }
183
184 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) {
185     /* Go to that function to follow the code flow through the simcall barrier */
186     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);
187     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);
188   }
189
190   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
191   simcall_BODY_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size,
192                           simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double rate)
193   {
194     /* Go to that function to follow the code flow through the simcall barrier */
195     if (0) simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
196     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, void*,
197                    size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double>(
198         SIMCALL_COMM_IRECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
199   }
200
201 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout) {
202     /* Go to that function to follow the code flow through the simcall barrier */
203     if (0) simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
204     return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
205   }
206
207   inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm,
208                                             double timeout)
209   {
210     /* Go to that function to follow the code flow through the simcall barrier */
211     if (0) simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
212     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm,
213                                                                                                 timeout);
214   }
215
216   inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
217   {
218     /* Go to that function to follow the code flow through the simcall barrier */
219     if (0) simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
220     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
221   }
222
223   inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms,
224                                               size_t count)
225   {
226     /* Go to that function to follow the code flow through the simcall barrier */
227     if (0) simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
228     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY,
229                                                                                                 comms, count);
230   }
231
232 inline static smx_mutex_t simcall_BODY_mutex_init() {
233     /* Go to that function to follow the code flow through the simcall barrier */
234     if (0) simcall_HANDLER_mutex_init(&SIMIX_process_self()->simcall);
235     return simcall<smx_mutex_t>(SIMCALL_MUTEX_INIT);
236   }
237
238 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex) {
239     /* Go to that function to follow the code flow through the simcall barrier */
240     if (0) simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
241     return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
242   }
243
244 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex) {
245     /* Go to that function to follow the code flow through the simcall barrier */
246     if (0) simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
247     return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
248   }
249
250 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex) {
251     /* Go to that function to follow the code flow through the simcall barrier */
252     if (0) simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
253     return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
254   }
255
256 inline static smx_cond_t simcall_BODY_cond_init() {
257     /* Go to that function to follow the code flow through the simcall barrier */
258     if (0) SIMIX_cond_init();
259     return simcall<smx_cond_t>(SIMCALL_COND_INIT);
260   }
261
262 inline static void simcall_BODY_cond_signal(smx_cond_t cond) {
263     /* Go to that function to follow the code flow through the simcall barrier */
264     if (0) SIMIX_cond_signal(cond);
265     return simcall<void, smx_cond_t>(SIMCALL_COND_SIGNAL, cond);
266   }
267
268 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex) {
269     /* Go to that function to follow the code flow through the simcall barrier */
270     if (0) simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
271     return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
272   }
273
274 inline static void simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout) {
275     /* Go to that function to follow the code flow through the simcall barrier */
276     if (0) simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
277     return simcall<void, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
278   }
279
280 inline static void simcall_BODY_cond_broadcast(smx_cond_t cond) {
281     /* Go to that function to follow the code flow through the simcall barrier */
282     if (0) SIMIX_cond_broadcast(cond);
283     return simcall<void, smx_cond_t>(SIMCALL_COND_BROADCAST, cond);
284   }
285
286 inline static smx_sem_t simcall_BODY_sem_init(unsigned int capacity) {
287     /* Go to that function to follow the code flow through the simcall barrier */
288     if (0) SIMIX_sem_init(capacity);
289     return simcall<smx_sem_t, unsigned int>(SIMCALL_SEM_INIT, capacity);
290   }
291
292 inline static void simcall_BODY_sem_release(smx_sem_t sem) {
293     /* Go to that function to follow the code flow through the simcall barrier */
294     if (0) simcall_HANDLER_sem_release(&SIMIX_process_self()->simcall, sem);
295     return simcall<void, smx_sem_t>(SIMCALL_SEM_RELEASE, sem);
296   }
297
298 inline static int simcall_BODY_sem_would_block(smx_sem_t sem) {
299     /* Go to that function to follow the code flow through the simcall barrier */
300     if (0) simcall_HANDLER_sem_would_block(&SIMIX_process_self()->simcall, sem);
301     return simcall<int, smx_sem_t>(SIMCALL_SEM_WOULD_BLOCK, sem);
302   }
303
304 inline static void simcall_BODY_sem_acquire(smx_sem_t sem) {
305     /* Go to that function to follow the code flow through the simcall barrier */
306     if (0) simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
307     return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
308   }
309
310 inline static void simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout) {
311     /* Go to that function to follow the code flow through the simcall barrier */
312     if (0) simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
313     return simcall<void, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
314   }
315
316 inline static int simcall_BODY_sem_get_capacity(smx_sem_t sem) {
317     /* Go to that function to follow the code flow through the simcall barrier */
318     if (0) simcall_HANDLER_sem_get_capacity(&SIMIX_process_self()->simcall, sem);
319     return simcall<int, smx_sem_t>(SIMCALL_SEM_GET_CAPACITY, sem);
320   }
321
322   inline static sg_size_t simcall_BODY_file_read(surf_file_t fd, sg_size_t size, sg_host_t host)
323   {
324     /* Go to that function to follow the code flow through the simcall barrier */
325     if (0) simcall_HANDLER_file_read(&SIMIX_process_self()->simcall, fd, size, host);
326     return simcall<sg_size_t, surf_file_t, sg_size_t, sg_host_t>(SIMCALL_FILE_READ, fd, size, host);
327   }
328
329   inline static sg_size_t simcall_BODY_file_write(surf_file_t fd, sg_size_t size, sg_host_t host)
330   {
331     /* Go to that function to follow the code flow through the simcall barrier */
332     if (0) simcall_HANDLER_file_write(&SIMIX_process_self()->simcall, fd, size, host);
333     return simcall<sg_size_t, surf_file_t, sg_size_t, sg_host_t>(SIMCALL_FILE_WRITE, fd, size, host);
334   }
335
336   inline static surf_file_t simcall_BODY_file_open(const char* mount, const char* path, sg_storage_t st)
337   {
338     /* Go to that function to follow the code flow through the simcall barrier */
339     if (0)
340       simcall_HANDLER_file_open(&SIMIX_process_self()->simcall, mount, path, st);
341     return simcall<surf_file_t, const char*, const char*, sg_storage_t>(SIMCALL_FILE_OPEN, mount, path, st);
342   }
343
344   inline static int simcall_BODY_file_close(surf_file_t fd, sg_host_t host)
345   {
346     /* Go to that function to follow the code flow through the simcall barrier */
347     if (0) simcall_HANDLER_file_close(&SIMIX_process_self()->simcall, fd, host);
348     return simcall<int, surf_file_t, sg_host_t>(SIMCALL_FILE_CLOSE, fd, host);
349   }
350
351 inline static int simcall_BODY_mc_random(int min, int max) {
352     /* Go to that function to follow the code flow through the simcall barrier */
353     if (0) simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
354     return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
355   }
356
357   inline static void simcall_BODY_set_category(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> synchro,
358                                                const char* category)
359   {
360     /* Go to that function to follow the code flow through the simcall barrier */
361     if (0) SIMIX_set_category(synchro, category);
362     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, const char*>(
363         SIMCALL_SET_CATEGORY, synchro, category);
364   }
365
366 inline static void simcall_BODY_run_kernel(std::function<void()> const* code) {
367     /* Go to that function to follow the code flow through the simcall barrier */
368     if (0) SIMIX_run_kernel(code);
369     return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
370   }
371
372 inline static void simcall_BODY_run_blocking(std::function<void()> const* code) {
373     /* Go to that function to follow the code flow through the simcall barrier */
374     if (0) SIMIX_run_blocking(code);
375     return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
376   }/** @endcond */