Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
llvm-watermarker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nagayama15
llvm-watermarker
Commits
16fda2e4
Commit
16fda2e4
authored
Nov 20, 2018
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
`parition_opt.getValue().value`を一時変数に束縛
parent
ccbc104d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
BlockWatermarkPass.cpp
src/nykk/pass/BlockWatermarkPass.cpp
+9
-7
No files found.
src/nykk/pass/BlockWatermarkPass.cpp
View file @
16fda2e4
...
@@ -128,7 +128,9 @@ namespace
...
@@ -128,7 +128,9 @@ namespace
llvm
::
errs
()
llvm
::
errs
()
<<
"[BlockWatermarker - '"
<<
func
.
getName
()
<<
"' in "
<<
module_name_
<<
"] Basic blocks: "
<<
func
.
size
()
<<
"
\n
"
;
<<
"[BlockWatermarker - '"
<<
func
.
getName
()
<<
"' in "
<<
module_name_
<<
"] Basic blocks: "
<<
func
.
size
()
<<
"
\n
"
;
if
(
func
.
size
()
<=
partition_opt
.
getValue
().
value
)
const
auto
partition
=
partition_opt
.
getValue
().
value
;
if
(
func
.
size
()
<=
partition
)
{
{
llvm
::
errs
()
llvm
::
errs
()
<<
" function '"
<<
func
.
getName
()
<<
"' is too small to watermark"
<<
"
\n
"
;
<<
" function '"
<<
func
.
getName
()
<<
"' is too small to watermark"
<<
"
\n
"
;
...
@@ -149,15 +151,15 @@ namespace
...
@@ -149,15 +151,15 @@ namespace
std
::
size_t
num_embedded_bits
=
0
;
std
::
size_t
num_embedded_bits
=
0
;
std
::
size_t
block_index
=
1
;
// Without entry block.
std
::
size_t
block_index
=
1
;
// Without entry block.
const
auto
bit_mask
=
(
1
<<
possible_embedding_bits
[
partition
_opt
.
getValue
().
value
])
-
1
;
const
auto
bit_mask
=
(
1
<<
possible_embedding_bits
[
partition
])
-
1
;
for
(;
block_index
+
partition
_opt
.
getValue
().
value
<=
blocks
.
size
();
block_index
+=
partition_opt
.
getValue
().
value
)
for
(;
block_index
+
partition
<=
blocks
.
size
();
block_index
+=
partition
)
{
{
// Part of watermark to embed.
// Part of watermark to embed.
const
auto
data
=
(
watermark_opt
>>
bit_pos_
)
&
bit_mask
;
const
auto
data
=
(
watermark_opt
>>
bit_pos_
)
&
bit_mask
;
// Shuffles each `partition
_opt
` blocks.
// Shuffles each `partition` blocks.
for
(
std
::
size_t
i
=
0
;
i
<
partition
_opt
.
getValue
().
value
;
i
++
)
for
(
std
::
size_t
i
=
0
;
i
<
partition
;
i
++
)
{
{
const
auto
index
=
block_index
+
perm_table_
.
at
(
data
).
at
(
i
);
const
auto
index
=
block_index
+
perm_table_
.
at
(
data
).
at
(
i
);
...
@@ -165,8 +167,8 @@ namespace
...
@@ -165,8 +167,8 @@ namespace
last_block
=
&
blocks
[
index
].
get
();
last_block
=
&
blocks
[
index
].
get
();
}
}
num_embedded_bits
+=
possible_embedding_bits
[
partition
_opt
.
getValue
().
value
];
num_embedded_bits
+=
possible_embedding_bits
[
partition
];
bit_pos_
+=
possible_embedding_bits
[
partition
_opt
.
getValue
().
value
];
bit_pos_
+=
possible_embedding_bits
[
partition
];
bit_pos_
%=
sizeof
(
std
::
uint32_t
)
*
8
;
bit_pos_
%=
sizeof
(
std
::
uint32_t
)
*
8
;
}
}
...
...
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