Logo AND Algorithmique Numérique Distribuée

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