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
fc8da2d5
There was an error fetching the commit references. Please try again later.
Commit
fc8da2d5
authored
6 years ago
by
Lioncash
Browse files
Options
Downloads
Patches
Plain Diff
common: Add basic bit manipulation utility function to Common
parent
e73dd394
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/common/CMakeLists.txt
+1
-0
1 addition, 0 deletions
src/common/CMakeLists.txt
src/common/bit_util.h
+61
-0
61 additions, 0 deletions
src/common/bit_util.h
with
62 additions
and
0 deletions
src/common/CMakeLists.txt
+
1
−
0
View file @
fc8da2d5
...
...
@@ -44,6 +44,7 @@ add_library(common STATIC
detached_tasks.cpp
detached_tasks.h
bit_field.h
bit_util.h
cityhash.cpp
cityhash.h
color.h
...
...
This diff is collapsed.
Click to expand it.
src/common/bit_util.h
0 → 100644
+
61
−
0
View file @
fc8da2d5
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include
<climits>
#include
<cstddef>
#ifdef _MSC_VER
#include
<intrin.h>
#endif
#include
"common/common_types.h"
namespace
Common
{
/// Gets the size of a specified type T in bits.
template
<
typename
T
>
constexpr
std
::
size_t
BitSize
()
{
return
sizeof
(
T
)
*
CHAR_BIT
;
}
#ifdef _MSC_VER
inline
u32
CountLeadingZeroes32
(
u32
value
)
{
unsigned
long
leading_zero
=
0
;
if
(
_BitScanReverse
(
&
leading_zero
,
value
)
!=
0
)
{
return
31
-
leading_zero
;
}
return
32
;
}
inline
u64
CountLeadingZeroes64
(
u64
value
)
{
unsigned
long
leading_zero
=
0
;
if
(
_BitScanReverse64
(
&
leading_zero
,
value
)
!=
0
)
{
return
63
-
leading_zero
;
}
return
64
;
}
#else
inline
u32
CountLeadingZeroes32
(
u32
value
)
{
if
(
value
==
0
)
{
return
32
;
}
return
__builtin_clz
(
value
);
}
inline
u64
CountLeadingZeroes64
(
u64
value
)
{
if
(
value
==
0
)
{
return
64
;
}
return
__builtin_clzll
(
value
);
}
#endif
}
// 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