Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
bc266a9d
There was an error fetching the commit references. Please try again later.
Commit
bc266a9d
authored
5 years ago
by
Fernando Sahmkow
Browse files
Options
Downloads
Patches
Plain Diff
Common: Implement a basic Fiber class.
parent
13ed9438
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/CMakeLists.txt
+2
-0
2 additions, 0 deletions
src/common/CMakeLists.txt
src/common/fiber.cpp
+147
-0
147 additions, 0 deletions
src/common/fiber.cpp
src/common/fiber.h
+55
-0
55 additions, 0 deletions
src/common/fiber.h
with
204 additions
and
0 deletions
src/common/CMakeLists.txt
+
2
−
0
View file @
bc266a9d
...
...
@@ -110,6 +110,8 @@ add_library(common STATIC
common_types.h
dynamic_library.cpp
dynamic_library.h
fiber.cpp
fiber.h
file_util.cpp
file_util.h
hash.h
...
...
This diff is collapsed.
Click to expand it.
src/common/fiber.cpp
0 → 100644
+
147
−
0
View file @
bc266a9d
// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include
"common/fiber.h"
namespace
Common
{
#ifdef _MSC_VER
#include
<windows.h>
struct
Fiber
::
FiberImpl
{
LPVOID
handle
=
nullptr
;
};
void
Fiber
::
_start
([[
maybe_unused
]]
void
*
parameter
)
{
guard
.
lock
();
if
(
previous_fiber
)
{
previous_fiber
->
guard
.
unlock
();
previous_fiber
=
nullptr
;
}
entry_point
(
start_parameter
);
}
static
void
__stdcall
FiberStartFunc
(
LPVOID
lpFiberParameter
)
{
auto
fiber
=
static_cast
<
Fiber
*>
(
lpFiberParameter
);
fiber
->
_start
(
nullptr
);
}
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
#include
<boost/context/detail/fcontext.hpp>
constexpr
std
::
size_t
default_stack_size
=
1024
*
1024
*
4
;
// 4MB
struct
Fiber
::
FiberImpl
{
boost
::
context
::
detail
::
fcontext_t
context
;
std
::
array
<
u8
,
default_stack_size
>
stack
;
};
void
Fiber
::
_start
(
void
*
parameter
)
{
guard
.
lock
();
boost
::
context
::
detail
::
transfer_t
*
transfer
=
static_cast
<
boost
::
context
::
detail
::
transfer_t
*>
(
parameter
);
if
(
previous_fiber
)
{
previous_fiber
->
impl
->
context
=
transfer
->
fctx
;
previous_fiber
->
guard
.
unlock
();
previous_fiber
=
nullptr
;
}
entry_point
(
start_parameter
);
}
static
void
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
->
is_thread_fiber
=
true
;
return
fiber
;
}
#endif
}
// namespace Common
This diff is collapsed.
Click to expand it.
src/common/fiber.h
0 → 100644
+
55
−
0
View file @
bc266a9d
// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include
<functional>
#include
<memory>
#include
"common/common_types.h"
#include
"common/spin_lock.h"
namespace
Common
{
class
Fiber
{
public:
Fiber
(
std
::
function
<
void
(
void
*
)
>&&
entry_point_func
,
void
*
start_parameter
);
~
Fiber
();
Fiber
(
const
Fiber
&
)
=
delete
;
Fiber
&
operator
=
(
const
Fiber
&
)
=
delete
;
Fiber
(
Fiber
&&
)
=
default
;
Fiber
&
operator
=
(
Fiber
&&
)
=
default
;
/// Yields control from Fiber 'from' to Fiber 'to'
/// Fiber 'from' must be the currently running fiber.
static
void
YieldTo
(
std
::
shared_ptr
<
Fiber
>
from
,
std
::
shared_ptr
<
Fiber
>
to
);
static
std
::
shared_ptr
<
Fiber
>
ThreadToFiber
();
/// Only call from main thread's fiber
void
Exit
();
/// Used internally but required to be public, Shall not be used
void
_start
(
void
*
parameter
);
/// Changes the start parameter of the fiber. Has no effect if the fiber already started
void
SetStartParameter
(
void
*
new_parameter
)
{
start_parameter
=
new_parameter
;
}
private
:
Fiber
();
struct
FiberImpl
;
SpinLock
guard
;
std
::
function
<
void
(
void
*
)
>
entry_point
;
void
*
start_parameter
;
std
::
shared_ptr
<
Fiber
>
previous_fiber
;
std
::
unique_ptr
<
FiberImpl
>
impl
;
bool
is_thread_fiber
{};
};
}
// namespace Common
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment