Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Parallel{Boost,Raw,U}Context::{initialize,finalize} to SwappedContext
[simgrid.git] / src / kernel / context / ContextBoost.hpp
1 /* Copyright (c) 2015-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_SIMIX_BOOST_CONTEXT_HPP
7 #define SIMGRID_SIMIX_BOOST_CONTEXT_HPP
8
9 #include <boost/version.hpp>
10 #if BOOST_VERSION < 106100
11 #include <boost/context/fcontext.hpp>
12 #else
13 #include <boost/context/detail/fcontext.hpp>
14 #endif
15
16 #include <atomic>
17 #include <cstdint>
18 #include <functional>
19 #include <vector>
20
21 #include <simgrid/simix.hpp>
22 #include <xbt/parmap.hpp>
23 #include <xbt/xbt_os_thread.h>
24
25 #include "src/internal_config.h"
26 #include "src/kernel/context/Context.hpp"
27 #include "src/kernel/context/ContextSwapped.hpp"
28
29 namespace simgrid {
30 namespace kernel {
31 namespace context {
32
33 /** @brief Userspace context switching implementation based on Boost.Context */
34 class BoostContext : public SwappedContext {
35 public:
36   BoostContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process);
37   ~BoostContext() override;
38   void stop() override;
39
40   void swap_into(SwappedContext* to) override;
41
42 private:
43 #if BOOST_VERSION < 105600
44   boost::context::fcontext_t* fc_ = nullptr;
45   typedef intptr_t arg_type;
46 #elif BOOST_VERSION < 106100
47   boost::context::fcontext_t fc_;
48   typedef intptr_t arg_type;
49 #else
50   boost::context::detail::fcontext_t fc_;
51   typedef boost::context::detail::transfer_t arg_type;
52 #endif
53 #if HAVE_SANITIZER_ADDRESS_FIBER_SUPPORT
54   const void* asan_stack_ = nullptr;
55   size_t asan_stack_size_ = 0;
56   BoostContext* asan_ctx_ = nullptr;
57   bool asan_stop_         = false;
58 #endif
59
60   static void wrapper(arg_type arg);
61 };
62
63 class ParallelBoostContext : public BoostContext {
64 public:
65   ParallelBoostContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process)
66       : BoostContext(std::move(code), cleanup_func, process)
67   {
68   }
69   void suspend() override;
70   void resume() override;
71
72   static void run_all();
73 };
74
75 class BoostContextFactory : public ContextFactory {
76 public:
77   BoostContextFactory();
78   ~BoostContextFactory() override;
79   Context* create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup, smx_actor_t process) override;
80   void run_all() override;
81
82 private:
83   bool parallel_;
84 };
85 }}} // namespace
86
87 #endif