Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize simcall mutex_lock.
[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-2021. 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 using simgrid::simix::Simcall;
28
29 template<class R, class... T>
30 inline static R simcall(Simcall call, T const&... t)
31 {
32   smx_actor_t self = SIMIX_process_self();
33   simgrid::simix::marshal(&self->simcall_, call, t...);
34   if (self != simix_global->maestro_) {
35     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->get_cname(), SIMIX_simcall_name(self->simcall_.call_),
36               (int)self->simcall_.call_);
37     self->yield();
38   } else {
39     self->simcall_handle(0);
40   }
41   return simgrid::simix::unmarshal<R>(self->simcall_.result_);
42 }
43
44 inline static int simcall_BODY_execution_waitany_for(simgrid::kernel::activity::ExecImpl** execs, size_t count, double timeout)
45 {
46   if (false) /* Go to that function to follow the code flow through the simcall barrier */
47     simcall_HANDLER_execution_waitany_for(&SIMIX_process_self()->simcall_, execs, count, timeout);
48   return simcall<int, simgrid::kernel::activity::ExecImpl**, size_t, double>(Simcall::EXECUTION_WAITANY_FOR, execs, count, timeout);
49 }
50
51 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)
52 {
53   if (false) /* Go to that function to follow the code flow through the simcall barrier */
54     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);
55   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);
56 }
57
58 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)
59 {
60   if (false) /* Go to that function to follow the code flow through the simcall barrier */
61     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);
62   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);
63 }
64
65 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)
66 {
67   if (false) /* Go to that function to follow the code flow through the simcall barrier */
68     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall_, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
69   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);
70 }
71
72 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)
73 {
74   if (false) /* Go to that function to follow the code flow through the simcall barrier */
75     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall_, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
76   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);
77 }
78
79 inline static int simcall_BODY_comm_waitany(simgrid::kernel::activity::CommImpl** comms, size_t count, double timeout)
80 {
81   if (false) /* Go to that function to follow the code flow through the simcall barrier */
82     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall_, comms, count, timeout);
83   return simcall<int, simgrid::kernel::activity::CommImpl**, size_t, double>(Simcall::COMM_WAITANY, comms, count, timeout);
84 }
85
86 inline static void simcall_BODY_comm_wait(simgrid::kernel::activity::CommImpl* comm, double timeout)
87 {
88   if (false) /* Go to that function to follow the code flow through the simcall barrier */
89     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall_, comm, timeout);
90   return simcall<void, simgrid::kernel::activity::CommImpl*, double>(Simcall::COMM_WAIT, comm, timeout);
91 }
92
93 inline static bool simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm)
94 {
95   if (false) /* Go to that function to follow the code flow through the simcall barrier */
96     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall_, comm);
97   return simcall<bool, simgrid::kernel::activity::CommImpl*>(Simcall::COMM_TEST, comm);
98 }
99
100 inline static int simcall_BODY_comm_testany(simgrid::kernel::activity::CommImpl** comms, size_t count)
101 {
102   if (false) /* Go to that function to follow the code flow through the simcall barrier */
103     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall_, comms, count);
104   return simcall<int, simgrid::kernel::activity::CommImpl**, size_t>(Simcall::COMM_TESTANY, comms, count);
105 }
106
107 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
108 {
109   if (false) /* Go to that function to follow the code flow through the simcall barrier */
110     simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall_, cond, mutex);
111   return simcall<void, smx_cond_t, smx_mutex_t>(Simcall::COND_WAIT, cond, mutex);
112 }
113
114 inline static int simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout)
115 {
116   if (false) /* Go to that function to follow the code flow through the simcall barrier */
117     simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall_, cond, mutex, timeout);
118   return simcall<int, smx_cond_t, smx_mutex_t, double>(Simcall::COND_WAIT_TIMEOUT, cond, mutex, timeout);
119 }
120
121 inline static void simcall_BODY_sem_acquire(smx_sem_t sem)
122 {
123   if (false) /* Go to that function to follow the code flow through the simcall barrier */
124     simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall_, sem);
125   return simcall<void, smx_sem_t>(Simcall::SEM_ACQUIRE, sem);
126 }
127
128 inline static int simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout)
129 {
130   if (false) /* Go to that function to follow the code flow through the simcall barrier */
131     simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall_, sem, timeout);
132   return simcall<int, smx_sem_t, double>(Simcall::SEM_ACQUIRE_TIMEOUT, sem, timeout);
133 }
134
135 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
136 {
137   if (false) /* Go to that function to follow the code flow through the simcall barrier */
138     SIMIX_run_kernel(code);
139   return simcall<void, std::function<void()> const*>(Simcall::RUN_KERNEL, code);
140 }
141
142 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
143 {
144   if (false) /* Go to that function to follow the code flow through the simcall barrier */
145     SIMIX_run_blocking(code);
146   return simcall<void, std::function<void()> const*>(Simcall::RUN_BLOCKING, code);
147 }
148 /** @endcond */