Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize simcall process_cleanup.
[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-2018. 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 "src/simix/smx_synchro_private.hpp"
20 #include "xbt/ex.h"
21 #include <functional>
22 #include <simgrid/simix.hpp>
23 /** @cond */ // Please Doxygen, don't look at this
24
25 template<class R, class... T>
26 inline static R simcall(e_smx_simcall_t call, T const&... t)
27 {
28   smx_actor_t self = SIMIX_process_self();
29   simgrid::simix::marshal(&self->simcall, call, t...);
30   if (self != simix_global->maestro_process) {
31     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->name.c_str(),
32               SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call);
33     SIMIX_process_yield(self);
34   } else {
35     SIMIX_simcall_handle(&self->simcall, 0);
36   }
37   return simgrid::simix::unmarshal<R>(self->simcall.result);
38 }
39
40 inline static void simcall_BODY_process_killall()
41 {
42   if (0) /* Go to that function to follow the code flow through the simcall barrier */
43     simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall);
44   return simcall<void>(SIMCALL_PROCESS_KILLALL);
45 }
46
47 inline static void simcall_BODY_process_suspend(smx_actor_t process)
48 {
49   if (0) /* Go to that function to follow the code flow through the simcall barrier */
50     simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
51   return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
52 }
53
54 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout)
55 {
56   if (0) /* Go to that function to follow the code flow through the simcall barrier */
57     simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
58   return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
59 }
60
61 inline static int simcall_BODY_process_sleep(double duration)
62 {
63   if (0) /* Go to that function to follow the code flow through the simcall barrier */
64     simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
65   return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
66 }
67
68 inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
69 simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host)
70 {
71   if (0) /* Go to that function to follow the code flow through the simcall barrier */
72     SIMIX_execution_start(name, flops_amount, priority, bound, host);
73   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, double, double, double,
74                  sg_host_t>(SIMCALL_EXECUTION_START, name, flops_amount, priority, bound, host);
75 }
76
77 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)
78 {
79   if (0) /* Go to that function to follow the code flow through the simcall barrier */
80     SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, rate, timeout);
81   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);
82 }
83
84 inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
85 {
86   if (0) /* Go to that function to follow the code flow through the simcall barrier */
87     simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
88   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT, execution);
89 }
90
91 inline static int simcall_BODY_execution_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
92 {
93   if (0) /* Go to that function to follow the code flow through the simcall barrier */
94     simcall_HANDLER_execution_test(&SIMIX_process_self()->simcall, execution);
95   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_TEST, execution);
96 }
97
98 inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data)
99 {
100   if (0) /* Go to that function to follow the code flow through the simcall barrier */
101     SIMIX_process_on_exit(process, fun, data);
102   return simcall<void, smx_actor_t, int_f_pvoid_pvoid_t, void*>(SIMCALL_PROCESS_ON_EXIT, process, fun, data);
103 }
104
105 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)
106 {
107   if (0) /* Go to that function to follow the code flow through the simcall barrier */
108     simcall_HANDLER_comm_iprobe(&SIMIX_process_self()->simcall, mbox, type, match_fun, data);
109   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);
110 }
111
112 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)
113 {
114   if (0) /* Go to that function to follow the code flow through the simcall barrier */
115     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);
116   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);
117 }
118
119 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)
120 {
121   if (0) /* Go to that function to follow the code flow through the simcall barrier */
122     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);
123   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);
124 }
125
126 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)
127 {
128   if (0) /* Go to that function to follow the code flow through the simcall barrier */
129     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
130   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);
131 }
132
133 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)
134 {
135   if (0) /* Go to that function to follow the code flow through the simcall barrier */
136     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
137   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);
138 }
139
140 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout)
141 {
142   if (0) /* Go to that function to follow the code flow through the simcall barrier */
143     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
144   return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
145 }
146
147 inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm, double timeout)
148 {
149   if (0) /* Go to that function to follow the code flow through the simcall barrier */
150     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
151   return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm, timeout);
152 }
153
154 inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
155 {
156   if (0) /* Go to that function to follow the code flow through the simcall barrier */
157     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
158   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
159 }
160
161 inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms, size_t count)
162 {
163   if (0) /* Go to that function to follow the code flow through the simcall barrier */
164     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
165   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY, comms, count);
166 }
167
168 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex)
169 {
170   if (0) /* Go to that function to follow the code flow through the simcall barrier */
171     simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
172   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
173 }
174
175 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex)
176 {
177   if (0) /* Go to that function to follow the code flow through the simcall barrier */
178     simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
179   return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
180 }
181
182 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex)
183 {
184   if (0) /* Go to that function to follow the code flow through the simcall barrier */
185     simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
186   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
187 }
188
189 inline static smx_cond_t simcall_BODY_cond_init()
190 {
191   if (0) /* Go to that function to follow the code flow through the simcall barrier */
192     SIMIX_cond_init();
193   return simcall<smx_cond_t>(SIMCALL_COND_INIT);
194 }
195
196 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
197 {
198   if (0) /* Go to that function to follow the code flow through the simcall barrier */
199     simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
200   return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
201 }
202
203 inline static void simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout)
204 {
205   if (0) /* Go to that function to follow the code flow through the simcall barrier */
206     simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
207   return simcall<void, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
208 }
209
210 inline static void simcall_BODY_sem_acquire(smx_sem_t sem)
211 {
212   if (0) /* Go to that function to follow the code flow through the simcall barrier */
213     simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
214   return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
215 }
216
217 inline static void simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout)
218 {
219   if (0) /* Go to that function to follow the code flow through the simcall barrier */
220     simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
221   return simcall<void, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
222 }
223
224 inline static sg_size_t simcall_BODY_storage_read(surf_storage_t st, sg_size_t size)
225 {
226   if (0) /* Go to that function to follow the code flow through the simcall barrier */
227     simcall_HANDLER_storage_read(&SIMIX_process_self()->simcall, st, size);
228   return simcall<sg_size_t, surf_storage_t, sg_size_t>(SIMCALL_STORAGE_READ, st, size);
229 }
230
231 inline static sg_size_t simcall_BODY_storage_write(surf_storage_t st, sg_size_t size)
232 {
233   if (0) /* Go to that function to follow the code flow through the simcall barrier */
234     simcall_HANDLER_storage_write(&SIMIX_process_self()->simcall, st, size);
235   return simcall<sg_size_t, surf_storage_t, sg_size_t>(SIMCALL_STORAGE_WRITE, st, size);
236 }
237
238 inline static int simcall_BODY_mc_random(int min, int max)
239 {
240   if (0) /* Go to that function to follow the code flow through the simcall barrier */
241     simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
242   return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
243 }
244
245 inline static void simcall_BODY_set_category(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> synchro, const char* category)
246 {
247   if (0) /* Go to that function to follow the code flow through the simcall barrier */
248     SIMIX_set_category(synchro, category);
249   return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, const char*>(SIMCALL_SET_CATEGORY, synchro, category);
250 }
251
252 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
253 {
254   if (0) /* Go to that function to follow the code flow through the simcall barrier */
255     SIMIX_run_kernel(code);
256   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
257 }
258
259 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
260 {
261   if (0) /* Go to that function to follow the code flow through the simcall barrier */
262     SIMIX_run_blocking(code);
263   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
264 } /** @endcond */