Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add missing copyright notices.
[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 (not simix_global->is_maestro(self)) {
35     XBT_DEBUG("Yield process '%s' on simcall %s", self->get_cname(), SIMIX_simcall_name(self->simcall_));
36     self->yield();
37   } else {
38     self->simcall_handle(0);
39   }
40   return simgrid::simix::unmarshal<R>(self->simcall_.result_);
41 }
42
43 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)
44 {
45   if (false) /* Go to that function to follow the code flow through the simcall barrier */
46     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall_, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
47   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);
48 }
49
50 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)
51 {
52   if (false) /* Go to that function to follow the code flow through the simcall barrier */
53     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall_, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
54   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);
55 }
56
57 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)
58 {
59   if (false) /* Go to that function to follow the code flow through the simcall barrier */
60     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);
61   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);
62 }
63
64 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)
65 {
66   if (false) /* Go to that function to follow the code flow through the simcall barrier */
67     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);
68   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);
69 }
70
71 inline static bool simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm)
72 {
73   if (false) /* Go to that function to follow the code flow through the simcall barrier */
74     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall_, comm);
75   return simcall<bool, simgrid::kernel::activity::CommImpl*>(Simcall::COMM_TEST, comm);
76 }
77
78 inline static int simcall_BODY_comm_testany(simgrid::kernel::activity::CommImpl** comms, size_t count)
79 {
80   if (false) /* Go to that function to follow the code flow through the simcall barrier */
81     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall_, comms, count);
82   return simcall<int, simgrid::kernel::activity::CommImpl**, size_t>(Simcall::COMM_TESTANY, comms, count);
83 }
84
85 inline static int simcall_BODY_comm_waitany(simgrid::kernel::activity::CommImpl** comms, size_t count, double timeout)
86 {
87   if (false) /* Go to that function to follow the code flow through the simcall barrier */
88     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall_, comms, count, timeout);
89   return simcall<int, simgrid::kernel::activity::CommImpl**, size_t, double>(Simcall::COMM_WAITANY, comms, count, timeout);
90 }
91
92 inline static void simcall_BODY_comm_wait(simgrid::kernel::activity::CommImpl* comm, double timeout)
93 {
94   if (false) /* Go to that function to follow the code flow through the simcall barrier */
95     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall_, comm, timeout);
96   return simcall<void, simgrid::kernel::activity::CommImpl*, double>(Simcall::COMM_WAIT, comm, timeout);
97 }
98
99 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
100 {
101   if (false) /* Go to that function to follow the code flow through the simcall barrier */
102     SIMIX_run_kernel(code);
103   return simcall<void, std::function<void()> const*>(Simcall::RUN_KERNEL, code);
104 }
105
106 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
107 {
108   if (false) /* Go to that function to follow the code flow through the simcall barrier */
109     SIMIX_run_blocking(code);
110   return simcall<void, std::function<void()> const*>(Simcall::RUN_BLOCKING, code);
111 }
112 /** @endcond */