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
6f006d05
There was an error fetching the commit references. Please try again later.
Commit
6f006d05
authored
4 years ago
by
Lioncash
Browse files
Options
Downloads
Patches
Plain Diff
General: Fix clang build
Allows building on clang to work again
parent
d62d2852
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/common/fiber.h
+2
-2
2 additions, 2 deletions
src/common/fiber.h
src/common/spin_lock.h
+8
-0
8 additions, 0 deletions
src/common/spin_lock.h
src/video_core/dma_pusher.h
+3
-4
3 additions, 4 deletions
src/video_core/dma_pusher.h
src/video_core/gpu.h
+1
-1
1 addition, 1 deletion
src/video_core/gpu.h
with
14 additions
and
7 deletions
src/common/fiber.h
+
2
−
2
View file @
6f006d05
...
...
@@ -41,8 +41,8 @@ public:
Fiber
(
const
Fiber
&
)
=
delete
;
Fiber
&
operator
=
(
const
Fiber
&
)
=
delete
;
Fiber
(
Fiber
&&
)
=
de
fault
;
Fiber
&
operator
=
(
Fiber
&&
)
=
de
fault
;
Fiber
(
Fiber
&&
)
=
de
lete
;
Fiber
&
operator
=
(
Fiber
&&
)
=
de
lete
;
/// Yields control from Fiber 'from' to Fiber 'to'
/// Fiber 'from' must be the currently running fiber.
...
...
This diff is collapsed.
Click to expand it.
src/common/spin_lock.h
+
8
−
0
View file @
6f006d05
...
...
@@ -15,6 +15,14 @@ namespace Common {
*/
class
SpinLock
{
public:
SpinLock
()
=
default
;
SpinLock
(
const
SpinLock
&
)
=
delete
;
SpinLock
&
operator
=
(
const
SpinLock
&
)
=
delete
;
SpinLock
(
SpinLock
&&
)
=
delete
;
SpinLock
&
operator
=
(
SpinLock
&&
)
=
delete
;
void
lock
();
void
unlock
();
[[
nodiscard
]]
bool
try_lock
();
...
...
This diff is collapsed.
Click to expand it.
src/video_core/dma_pusher.h
+
3
−
4
View file @
6f006d05
...
...
@@ -18,6 +18,8 @@ class System;
namespace
Tegra
{
class
GPU
;
enum
class
SubmissionMode
:
u32
{
IncreasingOld
=
0
,
Increasing
=
1
,
...
...
@@ -74,8 +76,7 @@ union CommandHeader {
static_assert
(
std
::
is_standard_layout_v
<
CommandHeader
>
,
"CommandHeader is not standard layout"
);
static_assert
(
sizeof
(
CommandHeader
)
==
sizeof
(
u32
),
"CommandHeader has incorrect size!"
);
static
constexpr
CommandHeader
BuildCommandHeader
(
BufferMethods
method
,
u32
arg_count
,
SubmissionMode
mode
)
{
inline
CommandHeader
BuildCommandHeader
(
BufferMethods
method
,
u32
arg_count
,
SubmissionMode
mode
)
{
CommandHeader
result
{};
result
.
method
.
Assign
(
static_cast
<
u32
>
(
method
));
result
.
arg_count
.
Assign
(
arg_count
);
...
...
@@ -83,8 +84,6 @@ static constexpr CommandHeader BuildCommandHeader(BufferMethods method, u32 arg_
return
result
;
}
class
GPU
;
struct
CommandList
final
{
CommandList
()
=
default
;
explicit
CommandList
(
std
::
size_t
size
)
:
command_lists
(
size
)
{}
...
...
This diff is collapsed.
Click to expand it.
src/video_core/gpu.h
+
1
−
1
View file @
6f006d05
...
...
@@ -273,7 +273,7 @@ public:
BitField
<
0
,
1
,
FenceOperation
>
op
;
BitField
<
8
,
24
,
u32
>
syncpoint_id
;
static
constexpr
CommandHeader
Build
(
FenceOperation
op
,
u32
syncpoint_id
)
{
static
CommandHeader
Build
(
FenceOperation
op
,
u32
syncpoint_id
)
{
FenceAction
result
{};
result
.
op
.
Assign
(
op
);
result
.
syncpoint_id
.
Assign
(
syncpoint_id
);
...
...
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