X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/62c07d4306a42be1ed34494a37603bb6dd27a98b..HEAD:/src/simix/popping_accessors.hpp diff --git a/src/simix/popping_accessors.hpp b/src/simix/popping_accessors.hpp deleted file mode 100644 index de128f15b1..0000000000 --- a/src/simix/popping_accessors.hpp +++ /dev/null @@ -1,811 +0,0 @@ -/**********************************************************************/ -/* File generated by src/simix/simcalls.py from src/simix/simcalls.in */ -/* */ -/* DO NOT EVER CHANGE THIS FILE */ -/* */ -/* change simcalls specification in src/simix/simcalls.in */ -/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved. */ -/**********************************************************************/ - -/* - * Note that the name comes from http://en.wikipedia.org/wiki/Popping - * Indeed, the control flow is doing a strange dance in there. - * - * That's not about http://en.wikipedia.org/wiki/Poop, despite the odor :) - */ - -#include "src/simix/popping_private.hpp" -static inline simgrid::kernel::activity::ExecImpl** simcall_execution_waitany_for__get__execs(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline simgrid::kernel::activity::ExecImpl** simcall_execution_waitany_for__getraw__execs(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_execution_waitany_for__set__execs(smx_simcall_t simcall, simgrid::kernel::activity::ExecImpl** arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline size_t simcall_execution_waitany_for__get__count(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline size_t simcall_execution_waitany_for__getraw__count(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_execution_waitany_for__set__count(smx_simcall_t simcall, size_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline double simcall_execution_waitany_for__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline double simcall_execution_waitany_for__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_execution_waitany_for__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline int simcall_execution_waitany_for__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->result_); -} -static inline int simcall_execution_waitany_for__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_execution_waitany_for__set__result(smx_simcall_t simcall, int result) -{ - simgrid::simix::marshal(simcall->result_, result); -} - -static inline smx_actor_t simcall_comm_send__get__sender(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline smx_actor_t simcall_comm_send__getraw__sender(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_send__set__sender(smx_simcall_t simcall, smx_actor_t arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline smx_mailbox_t simcall_comm_send__get__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline smx_mailbox_t simcall_comm_send__getraw__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_send__set__mbox(smx_simcall_t simcall, smx_mailbox_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline double simcall_comm_send__get__task_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline double simcall_comm_send__getraw__task_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_comm_send__set__task_size(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline double simcall_comm_send__get__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[3]); -} -static inline double simcall_comm_send__getraw__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[3]); -} -static inline void simcall_comm_send__set__rate(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[3], arg); -} -static inline unsigned char* simcall_comm_send__get__src_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[4]); -} -static inline unsigned char* simcall_comm_send__getraw__src_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[4]); -} -static inline void simcall_comm_send__set__src_buff(smx_simcall_t simcall, unsigned char* arg) -{ - simgrid::simix::marshal(simcall->args_[4], arg); -} -static inline size_t simcall_comm_send__get__src_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[5]); -} -static inline size_t simcall_comm_send__getraw__src_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[5]); -} -static inline void simcall_comm_send__set__src_buff_size(smx_simcall_t simcall, size_t arg) -{ - simgrid::simix::marshal(simcall->args_[5], arg); -} -static inline simix_match_func_t simcall_comm_send__get__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[6]); -} -static inline simix_match_func_t simcall_comm_send__getraw__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[6]); -} -static inline void simcall_comm_send__set__match_fun(smx_simcall_t simcall, simix_match_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[6], arg); -} -static inline simix_copy_data_func_t simcall_comm_send__get__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[7]); -} -static inline simix_copy_data_func_t simcall_comm_send__getraw__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[7]); -} -static inline void simcall_comm_send__set__copy_data_fun(smx_simcall_t simcall, simix_copy_data_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[7], arg); -} -static inline void* simcall_comm_send__get__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[8]); -} -static inline void* simcall_comm_send__getraw__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[8]); -} -static inline void simcall_comm_send__set__data(smx_simcall_t simcall, void* arg) -{ - simgrid::simix::marshal(simcall->args_[8], arg); -} -static inline double simcall_comm_send__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[9]); -} -static inline double simcall_comm_send__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[9]); -} -static inline void simcall_comm_send__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[9], arg); -} - -static inline smx_actor_t simcall_comm_isend__get__sender(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline smx_actor_t simcall_comm_isend__getraw__sender(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_isend__set__sender(smx_simcall_t simcall, smx_actor_t arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline smx_mailbox_t simcall_comm_isend__get__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline smx_mailbox_t simcall_comm_isend__getraw__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_isend__set__mbox(smx_simcall_t simcall, smx_mailbox_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline double simcall_comm_isend__get__task_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline double simcall_comm_isend__getraw__task_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_comm_isend__set__task_size(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline double simcall_comm_isend__get__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[3]); -} -static inline double simcall_comm_isend__getraw__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[3]); -} -static inline void simcall_comm_isend__set__rate(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[3], arg); -} -static inline unsigned char* simcall_comm_isend__get__src_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[4]); -} -static inline unsigned char* simcall_comm_isend__getraw__src_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[4]); -} -static inline void simcall_comm_isend__set__src_buff(smx_simcall_t simcall, unsigned char* arg) -{ - simgrid::simix::marshal(simcall->args_[4], arg); -} -static inline size_t simcall_comm_isend__get__src_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[5]); -} -static inline size_t simcall_comm_isend__getraw__src_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[5]); -} -static inline void simcall_comm_isend__set__src_buff_size(smx_simcall_t simcall, size_t arg) -{ - simgrid::simix::marshal(simcall->args_[5], arg); -} -static inline simix_match_func_t simcall_comm_isend__get__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[6]); -} -static inline simix_match_func_t simcall_comm_isend__getraw__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[6]); -} -static inline void simcall_comm_isend__set__match_fun(smx_simcall_t simcall, simix_match_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[6], arg); -} -static inline simix_clean_func_t simcall_comm_isend__get__clean_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[7]); -} -static inline simix_clean_func_t simcall_comm_isend__getraw__clean_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[7]); -} -static inline void simcall_comm_isend__set__clean_fun(smx_simcall_t simcall, simix_clean_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[7], arg); -} -static inline simix_copy_data_func_t simcall_comm_isend__get__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[8]); -} -static inline simix_copy_data_func_t simcall_comm_isend__getraw__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[8]); -} -static inline void simcall_comm_isend__set__copy_data_fun(smx_simcall_t simcall, simix_copy_data_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[8], arg); -} -static inline void* simcall_comm_isend__get__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[9]); -} -static inline void* simcall_comm_isend__getraw__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[9]); -} -static inline void simcall_comm_isend__set__data(smx_simcall_t simcall, void* arg) -{ - simgrid::simix::marshal(simcall->args_[9], arg); -} -static inline bool simcall_comm_isend__get__detached(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[10]); -} -static inline bool simcall_comm_isend__getraw__detached(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[10]); -} -static inline void simcall_comm_isend__set__detached(smx_simcall_t simcall, bool arg) -{ - simgrid::simix::marshal(simcall->args_[10], arg); -} -static inline boost::intrusive_ptr simcall_comm_isend__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal>(simcall->result_); -} -static inline simgrid::kernel::activity::ActivityImpl* simcall_comm_isend__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_comm_isend__set__result(smx_simcall_t simcall, boost::intrusive_ptr result) -{ - simgrid::simix::marshal>(simcall->result_, result); -} - -static inline smx_actor_t simcall_comm_recv__get__receiver(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline smx_actor_t simcall_comm_recv__getraw__receiver(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_recv__set__receiver(smx_simcall_t simcall, smx_actor_t arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline smx_mailbox_t simcall_comm_recv__get__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline smx_mailbox_t simcall_comm_recv__getraw__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_recv__set__mbox(smx_simcall_t simcall, smx_mailbox_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline unsigned char* simcall_comm_recv__get__dst_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline unsigned char* simcall_comm_recv__getraw__dst_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_comm_recv__set__dst_buff(smx_simcall_t simcall, unsigned char* arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline size_t* simcall_comm_recv__get__dst_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[3]); -} -static inline size_t* simcall_comm_recv__getraw__dst_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[3]); -} -static inline void simcall_comm_recv__set__dst_buff_size(smx_simcall_t simcall, size_t* arg) -{ - simgrid::simix::marshal(simcall->args_[3], arg); -} -static inline simix_match_func_t simcall_comm_recv__get__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[4]); -} -static inline simix_match_func_t simcall_comm_recv__getraw__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[4]); -} -static inline void simcall_comm_recv__set__match_fun(smx_simcall_t simcall, simix_match_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[4], arg); -} -static inline simix_copy_data_func_t simcall_comm_recv__get__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[5]); -} -static inline simix_copy_data_func_t simcall_comm_recv__getraw__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[5]); -} -static inline void simcall_comm_recv__set__copy_data_fun(smx_simcall_t simcall, simix_copy_data_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[5], arg); -} -static inline void* simcall_comm_recv__get__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[6]); -} -static inline void* simcall_comm_recv__getraw__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[6]); -} -static inline void simcall_comm_recv__set__data(smx_simcall_t simcall, void* arg) -{ - simgrid::simix::marshal(simcall->args_[6], arg); -} -static inline double simcall_comm_recv__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[7]); -} -static inline double simcall_comm_recv__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[7]); -} -static inline void simcall_comm_recv__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[7], arg); -} -static inline double simcall_comm_recv__get__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[8]); -} -static inline double simcall_comm_recv__getraw__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[8]); -} -static inline void simcall_comm_recv__set__rate(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[8], arg); -} - -static inline smx_actor_t simcall_comm_irecv__get__receiver(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline smx_actor_t simcall_comm_irecv__getraw__receiver(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_irecv__set__receiver(smx_simcall_t simcall, smx_actor_t arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline smx_mailbox_t simcall_comm_irecv__get__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline smx_mailbox_t simcall_comm_irecv__getraw__mbox(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_irecv__set__mbox(smx_simcall_t simcall, smx_mailbox_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline unsigned char* simcall_comm_irecv__get__dst_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline unsigned char* simcall_comm_irecv__getraw__dst_buff(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_comm_irecv__set__dst_buff(smx_simcall_t simcall, unsigned char* arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline size_t* simcall_comm_irecv__get__dst_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[3]); -} -static inline size_t* simcall_comm_irecv__getraw__dst_buff_size(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[3]); -} -static inline void simcall_comm_irecv__set__dst_buff_size(smx_simcall_t simcall, size_t* arg) -{ - simgrid::simix::marshal(simcall->args_[3], arg); -} -static inline simix_match_func_t simcall_comm_irecv__get__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[4]); -} -static inline simix_match_func_t simcall_comm_irecv__getraw__match_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[4]); -} -static inline void simcall_comm_irecv__set__match_fun(smx_simcall_t simcall, simix_match_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[4], arg); -} -static inline simix_copy_data_func_t simcall_comm_irecv__get__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[5]); -} -static inline simix_copy_data_func_t simcall_comm_irecv__getraw__copy_data_fun(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[5]); -} -static inline void simcall_comm_irecv__set__copy_data_fun(smx_simcall_t simcall, simix_copy_data_func_t arg) -{ - simgrid::simix::marshal(simcall->args_[5], arg); -} -static inline void* simcall_comm_irecv__get__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[6]); -} -static inline void* simcall_comm_irecv__getraw__data(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[6]); -} -static inline void simcall_comm_irecv__set__data(smx_simcall_t simcall, void* arg) -{ - simgrid::simix::marshal(simcall->args_[6], arg); -} -static inline double simcall_comm_irecv__get__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[7]); -} -static inline double simcall_comm_irecv__getraw__rate(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[7]); -} -static inline void simcall_comm_irecv__set__rate(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[7], arg); -} -static inline boost::intrusive_ptr simcall_comm_irecv__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal>(simcall->result_); -} -static inline simgrid::kernel::activity::ActivityImpl* simcall_comm_irecv__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_comm_irecv__set__result(smx_simcall_t simcall, boost::intrusive_ptr result) -{ - simgrid::simix::marshal>(simcall->result_, result); -} - -static inline simgrid::kernel::activity::CommImpl** simcall_comm_waitany__get__comms(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline simgrid::kernel::activity::CommImpl** simcall_comm_waitany__getraw__comms(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_waitany__set__comms(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl** arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline size_t simcall_comm_waitany__get__count(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline size_t simcall_comm_waitany__getraw__count(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_waitany__set__count(smx_simcall_t simcall, size_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline double simcall_comm_waitany__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline double simcall_comm_waitany__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_comm_waitany__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline int simcall_comm_waitany__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->result_); -} -static inline int simcall_comm_waitany__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_comm_waitany__set__result(smx_simcall_t simcall, int result) -{ - simgrid::simix::marshal(simcall->result_, result); -} - -static inline simgrid::kernel::activity::CommImpl* simcall_comm_wait__get__comm(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline simgrid::kernel::activity::CommImpl* simcall_comm_wait__getraw__comm(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_wait__set__comm(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl* arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline double simcall_comm_wait__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline double simcall_comm_wait__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_wait__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} - -static inline simgrid::kernel::activity::CommImpl* simcall_comm_test__get__comm(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline simgrid::kernel::activity::CommImpl* simcall_comm_test__getraw__comm(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_test__set__comm(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl* arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline bool simcall_comm_test__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->result_); -} -static inline bool simcall_comm_test__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_comm_test__set__result(smx_simcall_t simcall, bool result) -{ - simgrid::simix::marshal(simcall->result_, result); -} - -static inline simgrid::kernel::activity::CommImpl** simcall_comm_testany__get__comms(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline simgrid::kernel::activity::CommImpl** simcall_comm_testany__getraw__comms(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_comm_testany__set__comms(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl** arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline size_t simcall_comm_testany__get__count(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline size_t simcall_comm_testany__getraw__count(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_comm_testany__set__count(smx_simcall_t simcall, size_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline int simcall_comm_testany__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->result_); -} -static inline int simcall_comm_testany__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_comm_testany__set__result(smx_simcall_t simcall, int result) -{ - simgrid::simix::marshal(simcall->result_, result); -} - -static inline smx_cond_t simcall_cond_wait_timeout__get__cond(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline smx_cond_t simcall_cond_wait_timeout__getraw__cond(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_cond_wait_timeout__set__cond(smx_simcall_t simcall, smx_cond_t arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline smx_mutex_t simcall_cond_wait_timeout__get__mutex(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline smx_mutex_t simcall_cond_wait_timeout__getraw__mutex(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_cond_wait_timeout__set__mutex(smx_simcall_t simcall, smx_mutex_t arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline double simcall_cond_wait_timeout__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[2]); -} -static inline double simcall_cond_wait_timeout__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[2]); -} -static inline void simcall_cond_wait_timeout__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[2], arg); -} -static inline int simcall_cond_wait_timeout__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->result_); -} -static inline int simcall_cond_wait_timeout__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_cond_wait_timeout__set__result(smx_simcall_t simcall, int result) -{ - simgrid::simix::marshal(simcall->result_, result); -} - -static inline smx_sem_t simcall_sem_acquire_timeout__get__sem(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[0]); -} -static inline smx_sem_t simcall_sem_acquire_timeout__getraw__sem(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[0]); -} -static inline void simcall_sem_acquire_timeout__set__sem(smx_simcall_t simcall, smx_sem_t arg) -{ - simgrid::simix::marshal(simcall->args_[0], arg); -} -static inline double simcall_sem_acquire_timeout__get__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->args_[1]); -} -static inline double simcall_sem_acquire_timeout__getraw__timeout(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->args_[1]); -} -static inline void simcall_sem_acquire_timeout__set__timeout(smx_simcall_t simcall, double arg) -{ - simgrid::simix::marshal(simcall->args_[1], arg); -} -static inline int simcall_sem_acquire_timeout__get__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal(simcall->result_); -} -static inline int simcall_sem_acquire_timeout__getraw__result(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw(simcall->result_); -} -static inline void simcall_sem_acquire_timeout__set__result(smx_simcall_t simcall, int result) -{ - simgrid::simix::marshal(simcall->result_, result); -} - -static inline std::function const* simcall_run_kernel__get__code(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal const*>(simcall->args_[0]); -} -static inline std::function const* simcall_run_kernel__getraw__code(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw const*>(simcall->args_[0]); -} -static inline void simcall_run_kernel__set__code(smx_simcall_t simcall, std::function const* arg) -{ - simgrid::simix::marshal const*>(simcall->args_[0], arg); -} - -static inline std::function const* simcall_run_blocking__get__code(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal const*>(simcall->args_[0]); -} -static inline std::function const* simcall_run_blocking__getraw__code(smx_simcall_t simcall) -{ - return simgrid::simix::unmarshal_raw const*>(simcall->args_[0]); -} -static inline void simcall_run_blocking__set__code(smx_simcall_t simcall, std::function const* arg) -{ - simgrid::simix::marshal const*>(simcall->args_[0], arg); -} - -/* The prototype of all simcall handlers, automatically generated for you */ - -XBT_PRIVATE void simcall_HANDLER_execution_waitany_for(smx_simcall_t simcall, simgrid::kernel::activity::ExecImpl** execs, size_t count, double timeout); -XBT_PRIVATE void simcall_HANDLER_comm_send(smx_simcall_t simcall, 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); -XBT_PRIVATE boost::intrusive_ptr simcall_HANDLER_comm_isend(smx_simcall_t simcall, 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); -XBT_PRIVATE void simcall_HANDLER_comm_recv(smx_simcall_t simcall, 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); -XBT_PRIVATE boost::intrusive_ptr simcall_HANDLER_comm_irecv(smx_simcall_t simcall, 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); -XBT_PRIVATE void simcall_HANDLER_comm_waitany(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl** comms, size_t count, double timeout); -XBT_PRIVATE void simcall_HANDLER_comm_wait(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl* comm, double timeout); -XBT_PRIVATE void simcall_HANDLER_comm_test(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl* comm); -XBT_PRIVATE void simcall_HANDLER_comm_testany(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl** comms, size_t count); -XBT_PRIVATE void simcall_HANDLER_cond_wait_timeout(smx_simcall_t simcall, smx_cond_t cond, smx_mutex_t mutex, double timeout); -XBT_PRIVATE void simcall_HANDLER_sem_acquire_timeout(smx_simcall_t simcall, smx_sem_t sem, double timeout);