Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
enable wait_any and wait_any_for for asynchronous executions
[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-2019. 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 #include <xbt/log.h>
23 /** @cond */ // Please Doxygen, don't look at this
24
25 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
26
27 template<class R, class... T>
28 inline static R simcall(e_smx_simcall_t call, T const&... t)
29 {
30   smx_actor_t self = SIMIX_process_self();
31   simgrid::simix::marshal(&self->simcall, call, t...);
32   if (self != simix_global->maestro_process) {
33     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->get_cname(), SIMIX_simcall_name(self->simcall.call),
34               (int)self->simcall.call);
35     self->yield();
36   } else {
37     SIMIX_simcall_handle(&self->simcall, 0);
38   }
39   return simgrid::simix::unmarshal<R>(self->simcall.result);
40 }
41
42 inline static void simcall_BODY_process_suspend(smx_actor_t process)
43 {
44   if (0) /* Go to that function to follow the code flow through the simcall barrier */
45     simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
46   return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
47 }
48
49 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout)
50 {
51   if (0) /* Go to that function to follow the code flow through the simcall barrier */
52     simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
53   return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
54 }
55
56 inline static int simcall_BODY_process_sleep(double duration)
57 {
58   if (0) /* Go to that function to follow the code flow through the simcall barrier */
59     simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
60   return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
61 }
62
63 inline static int simcall_BODY_execution_wait(simgrid::kernel::activity::ExecImpl* execution)
64 {
65   if (0) /* Go to that function to follow the code flow through the simcall barrier */
66     simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
67   return simcall<int, simgrid::kernel::activity::ExecImpl*>(SIMCALL_EXECUTION_WAIT, execution);
68 }
69
70 inline static int simcall_BODY_execution_waitany_for(simgrid::kernel::activity::ExecImpl** execs, size_t count,
71                                                      double timeout)
72 {
73   if (0) /* Go to that function to follow the code flow through the simcall barrier */
74     simcall_HANDLER_execution_waitany_for(&SIMIX_process_self()->simcall, execs, count, timeout);
75   return simcall<int, simgrid::kernel::activity::ExecImpl**, size_t, double>(SIMCALL_EXECUTION_WAITANY_FOR, execs,
76                                                                              count, timeout);
77 }
78
79 inline static bool simcall_BODY_execution_test(simgrid::kernel::activity::ExecImpl* execution)
80 {
81   if (0) /* Go to that function to follow the code flow through the simcall barrier */
82     simcall_HANDLER_execution_test(&SIMIX_process_self()->simcall, execution);
83   return simcall<bool, simgrid::kernel::activity::ExecImpl*>(SIMCALL_EXECUTION_TEST, execution);
84 }
85
86 inline static void simcall_BODY_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate,
87                                           unsigned char* src_buff, size_t src_buff_size, simix_match_func_t match_fun,
88                                           simix_copy_data_func_t copy_data_fun, void* data, double timeout)
89 {
90   if (0) /* Go to that function to follow the code flow through the simcall barrier */
91     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);
92   return simcall<void, smx_actor_t, smx_mailbox_t, double, double, unsigned char*, size_t, simix_match_func_t,
93                  simix_copy_data_func_t, void*, double>(SIMCALL_COMM_SEND, sender, mbox, task_size, rate, src_buff,
94                                                         src_buff_size, match_fun, copy_data_fun, data, timeout);
95 }
96
97 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
98 simcall_BODY_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, unsigned char* src_buff,
99                         size_t src_buff_size, simix_match_func_t match_fun, simix_clean_func_t clean_fun,
100                         simix_copy_data_func_t copy_data_fun, void* data, bool detached)
101 {
102   if (0) /* Go to that function to follow the code flow through the simcall barrier */
103     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);
104   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, double,
105                  double, unsigned char*, size_t, simix_match_func_t, simix_clean_func_t, simix_copy_data_func_t, void*,
106                  bool>(SIMCALL_COMM_ISEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun,
107                        copy_data_fun, data, detached);
108 }
109
110 inline static void simcall_BODY_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, unsigned char* dst_buff,
111                                           size_t* dst_buff_size, simix_match_func_t match_fun,
112                                           simix_copy_data_func_t copy_data_fun, void* data, double timeout, double rate)
113 {
114   if (0) /* Go to that function to follow the code flow through the simcall barrier */
115     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
116   return simcall<void, smx_actor_t, smx_mailbox_t, unsigned char*, size_t*, simix_match_func_t, simix_copy_data_func_t,
117                  void*, double, double>(SIMCALL_COMM_RECV, receiver, mbox, dst_buff, dst_buff_size, match_fun,
118                                         copy_data_fun, data, timeout, rate);
119 }
120
121 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
122 simcall_BODY_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, unsigned char* dst_buff, size_t* dst_buff_size,
123                         simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double rate)
124 {
125   if (0) /* Go to that function to follow the code flow through the simcall barrier */
126     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
127   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t,
128                  unsigned char*, size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double>(
129       SIMCALL_COMM_IRECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
130 }
131
132 inline static int simcall_BODY_comm_waitany(simgrid::kernel::activity::CommImpl** comms, size_t count, double timeout)
133 {
134   if (0) /* Go to that function to follow the code flow through the simcall barrier */
135     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, count, timeout);
136   return simcall<int, simgrid::kernel::activity::CommImpl**, size_t, double>(SIMCALL_COMM_WAITANY, comms, count, timeout);
137 }
138
139 inline static void simcall_BODY_comm_wait(simgrid::kernel::activity::CommImpl* comm, double timeout)
140 {
141   if (0) /* Go to that function to follow the code flow through the simcall barrier */
142     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
143   return simcall<void, simgrid::kernel::activity::CommImpl*, double>(SIMCALL_COMM_WAIT, comm, timeout);
144 }
145
146 inline static bool simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm)
147 {
148   if (0) /* Go to that function to follow the code flow through the simcall barrier */
149     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
150   return simcall<bool, simgrid::kernel::activity::CommImpl*>(SIMCALL_COMM_TEST, comm);
151 }
152
153 inline static int simcall_BODY_comm_testany(simgrid::kernel::activity::CommImpl** comms, size_t count)
154 {
155   if (0) /* Go to that function to follow the code flow through the simcall barrier */
156     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
157   return simcall<int, simgrid::kernel::activity::CommImpl**, size_t>(SIMCALL_COMM_TESTANY, comms, count);
158 }
159
160 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex)
161 {
162   if (0) /* Go to that function to follow the code flow through the simcall barrier */
163     simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
164   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
165 }
166
167 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex)
168 {
169   if (0) /* Go to that function to follow the code flow through the simcall barrier */
170     simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
171   return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
172 }
173
174 inline static void simcall_BODY_mutex_unlock(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_unlock(&SIMIX_process_self()->simcall, mutex);
178   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
179 }
180
181 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
182 {
183   if (0) /* Go to that function to follow the code flow through the simcall barrier */
184     simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
185   return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
186 }
187
188 inline static int simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout)
189 {
190   if (0) /* Go to that function to follow the code flow through the simcall barrier */
191     simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
192   return simcall<int, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
193 }
194
195 inline static void simcall_BODY_sem_acquire(smx_sem_t sem)
196 {
197   if (0) /* Go to that function to follow the code flow through the simcall barrier */
198     simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
199   return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
200 }
201
202 inline static int simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout)
203 {
204   if (0) /* Go to that function to follow the code flow through the simcall barrier */
205     simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
206   return simcall<int, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
207 }
208
209 inline static sg_size_t simcall_BODY_io_wait(simgrid::kernel::activity::IoImpl* io)
210 {
211   if (0) /* Go to that function to follow the code flow through the simcall barrier */
212     simcall_HANDLER_io_wait(&SIMIX_process_self()->simcall, io);
213   return simcall<sg_size_t, simgrid::kernel::activity::IoImpl*>(SIMCALL_IO_WAIT, io);
214 }
215
216 inline static int simcall_BODY_mc_random(int min, int max)
217 {
218   if (0) /* Go to that function to follow the code flow through the simcall barrier */
219     simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
220   return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
221 }
222
223 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
224 {
225   if (0) /* Go to that function to follow the code flow through the simcall barrier */
226     SIMIX_run_kernel(code);
227   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
228 }
229
230 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
231 {
232   if (0) /* Go to that function to follow the code flow through the simcall barrier */
233     SIMIX_run_blocking(code);
234   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
235 } /** @endcond */