Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'wifi_rate_zero' into 'master'
[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-2022. 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 "src/kernel/EngineImpl.hpp"
18 #include "src/kernel/actor/ActorImpl.hpp"
19 #include "src/mc/mc_forward.hpp"
20 #include "xbt/ex.h"
21 #include <functional>
22 #include <simgrid/simix.hpp>
23 #include <xbt/log.h>
24 /** @cond */ // Please Doxygen, don't look at this
25
26 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
27
28 using simgrid::simix::Simcall;
29
30 template<class R, class... T>
31 inline static R simcall(Simcall call, T const&... t)
32 {
33   auto self = simgrid::kernel::actor::ActorImpl::self();
34   simgrid::simix::marshal(&self->simcall_, call, t...);
35   if (not simgrid::kernel::EngineImpl::get_instance()->is_maestro(self)) {
36     XBT_DEBUG("Yield process '%s' on simcall %s", self->get_cname(), SIMIX_simcall_name(self->simcall_));
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 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)
45 {
46   if (false) /* Go to that function to follow the code flow through the simcall barrier */
47     simcall_HANDLER_comm_recv(&simgrid::kernel::actor::ActorImpl::self()->simcall_, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
48   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);
49 }
50
51 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)
52 {
53   if (false) /* Go to that function to follow the code flow through the simcall barrier */
54     simcall_HANDLER_comm_irecv(&simgrid::kernel::actor::ActorImpl::self()->simcall_, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
55   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);
56 }
57
58 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)
59 {
60   if (false) /* Go to that function to follow the code flow through the simcall barrier */
61     simcall_HANDLER_comm_send(&simgrid::kernel::actor::ActorImpl::self()->simcall_, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
62   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);
63 }
64
65 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)
66 {
67   if (false) /* Go to that function to follow the code flow through the simcall barrier */
68     simcall_HANDLER_comm_isend(&simgrid::kernel::actor::ActorImpl::self()->simcall_, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
69   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);
70 }
71
72 inline static bool simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm)
73 {
74   if (false) /* Go to that function to follow the code flow through the simcall barrier */
75     simcall_HANDLER_comm_test(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comm);
76   return simcall<bool, simgrid::kernel::activity::CommImpl*>(Simcall::COMM_TEST, comm);
77 }
78
79 inline static ssize_t simcall_BODY_comm_testany(simgrid::kernel::activity::CommImpl** comms, size_t count)
80 {
81   if (false) /* Go to that function to follow the code flow through the simcall barrier */
82     simcall_HANDLER_comm_testany(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comms, count);
83   return simcall<ssize_t, simgrid::kernel::activity::CommImpl**, size_t>(Simcall::COMM_TESTANY, comms, count);
84 }
85
86 inline static ssize_t simcall_BODY_comm_waitany(simgrid::kernel::activity::CommImpl** comms, size_t count, double timeout)
87 {
88   if (false) /* Go to that function to follow the code flow through the simcall barrier */
89     simcall_HANDLER_comm_waitany(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comms, count, timeout);
90   return simcall<ssize_t, simgrid::kernel::activity::CommImpl**, size_t, double>(Simcall::COMM_WAITANY, comms, count, timeout);
91 }
92
93 inline static void simcall_BODY_comm_wait(simgrid::kernel::activity::CommImpl* comm, double timeout)
94 {
95   if (false) /* Go to that function to follow the code flow through the simcall barrier */
96     simcall_HANDLER_comm_wait(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comm, timeout);
97   return simcall<void, simgrid::kernel::activity::CommImpl*, double>(Simcall::COMM_WAIT, comm, timeout);
98 }
99
100 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
101 {
102   if (false) /* Go to that function to follow the code flow through the simcall barrier */
103     SIMIX_run_kernel(code);
104   return simcall<void, std::function<void()> const*>(Simcall::RUN_KERNEL, code);
105 }
106
107 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
108 {
109   if (false) /* Go to that function to follow the code flow through the simcall barrier */
110     SIMIX_run_blocking(code);
111   return simcall<void, std::function<void()> const*>(Simcall::RUN_BLOCKING, code);
112 }
113 /** @endcond */