summaryrefslogtreecommitdiffstats
path: root/src/common/fiber.cpp
blob: a2c0401c4da4914911b4fd1d79f07f786aaf602b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/fiber.h"
#ifdef _MSC_VER
#include <windows.h>
#else
#include <boost/context/detail/fcontext.hpp>
#endif

namespace Common {

#ifdef _MSC_VER

struct Fiber::FiberImpl {
    LPVOID handle = nullptr;
};

void Fiber::start() {
    if (previous_fiber) {
        previous_fiber->guard.unlock();
        previous_fiber = nullptr;
    }
    entry_point(start_parameter);
}

void __stdcall Fiber::FiberStartFunc(void* fiber_parameter)
{
   auto fiber = static_cast<Fiber *>(fiber_parameter);
   fiber->start();
}

Fiber::Fiber(std::function<void(void*)>&& entry_point_func, void* start_parameter)
    : guard{}, entry_point{std::move(entry_point_func)}, start_parameter{start_parameter}, previous_fiber{} {
    impl = std::make_unique<FiberImpl>();
    impl->handle = CreateFiber(0, &FiberStartFunc, this);
}

Fiber::Fiber() : guard{}, entry_point{}, start_parameter{}, previous_fiber{} {
    impl = std::make_unique<FiberImpl>();
}

Fiber::~Fiber() {
    // Make sure the Fiber is not being used
    guard.lock();
    guard.unlock();
    DeleteFiber(impl->handle);
}

void Fiber::Exit() {
    if (!is_thread_fiber) {
        return;
    }
    ConvertFiberToThread();
    guard.unlock();
}

void Fiber::YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to) {
    to->guard.lock();
    to->previous_fiber = from;
    SwitchToFiber(to->impl->handle);
    auto previous_fiber = from->previous_fiber;
    if (previous_fiber) {
        previous_fiber->guard.unlock();
        previous_fiber.reset();
    }
}

std::shared_ptr<Fiber> Fiber::ThreadToFiber() {
    std::shared_ptr<Fiber> fiber = std::shared_ptr<Fiber>{new Fiber()};
    fiber->guard.lock();
    fiber->impl->handle = ConvertThreadToFiber(NULL);
    fiber->is_thread_fiber = true;
    return fiber;
}

#else

constexpr std::size_t default_stack_size = 1024 * 1024 * 4; // 4MB

struct alignas(64) Fiber::FiberImpl {
    std::array<u8, default_stack_size> stack;
    boost::context::detail::fcontext_t context;
};

void Fiber::start(boost::context::detail::transfer_t& transfer) {
    if (previous_fiber) {
        previous_fiber->impl->context = transfer.fctx;
        previous_fiber->guard.unlock();
        previous_fiber = nullptr;
    }
    entry_point(start_parameter);
}

void Fiber::FiberStartFunc(boost::context::detail::transfer_t transfer)
{
   auto fiber = static_cast<Fiber *>(transfer.data);
   fiber->start(transfer);
}

Fiber::Fiber(std::function<void(void*)>&& entry_point_func, void* start_parameter)
    : guard{}, entry_point{std::move(entry_point_func)}, start_parameter{start_parameter}, previous_fiber{} {
    impl = std::make_unique<FiberImpl>();
    auto start_func = std::bind(&Fiber::start, this);
    impl->context =
        boost::context::detail::make_fcontext(impl->stack.data(), impl->stack.size(), &start_func);
}

Fiber::Fiber() : guard{}, entry_point{}, start_parameter{}, previous_fiber{} {
    impl = std::make_unique<FiberImpl>();
}

Fiber::~Fiber() {
    // Make sure the Fiber is not being used
    guard.lock();
    guard.unlock();
}

void Fiber::Exit() {
    if (!is_thread_fiber) {
        return;
    }
    guard.unlock();
}

void Fiber::YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to) {
    to->guard.lock();
    to->previous_fiber = from;
    auto transfer = boost::context::detail::jump_fcontext(to->impl.context, nullptr);
    auto previous_fiber = from->previous_fiber;
    if (previous_fiber) {
        previous_fiber->impl->context = transfer.fctx;
        previous_fiber->guard.unlock();
        previous_fiber.reset();
    }
}

std::shared_ptr<Fiber> Fiber::ThreadToFiber() {
    std::shared_ptr<Fiber> fiber = std::shared_ptr<Fiber>{new Fiber()};
    fiber->guard.lock();
    fiber->is_thread_fiber = true;
    return fiber;
}

#endif
} // namespace Common