Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
elfio mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Third Party Mirrors
elfio mirror
Commits
b57b0840
Commit
b57b0840
authored
2 years ago
by
Serge Lamikhov-Center
Browse files
Options
Downloads
Patches
Plain Diff
More refactoring reported by SonarLint
parent
b9969779
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
elfio/elfio_modinfo.hpp
+1
-1
1 addition, 1 deletion
elfio/elfio_modinfo.hpp
elfio/elfio_symbols.hpp
+29
-27
29 additions, 27 deletions
elfio/elfio_symbols.hpp
elfio/elfio_utils.hpp
+2
-1
2 additions, 1 deletion
elfio/elfio_utils.hpp
elfio/elfio_versym.hpp
+2
-1
2 additions, 1 deletion
elfio/elfio_versym.hpp
with
34 additions
and
30 deletions
elfio/elfio_modinfo.hpp
+
1
−
1
View file @
b57b0840
...
...
@@ -43,7 +43,7 @@ template <class S> class modinfo_section_accessor_template
//------------------------------------------------------------------------------
bool
get_attribute
(
Elf_Word
no
,
std
::
string
&
field
,
std
::
string
&
value
)
const
get_attribute
(
Elf_Word
no
,
const
std
::
string
&
field
,
const
std
::
string
&
value
)
const
{
if
(
no
<
content
.
size
()
)
{
field
=
content
[
no
].
first
;
...
...
This diff is collapsed.
Click to expand it.
elfio/elfio_symbols.hpp
+
29
−
27
View file @
b57b0840
...
...
@@ -356,34 +356,36 @@ template <class S> class symbol_section_accessor_template
(
(
T
)
1
<<
(
hash
%
(
8
*
sizeof
(
T
)
)
)
)
|
(
(
T
)
1
<<
(
(
hash
>>
bloom_shift
)
%
(
8
*
sizeof
(
T
)
)
)
);
if
(
(
convertor
(
bloom_filter
[
bloom_index
]
)
&
bloom_bits
)
==
bloom_bits
)
{
uint32_t
bucket
=
hash
%
nbuckets
;
auto
*
buckets
=
(
uint32_t
*
)(
hash_section
->
get_data
()
+
4
*
sizeof
(
uint32_t
)
+
bloom_size
*
sizeof
(
T
)
);
auto
*
chains
=
(
uint32_t
*
)(
hash_section
->
get_data
()
+
4
*
sizeof
(
uint32_t
)
+
bloom_size
*
sizeof
(
T
)
+
nbuckets
*
sizeof
(
uint32_t
)
);
if
(
convertor
(
buckets
[
bucket
]
)
>=
symoffset
)
{
uint32_t
chain_index
=
convertor
(
buckets
[
bucket
]
)
-
symoffset
;
uint32_t
chain_hash
=
convertor
(
chains
[
chain_index
]
);
std
::
string
symname
;
while
(
true
)
{
if
(
(
chain_hash
>>
1
)
==
(
hash
>>
1
)
&&
get_symbol
(
chain_index
+
symoffset
,
symname
,
value
,
size
,
bind
,
type
,
section_index
,
other
)
&&
name
==
symname
)
{
ret
=
true
;
break
;
}
if
(
chain_hash
&
1
)
break
;
chain_hash
=
convertor
(
chains
[
++
chain_index
]
);
if
(
(
convertor
(
bloom_filter
[
bloom_index
]
)
&
bloom_bits
)
!=
bloom_bits
)
return
ret
;
uint32_t
bucket
=
hash
%
nbuckets
;
auto
*
buckets
=
(
uint32_t
*
)(
hash_section
->
get_data
()
+
4
*
sizeof
(
uint32_t
)
+
bloom_size
*
sizeof
(
T
)
);
auto
*
chains
=
(
uint32_t
*
)(
hash_section
->
get_data
()
+
4
*
sizeof
(
uint32_t
)
+
bloom_size
*
sizeof
(
T
)
+
nbuckets
*
sizeof
(
uint32_t
)
);
if
(
convertor
(
buckets
[
bucket
]
)
>=
symoffset
)
{
uint32_t
chain_index
=
convertor
(
buckets
[
bucket
]
)
-
symoffset
;
uint32_t
chain_hash
=
convertor
(
chains
[
chain_index
]
);
std
::
string
symname
;
while
(
true
)
{
if
(
(
chain_hash
>>
1
)
==
(
hash
>>
1
)
&&
get_symbol
(
chain_index
+
symoffset
,
symname
,
value
,
size
,
bind
,
type
,
section_index
,
other
)
&&
name
==
symname
)
{
ret
=
true
;
break
;
}
if
(
chain_hash
&
1
)
break
;
chain_hash
=
convertor
(
chains
[
++
chain_index
]
);
}
}
...
...
This diff is collapsed.
Click to expand it.
elfio/elfio_utils.hpp
+
2
−
1
View file @
b57b0840
...
...
@@ -209,7 +209,8 @@ class address_translator
//------------------------------------------------------------------------------
inline
uint32_t
elf_hash
(
const
unsigned
char
*
name
)
{
uint32_t
h
=
0
,
g
=
0
;
uint32_t
h
=
0
;
uint32_t
g
=
0
;
while
(
*
name
!=
'\0'
)
{
h
=
(
h
<<
4
)
+
*
name
++
;
g
=
h
&
0xf0000000
;
...
...
This diff is collapsed.
Click to expand it.
elfio/elfio_versym.hpp
+
2
−
1
View file @
b57b0840
...
...
@@ -30,7 +30,8 @@ template <class S> class versym_section_accessor_template
{
public:
//------------------------------------------------------------------------------
versym_section_accessor_template
(
S
*
section
)
:
versym_section
(
section
)
explicit
versym_section_accessor_template
(
S
*
section
)
:
versym_section
(
section
)
{
if
(
section
)
{
entries_num
=
decltype
(
entries_num
)(
section
->
get_size
()
/
...
...
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