Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
deprecate 2 simix functions
[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 "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,
48                               dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
49   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);
50 }
51
52 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)
53 {
54   if (false) /* Go to that function to follow the code flow through the simcall barrier */
55     simcall_HANDLER_comm_irecv(&simgrid::kernel::actor::ActorImpl::self()->simcall_, receiver, mbox, dst_buff,
56                                dst_buff_size, match_fun, copy_data_fun, data, rate);
57   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);
58 }
59
60 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)
61 {
62   if (false) /* Go to that function to follow the code flow through the simcall barrier */
63     simcall_HANDLER_comm_send(&simgrid::kernel::actor::ActorImpl::self()->simcall_, sender, mbox, task_size, rate,
64                               src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
65   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);
66 }
67
68 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)
69 {
70   if (false) /* Go to that function to follow the code flow through the simcall barrier */
71     simcall_HANDLER_comm_isend(&simgrid::kernel::actor::ActorImpl::self()->simcall_, sender, mbox, task_size, rate,
72                                src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
73   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);
74 }
75
76 inline static bool simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm)
77 {
78   if (false) /* Go to that function to follow the code flow through the simcall barrier */
79     simcall_HANDLER_comm_test(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comm);
80   return simcall<bool, simgrid::kernel::activity::CommImpl*>(Simcall::COMM_TEST, comm);
81 }
82
83 inline static ssize_t simcall_BODY_comm_testany(simgrid::kernel::activity::CommImpl** comms, size_t count)
84 {
85   if (false) /* Go to that function to follow the code flow through the simcall barrier */
86     simcall_HANDLER_comm_testany(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comms, count);
87   return simcall<ssize_t, simgrid::kernel::activity::CommImpl**, size_t>(Simcall::COMM_TESTANY, comms, count);
88 }
89
90 inline static ssize_t simcall_BODY_comm_waitany(simgrid::kernel::activity::CommImpl** comms, size_t count, double timeout)
91 {
92   if (false) /* Go to that function to follow the code flow through the simcall barrier */
93     simcall_HANDLER_comm_waitany(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comms, count, timeout);
94   return simcall<ssize_t, simgrid::kernel::activity::CommImpl**, size_t, double>(Simcall::COMM_WAITANY, comms, count, timeout);
95 }
96
97 inline static void simcall_BODY_comm_wait(simgrid::kernel::activity::CommImpl* comm, double timeout)
98 {
99   if (false) /* Go to that function to follow the code flow through the simcall barrier */
100     simcall_HANDLER_comm_wait(&simgrid::kernel::actor::ActorImpl::self()->simcall_, comm, timeout);
101   return simcall<void, simgrid::kernel::activity::CommImpl*, double>(Simcall::COMM_WAIT, comm, timeout);
102 }
103
104 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
105 {
106   if (false) /* Go to that function to follow the code flow through the simcall barrier */
107     SIMIX_run_kernel(code);
108   return simcall<void, std::function<void()> const*>(Simcall::RUN_KERNEL, code);
109 }
110
111 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
112 {
113   if (false) /* Go to that function to follow the code flow through the simcall barrier */
114     SIMIX_run_blocking(code);
115   return simcall<void, std::function<void()> const*>(Simcall::RUN_BLOCKING, code);
116 }
117 /** @endcond */