Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
1,067 contributions in the last year
Activity overview
Contributed to
AssemblyScript/assemblyscript,
WebAssembly/binaryen,
MaxGraey/as-bignum
and 5 other
repositories
Contribution activity
August 2020
Created a pull request in WebAssembly/binaryen that received 8 comments
Replace x * 2 to x + x for float points
x * 2.0 -> x + x
It seems this may drastically reduce binary size if this transform didn't apply before (by LLVM for example)
+96
−20
•
8
comments
Created an issue in WebAssembly/binaryen that received 4 comments
Duplicated unary / binary expression ellimination
Many unary duplicated operations could be eliminated. Like:
~(~x) -> x-(-x) -> x
abs(abs(x)) -> abs(x)
ceil(ceil(x)) -> ceil(x)
floor(floor(x)) -> f…
4
comments