Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move ASan related instructions around context swapping into SwappedContext.
[simgrid.git] / src / kernel / context / ContextBoost.cpp
1 /* Copyright (c) 2015-2020. 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 "simgrid/Exception.hpp"
8 #include "src/simix/smx_private.hpp"
9
10 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context);
11
12 namespace simgrid {
13 namespace kernel {
14 namespace context {
15
16 // BoostContextFactory
17 BoostContext* BoostContextFactory::create_context(std::function<void()>&& code, actor::ActorImpl* actor)
18 {
19   return this->new_context<BoostContext>(std::move(code), actor, this);
20 }
21
22 // BoostContext
23
24 BoostContext::BoostContext(std::function<void()>&& code, actor::ActorImpl* actor, SwappedContextFactory* factory)
25     : SwappedContext(std::move(code), actor, factory)
26 {
27
28   /* if the user provided a function for the process then use it, otherwise it is the context for maestro */
29   if (has_code()) {
30 #if BOOST_VERSION < 106100
31     this->fc_ = boost::context::make_fcontext(get_stack_bottom(), smx_context_stack_size, BoostContext::wrapper);
32 #else
33     this->fc_ =
34         boost::context::detail::make_fcontext(get_stack_bottom(), smx_context_stack_size, BoostContext::wrapper);
35 #endif
36   }
37 }
38
39 void BoostContext::wrapper(BoostContext::arg_type arg)
40 {
41 #if BOOST_VERSION < 106100
42   BoostContext* context = reinterpret_cast<BoostContext*>(arg);
43 #else
44   BoostContext* context = static_cast<BoostContext**>(arg.data)[1];
45   context->verify_previous_context(static_cast<BoostContext**>(arg.data)[0]);
46   static_cast<BoostContext**>(arg.data)[0]->fc_ = arg.fctx;
47 #endif
48   smx_ctx_wrapper(context);
49 }
50
51 void BoostContext::swap_into_for_real(SwappedContext* to_)
52 {
53   BoostContext* to = static_cast<BoostContext*>(to_);
54 #if BOOST_VERSION < 106100
55   boost::context::jump_fcontext(&this->fc_, to->fc_, reinterpret_cast<intptr_t>(to));
56 #else
57   BoostContext* ctx[2] = {this, to};
58   boost::context::detail::transfer_t arg = boost::context::detail::jump_fcontext(to->fc_, ctx);
59   this->verify_previous_context(static_cast<BoostContext**>(arg.data)[0]);
60   static_cast<BoostContext**>(arg.data)[0]->fc_ = arg.fctx;
61 #endif
62 }
63
64 XBT_PRIVATE ContextFactory* boost_factory()
65 {
66   XBT_VERB("Using Boost contexts. Welcome to the 21th century.");
67   return new BoostContextFactory();
68 }
69 } // namespace context
70 } // namespace kernel
71 } // namespace simgrid