Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SIMIX_process_yield becomes ActorImpl::yield
[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 "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->get_cname(), SIMIX_simcall_name(self->simcall.call),
32               (int)self->simcall.call);
33     self->yield();
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_suspend(smx_actor_t process)
41 {
42   if (0) /* Go to that function to follow the code flow through the simcall barrier */
43     simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
44   return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
45 }
46
47 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout)
48 {
49   if (0) /* Go to that function to follow the code flow through the simcall barrier */
50     simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
51   return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
52 }
53
54 inline static int simcall_BODY_process_sleep(double duration)
55 {
56   if (0) /* Go to that function to follow the code flow through the simcall barrier */
57     simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
58   return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
59 }
60
61 inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
62 {
63   if (0) /* Go to that function to follow the code flow through the simcall barrier */
64     simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
65   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT, execution);
66 }
67
68 inline static int simcall_BODY_execution_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
69 {
70   if (0) /* Go to that function to follow the code flow through the simcall barrier */
71     simcall_HANDLER_execution_test(&SIMIX_process_self()->simcall, execution);
72   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_TEST, execution);
73 }
74
75 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)
76 {
77   if (0) /* Go to that function to follow the code flow through the simcall barrier */
78     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);
79   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);
80 }
81
82 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)
83 {
84   if (0) /* Go to that function to follow the code flow through the simcall barrier */
85     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);
86   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);
87 }
88
89 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)
90 {
91   if (0) /* Go to that function to follow the code flow through the simcall barrier */
92     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
93   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);
94 }
95
96 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)
97 {
98   if (0) /* Go to that function to follow the code flow through the simcall barrier */
99     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
100   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);
101 }
102
103 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout)
104 {
105   if (0) /* Go to that function to follow the code flow through the simcall barrier */
106     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
107   return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
108 }
109
110 inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm, double timeout)
111 {
112   if (0) /* Go to that function to follow the code flow through the simcall barrier */
113     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
114   return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm, timeout);
115 }
116
117 inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
118 {
119   if (0) /* Go to that function to follow the code flow through the simcall barrier */
120     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
121   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
122 }
123
124 inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms, size_t count)
125 {
126   if (0) /* Go to that function to follow the code flow through the simcall barrier */
127     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
128   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY, comms, count);
129 }
130
131 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex)
132 {
133   if (0) /* Go to that function to follow the code flow through the simcall barrier */
134     simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
135   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
136 }
137
138 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex)
139 {
140   if (0) /* Go to that function to follow the code flow through the simcall barrier */
141     simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
142   return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
143 }
144
145 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex)
146 {
147   if (0) /* Go to that function to follow the code flow through the simcall barrier */
148     simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
149   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
150 }
151
152 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
153 {
154   if (0) /* Go to that function to follow the code flow through the simcall barrier */
155     simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
156   return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
157 }
158
159 inline static int simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout)
160 {
161   if (0) /* Go to that function to follow the code flow through the simcall barrier */
162     simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
163   return simcall<int, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
164 }
165
166 inline static void simcall_BODY_sem_acquire(smx_sem_t sem)
167 {
168   if (0) /* Go to that function to follow the code flow through the simcall barrier */
169     simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
170   return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
171 }
172
173 inline static int simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout)
174 {
175   if (0) /* Go to that function to follow the code flow through the simcall barrier */
176     simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
177   return simcall<int, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
178 }
179
180 inline static sg_size_t simcall_BODY_io_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> io)
181 {
182   if (0) /* Go to that function to follow the code flow through the simcall barrier */
183     simcall_HANDLER_io_wait(&SIMIX_process_self()->simcall, io);
184   return simcall<sg_size_t, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_IO_WAIT, io);
185 }
186
187 inline static int simcall_BODY_mc_random(int min, int max)
188 {
189   if (0) /* Go to that function to follow the code flow through the simcall barrier */
190     simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
191   return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
192 }
193
194 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
195 {
196   if (0) /* Go to that function to follow the code flow through the simcall barrier */
197     SIMIX_run_kernel(code);
198   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
199 }
200
201 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
202 {
203   if (0) /* Go to that function to follow the code flow through the simcall barrier */
204     SIMIX_run_blocking(code);
205   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
206 } /** @endcond */