Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ac88b6833a8e1c9d1cef029ed7571dc04e4a1b31
[simgrid.git] / src / kernel / context / ContextBoost.cpp
1 /* Copyright (c) 2015-2019. 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 #include "ContextBoost.hpp"
7 #include "context_private.hpp"
8 #include "simgrid/Exception.hpp"
9 #include "src/simix/smx_private.hpp"
10
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context);
12
13 namespace simgrid {
14 namespace kernel {
15 namespace context {
16
17 // BoostContextFactory
18 smx_context_t BoostContextFactory::create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup_func,
19                                                   smx_actor_t process)
20 {
21   return this->new_context<BoostContext>(std::move(code), cleanup_func, process, this);
22 }
23
24 // BoostContext
25
26 BoostContext::BoostContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process,
27                            SwappedContextFactory* factory)
28     : SwappedContext(std::move(code), cleanup_func, process, factory)
29 {
30
31   /* if the user provided a function for the process then use it, otherwise it is the context for maestro */
32   if (has_code()) {
33     /* We need to pass the bottom of the stack to make_fcontext,
34        depending on the stack direction it may be the lower or higher address: */
35 #if PTH_STACKGROWTH == -1
36     void* stack = static_cast<char*>(get_stack()) + smx_context_usable_stack_size;
37 #else
38     void* stack = get_stack();
39 #endif
40     ASAN_ONLY(this->asan_stack_ = stack);
41 #if BOOST_VERSION < 106100
42     this->fc_ = boost::context::make_fcontext(stack, smx_context_usable_stack_size, BoostContext::wrapper);
43 #else
44     this->fc_ = boost::context::detail::make_fcontext(stack, smx_context_usable_stack_size, BoostContext::wrapper);
45 #endif
46
47   } else {
48 #if BOOST_VERSION < 105600
49     this->fc_ = new boost::context::fcontext_t();
50 #endif
51   }
52 }
53
54 BoostContext::~BoostContext()
55 {
56 #if BOOST_VERSION < 105600
57   if (not get_stack())
58     delete this->fc_;
59 #endif
60 }
61
62 void BoostContext::wrapper(BoostContext::arg_type arg)
63 {
64 #if BOOST_VERSION < 106100
65   BoostContext* context = reinterpret_cast<BoostContext*>(arg);
66 #else
67   BoostContext* context = static_cast<BoostContext**>(arg.data)[1];
68   ASAN_ONLY(xbt_assert(context->asan_ctx_ == static_cast<BoostContext**>(arg.data)[0]));
69   ASAN_FINISH_SWITCH(nullptr, &context->asan_ctx_->asan_stack_, &context->asan_ctx_->asan_stack_size_);
70   static_cast<BoostContext**>(arg.data)[0]->fc_ = arg.fctx;
71 #endif
72   try {
73     (*context)();
74   } catch (StopRequest const&) {
75     XBT_DEBUG("Caught a StopRequest");
76   } catch (simgrid::Exception const& e) {
77     XBT_INFO("Actor killed by an uncatched exception %s", simgrid::xbt::demangle(typeid(e).name()).get());
78     throw;
79   }
80   context->Context::stop();
81   ASAN_ONLY(context->asan_stop_ = true);
82   context->suspend();
83 }
84
85 void BoostContext::swap_into(SwappedContext* to_)
86 {
87   BoostContext* to = static_cast<BoostContext*>(to_);
88 #if BOOST_VERSION < 105600
89   boost::context::jump_fcontext(this->fc_, to->fc_, reinterpret_cast<intptr_t>(to));
90 #elif BOOST_VERSION < 106100
91   boost::context::jump_fcontext(&this->fc_, to->fc_, reinterpret_cast<intptr_t>(to));
92 #else
93   BoostContext* ctx[2] = {this, to};
94   ASAN_ONLY(void* fake_stack = nullptr);
95   ASAN_ONLY(to->asan_ctx_ = this);
96   ASAN_START_SWITCH(this->asan_stop_ ? nullptr : &fake_stack, to->asan_stack_, to->asan_stack_size_);
97   boost::context::detail::transfer_t arg = boost::context::detail::jump_fcontext(to->fc_, ctx);
98   ASAN_ONLY(xbt_assert(this->asan_ctx_ == static_cast<BoostContext**>(arg.data)[0]));
99   ASAN_FINISH_SWITCH(fake_stack, &this->asan_ctx_->asan_stack_, &this->asan_ctx_->asan_stack_size_);
100   static_cast<BoostContext**>(arg.data)[0]->fc_ = arg.fctx;
101 #endif
102 }
103
104 XBT_PRIVATE ContextFactory* boost_factory()
105 {
106   XBT_VERB("Using Boost contexts. Welcome to the 21th century.");
107   return new BoostContextFactory();
108 }
109 }}} // namespace