Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid to call Context::stop() again when a StopRequest was thrown.
[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 actor,
27                            SwappedContextFactory* factory)
28     : SwappedContext(std::move(code), cleanup_func, actor, 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 #if BOOST_VERSION < 106100
41     this->fc_ = boost::context::make_fcontext(stack, smx_context_usable_stack_size, BoostContext::wrapper);
42 #else
43     this->fc_ = boost::context::detail::make_fcontext(stack, smx_context_usable_stack_size, BoostContext::wrapper);
44 #endif
45
46   } else {
47 #if BOOST_VERSION < 105600
48     this->fc_ = new boost::context::fcontext_t();
49 #endif
50   }
51 }
52
53 BoostContext::~BoostContext()
54 {
55 #if BOOST_VERSION < 105600
56   if (not get_stack())
57     delete this->fc_;
58 #endif
59 }
60
61 void BoostContext::wrapper(BoostContext::arg_type arg)
62 {
63 #if BOOST_VERSION < 106100
64   BoostContext* context = reinterpret_cast<BoostContext*>(arg);
65 #else
66   BoostContext* context = static_cast<BoostContext**>(arg.data)[1];
67   ASAN_ONLY(xbt_assert(context->asan_ctx_ == static_cast<BoostContext**>(arg.data)[0]));
68   ASAN_FINISH_SWITCH(nullptr, &context->asan_ctx_->asan_stack_, &context->asan_ctx_->asan_stack_size_);
69   static_cast<BoostContext**>(arg.data)[0]->fc_ = arg.fctx;
70 #endif
71   try {
72     (*context)();
73     context->Context::stop();
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   ASAN_ONLY(context->asan_stop_ = true);
81   context->suspend();
82 }
83
84 void BoostContext::swap_into(SwappedContext* to_)
85 {
86   BoostContext* to = static_cast<BoostContext*>(to_);
87 #if BOOST_VERSION < 105600
88   boost::context::jump_fcontext(this->fc_, to->fc_, reinterpret_cast<intptr_t>(to));
89 #elif BOOST_VERSION < 106100
90   boost::context::jump_fcontext(&this->fc_, to->fc_, reinterpret_cast<intptr_t>(to));
91 #else
92   BoostContext* ctx[2] = {this, to};
93   ASAN_ONLY(void* fake_stack = nullptr);
94   ASAN_ONLY(to->asan_ctx_ = this);
95   ASAN_START_SWITCH(this->asan_stop_ ? nullptr : &fake_stack, to->asan_stack_, to->asan_stack_size_);
96   boost::context::detail::transfer_t arg = boost::context::detail::jump_fcontext(to->fc_, ctx);
97   ASAN_ONLY(xbt_assert(this->asan_ctx_ == static_cast<BoostContext**>(arg.data)[0]));
98   ASAN_FINISH_SWITCH(fake_stack, &this->asan_ctx_->asan_stack_, &this->asan_ctx_->asan_stack_size_);
99   static_cast<BoostContext**>(arg.data)[0]->fc_ = arg.fctx;
100 #endif
101 }
102
103 XBT_PRIVATE ContextFactory* boost_factory()
104 {
105   XBT_VERB("Using Boost contexts. Welcome to the 21th century.");
106   return new BoostContextFactory();
107 }
108 }}} // namespace