Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b966a153f9587d5b27144ea8d61155d249a08c22
[simgrid.git] / src / kernel / context / ContextRaw.hpp
1 /* Copyright (c) 2009-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 #ifndef SIMGRID_SIMIX_RAW_CONTEXT_HPP
7 #define SIMGRID_SIMIX_RAW_CONTEXT_HPP
8
9 #include <atomic>
10 #include <cstdint>
11 #include <functional>
12 #include <vector>
13
14 #include <xbt/parmap.hpp>
15 #include <xbt/xbt_os_thread.h>
16
17 #include "src/kernel/context/ContextSwapped.hpp"
18
19 namespace simgrid {
20 namespace kernel {
21 namespace context {
22
23 /** @brief Fast context switching inspired from SystemV ucontexts.
24   *
25   * The main difference to the System V context is that Raw Contexts are much faster because they don't
26   * preserve the signal mask when switching. This saves a system call (at least on Linux) on each context switch.
27   */
28 class RawContext : public SwappedContext {
29 public:
30   RawContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process,
31              SwappedContextFactory* factory);
32
33   void swap_into(SwappedContext* to) override;
34
35 private:
36   /** pointer to top the stack stack */
37   void* stack_top_ = nullptr;
38
39 #if HAVE_SANITIZER_ADDRESS_FIBER_SUPPORT
40   const void* asan_stack_ = nullptr;
41   size_t asan_stack_size_ = 0;
42   RawContext* asan_ctx_   = nullptr;
43   bool asan_stop_         = false;
44 #endif
45
46   static void wrapper(void* arg);
47 };
48
49 class RawContextFactory : public SwappedContextFactory {
50 public:
51   RawContextFactory() : SwappedContextFactory("RawContextFactory") {}
52
53   Context* create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup, smx_actor_t process) override;
54 };
55 }}} // namespace
56
57 #endif