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
50c66647
Commit
50c66647
authored
Dec 19, 2018
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
オーバーライドする関数の間違いを修正
parent
bbc02591
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
InstructionWatermarkPass.cpp
src/nykk/pass/InstructionWatermarkPass.cpp
+5
-5
No files found.
src/nykk/pass/InstructionWatermarkPass.cpp
View file @
50c66647
...
...
@@ -40,13 +40,13 @@ namespace
/**
* @brief Initialization before pass is run.
*
* @param
module Reference of the module
.
* @param
function Reference of the function
.
*
* @return ?
*/
bool
doInitialization
(
llvm
::
Module
&
module
)
override
bool
doInitialization
(
llvm
::
Function
&
function
)
override
{
module_name_
=
module
.
getName
();
module_name_
=
function
.
getParent
()
->
getName
();
bit_stream_
=
nykk
::
CircularBitStream
::
from_string
(
nykk
::
pass
::
watermark_opt
);
llvm
::
errs
()
<<
"func"
<<
", "
<<
"insts"
<<
", "
<<
"bits"
<<
"
\n
"
;
...
...
@@ -57,11 +57,11 @@ namespace
/**
* @brief Finalization after pass is run.
*
* @param
module Reference of the module
.
* @param
function Reference of the function
.
*
* @return ?
*/
bool
doFinalization
([[
maybe_unused
]]
llvm
::
Module
&
module
)
override
bool
doFinalization
([[
maybe_unused
]]
llvm
::
Function
&
function
)
override
{
module_name_
.
clear
();
bit_stream_
.
reset
();
...
...
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