Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wasm-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
wasm-watermarker
Commits
8168ace6
Verified
Commit
8168ace6
authored
Dec 13, 2020
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add optimizing script
parent
21f8adee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
3 deletions
+49
-3
embed.rb
scripts/embed.rb
+49
-3
No files found.
scripts/embed.rb
View file @
8168ace6
...
@@ -2,8 +2,10 @@
...
@@ -2,8 +2,10 @@
require
'fileutils'
require
'fileutils'
require
'pathname'
require
'pathname'
SNPI
=
"./build/bin/snpi"
SNPI
=
"./build/bin/snpi"
PISN
=
"./build/bin/pisn"
PISN
=
"./build/bin/pisn"
WASM_OPT
=
"./build/binaryen/build/bin/wasm-opt"
WASM_BINARIES
=
{
WASM_BINARIES
=
{
:source_map
=>
"./node_modules/source-map/lib/mappings.wasm"
,
:source_map
=>
"./node_modules/source-map/lib/mappings.wasm"
,
...
@@ -31,6 +33,42 @@ METHODS = [
...
@@ -31,6 +33,42 @@ METHODS = [
watermark
=
"N7AStlK2gioIqeRi"
watermark
=
"N7AStlK2gioIqeRi"
OPT_PASSES
=
[
"coalesce-locals"
,
"code-folding"
,
"code-pushing"
,
"dae-optimizing"
,
"dce"
,
"directize"
,
"duplicate-function-elimination"
,
"duplicate-import-elimination"
,
"flatten"
,
"generate-stack-ir"
,
"inlining-optimizing"
,
# "local-cse", # must be --flatten before
"memory-packing"
,
"merge-blocks"
,
"merge-locals"
,
# "optimize-added-constants-propagate", # Assertion failed
# "optimize-added-constants", # Assertion failed
"optimize-instructions"
,
"optimize-stack-ir"
,
"pick-load-signs"
,
"precompute-propagate"
,
"precompute"
,
"remove-unused-brs"
,
"remove-unused-module-elements"
,
"remove-unused-names"
,
"reorder-locals"
,
"rse"
,
"simplify-globals-optimizing"
,
"simplify-globals"
,
"simplify-locals-nostructure"
,
"simplify-locals"
,
"ssa-nomerge"
,
"vacuum"
,
]
def
copy
(
file
,
out
)
def
copy
(
file
,
out
)
FileUtils
.
copy
(
file
,
out
,
{
:verbose
=>
true
})
FileUtils
.
copy
(
file
,
out
,
{
:verbose
=>
true
})
end
end
...
@@ -38,7 +76,13 @@ end
...
@@ -38,7 +76,13 @@ end
def
embed
(
file
,
out
,
method
,
watermark
,
chunk_size
=
20
)
def
embed
(
file
,
out
,
method
,
watermark
,
chunk_size
=
20
)
output
=
IO
.
popen
([
SNPI
,
"-o"
,
out
.
to_s
,
"-m"
,
method
,
"-w"
,
watermark
,
"-c"
,
chunk_size
.
to_s
,
file
.
to_s
]).
read
output
=
IO
.
popen
([
SNPI
,
"-o"
,
out
.
to_s
,
"-m"
,
method
,
"-w"
,
watermark
,
"-c"
,
chunk_size
.
to_s
,
file
.
to_s
]).
read
puts
"
#{
file
}
,
#{
out
}
,
#{
method
}
,
#{
watermark
}
,
#{
output
}
"
puts
"embed
#{
file
}
,
#{
out
}
,
#{
method
}
,
#{
watermark
}
,
#{
output
}
"
end
def
optimize
(
file
,
out
,
pass
)
output
=
IO
.
popen
([
WASM_OPT
,
"-o"
,
out
.
to_s
,
"--
#{
pass
}
"
,
file
.
to_s
]).
read
puts
"optimize
#{
file
}
,
#{
out
}
,
#{
pass
}
,
#{
output
}
"
end
end
WASM_BINARIES
.
each
do
|
id
,
file
|
WASM_BINARIES
.
each
do
|
id
,
file
|
...
@@ -54,5 +98,7 @@ METHODS.each do |method|
...
@@ -54,5 +98,7 @@ METHODS.each do |method|
out
=
dir
+
Pathname
(
file
).
basename
.
sub
(
".wasm"
,
"-
#{
method
[
:abbr
]
}
-
#{
watermark
}
.wasm"
)
out
=
dir
+
Pathname
(
file
).
basename
.
sub
(
".wasm"
,
"-
#{
method
[
:abbr
]
}
-
#{
watermark
}
.wasm"
)
embed
(
file
,
out
,
method
[
:name
],
watermark
)
embed
(
file
,
out
,
method
[
:name
],
watermark
)
OPT_PASSES
.
each
{
|
pass
|
optimize
(
out
,
out
.
sub
(
".wasm"
,
"-
#{
pass
}
.wasm"
),
pass
)}
end
end
end
end
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