Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
typon-concurrency
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
typon
typon-concurrency
Commits
ea0b7a87
Commit
ea0b7a87
authored
May 19, 2022
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ring_buffer.hpp: hold onto smaller arrays when growing
parent
83528917
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
18 deletions
+23
-18
rt/include/typon/core/scheduler.hpp
rt/include/typon/core/scheduler.hpp
+2
-9
rt/include/typon/fundamental/deque.hpp
rt/include/typon/fundamental/deque.hpp
+1
-4
rt/include/typon/fundamental/ring_buffer.hpp
rt/include/typon/fundamental/ring_buffer.hpp
+20
-5
No files found.
rt/include/typon/core/scheduler.hpp
View file @
ea0b7a87
...
@@ -36,20 +36,13 @@ namespace typon
...
@@ -36,20 +36,13 @@ namespace typon
static
void
push
(
Continuation
task
)
noexcept
static
void
push
(
Continuation
task
)
noexcept
{
{
Scheduler
&
scheduler
=
get
();
get
().
_deque
[
thread_id
].
push
(
task
);
if
(
auto
garbage
=
scheduler
.
_deque
[
thread_id
].
push
(
task
))
{
scheduler
.
_gc
.
retire
(
garbage
);
}
}
}
static
void
schedule
(
Continuation
task
)
noexcept
static
void
schedule
(
Continuation
task
)
noexcept
{
{
Scheduler
&
scheduler
=
get
();
Scheduler
&
scheduler
=
get
();
if
(
auto
garbage
=
scheduler
.
_deque
[
thread_id
].
push
(
task
))
scheduler
.
_deque
[
thread_id
].
push
(
task
);
{
scheduler
.
_gc
.
retire
(
garbage
);
}
scheduler
.
_notifyer
.
notify_one
();
scheduler
.
_notifyer
.
notify_one
();
}
}
...
...
rt/include/typon/fundamental/deque.hpp
View file @
ea0b7a87
...
@@ -44,22 +44,19 @@ namespace typon::fdt::lock_free
...
@@ -44,22 +44,19 @@ namespace typon::fdt::lock_free
delete
_array
.
load
(
relaxed
);
delete
_array
.
load
(
relaxed
);
}
}
auto
push
(
T
x
)
noexcept
void
push
(
T
x
)
noexcept
{
{
u64
bottom
=
_bottom
.
load
(
relaxed
);
u64
bottom
=
_bottom
.
load
(
relaxed
);
u64
top
=
_top
.
load
(
acquire
);
u64
top
=
_top
.
load
(
acquire
);
array_type
*
array
=
_array
.
load
(
relaxed
);
array_type
*
array
=
_array
.
load
(
relaxed
);
array_type
*
garbage
=
nullptr
;
if
(
bottom
-
top
>
array
->
capacity
()
-
1
)
if
(
bottom
-
top
>
array
->
capacity
()
-
1
)
{
{
garbage
=
array
;
array
=
array
->
grow
(
top
,
bottom
);
array
=
array
->
grow
(
top
,
bottom
);
_array
.
store
(
array
);
_array
.
store
(
array
);
}
}
array
->
put
(
bottom
,
x
);
array
->
put
(
bottom
,
x
);
std
::
atomic_thread_fence
(
release
);
std
::
atomic_thread_fence
(
release
);
_bottom
.
store
(
bottom
+
1
,
relaxed
);
_bottom
.
store
(
bottom
+
1
,
relaxed
);
return
garbage
;
}
}
pop_type
pop
()
noexcept
pop_type
pop
()
noexcept
...
...
rt/include/typon/fundamental/ring_buffer.hpp
View file @
ea0b7a87
...
@@ -19,16 +19,22 @@ namespace typon::fdt::lock_free
...
@@ -19,16 +19,22 @@ namespace typon::fdt::lock_free
using
enum
std
::
memory_order
;
using
enum
std
::
memory_order
;
const
u64
_mask
;
const
u64
_mask
;
ring_buffer
*
_next
;
std
::
atomic
<
T
>
*
const
_array
;
std
::
atomic
<
T
>
*
const
_array
;
ring_buffer
(
u8
bits
)
noexcept
ring_buffer
(
u8
bits
,
ring_buffer
*
next
=
nullptr
)
noexcept
:
_mask
((
u64
(
1
)
<<
bits
)
-
1
)
:
_mask
((
u64
(
1
)
<<
bits
)
-
1
)
,
_next
(
next
)
,
_array
(
new
std
::
atomic
<
T
>
[
this
->
capacity
()])
,
_array
(
new
std
::
atomic
<
T
>
[
this
->
capacity
()])
{}
{}
~
ring_buffer
()
~
ring_buffer
()
{
{
delete
[]
_array
;
delete
[]
_array
;
if
(
_next
)
{
delete
_next
;
}
}
}
u64
capacity
()
noexcept
u64
capacity
()
noexcept
...
@@ -57,18 +63,27 @@ namespace typon::fdt::lock_free
...
@@ -57,18 +63,27 @@ namespace typon::fdt::lock_free
ring_buffer
*
grow
(
u64
start
,
u64
end
)
noexcept
ring_buffer
*
grow
(
u64
start
,
u64
end
)
noexcept
{
{
auto
buffer
=
new
ring_buffer
(
std
::
countr_one
(
_mask
)
+
1
);
auto
buffer
=
new
ring_buffer
(
std
::
countr_one
(
_mask
)
+
1
,
this
);
return
fill
(
buffer
,
start
,
end
);
return
fill
(
buffer
,
start
,
end
);
}
}
ring_buffer
*
shrink
(
u64
start
,
u64
end
)
noexcept
ring_buffer
*
shrink
(
u64
start
,
u64
end
)
noexcept
{
{
u8
bits
=
std
::
countr_one
(
_mask
);
ring_buffer
*
last
=
nullptr
;
if
(
bits
<
2
)
auto
next
=
this
;
auto
size
=
(
end
-
start
);
auto
threshold
=
size
*
2
;
while
(
next
->
_next
&&
next
->
_next
->
capacity
()
>=
threshold
)
{
last
=
next
;
next
=
next
->
_next
;
}
if
(
!
last
)
{
{
return
nullptr
;
return
nullptr
;
}
}
return
fill
(
new
ring_buffer
(
bits
-
1
),
start
,
end
);
return
fill
(
std
::
exchange
(
last
->
_next
,
nullptr
),
start
,
end
);
}
}
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment