webruby 0.2.7 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/webruby/environment.rb +24 -8
- data/lib/webruby/rake/files.rake +6 -22
- data/lib/webruby/rake/general.rake +1 -1
- data/lib/webruby/rake/mruby.rake +1 -0
- data/lib/webruby/utility.rb +14 -0
- data/modules/mruby/AUTHORS +14 -0
- data/modules/mruby/CONTRIBUTING.md +7 -4
- data/modules/mruby/INSTALL +28 -11
- data/modules/mruby/MITL +13 -13
- data/modules/mruby/Makefile +4 -5
- data/modules/mruby/README.md +54 -49
- data/modules/mruby/Rakefile +36 -6
- data/modules/mruby/benchmark/ao-render.rb +1 -2
- data/modules/mruby/benchmark/bm_app_lc_fizzbuzz.rb +52 -0
- data/modules/mruby/benchmark/fib39.rb +0 -0
- data/modules/mruby/bintest/mrbc.rb +12 -0
- data/modules/mruby/build_config.rb +32 -2
- data/modules/mruby/doc/api/README.md +30 -0
- data/modules/mruby/doc/api/mruby.h.md +69 -0
- data/modules/mruby/doc/compile/README.md +208 -99
- data/modules/mruby/doc/debugger/README.md +370 -0
- data/modules/mruby/doc/language/Core.md +1590 -0
- data/modules/mruby/doc/language/README.md +9 -0
- data/modules/mruby/doc/language/generator.rb +15 -0
- data/modules/mruby/doc/language/mrbdoc/lib/mrbdoc_analyze.rb +231 -0
- data/modules/mruby/doc/language/mrbdoc/lib/mrbdoc_docu.rb +118 -0
- data/modules/mruby/doc/language/mrbdoc/mrbdoc.rb +38 -0
- data/modules/mruby/doc/mrbconf/README.md +160 -0
- data/modules/mruby/doc/mrbgems/README.md +136 -66
- data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake +1 -1
- data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c +1 -1
- data/modules/mruby/examples/mrbgems/c_extension_example/mrbgem.rake +1 -1
- data/modules/mruby/examples/mrbgems/c_extension_example/src/example.c +1 -1
- data/modules/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake +1 -1
- data/modules/mruby/examples/targets/{ArduinoDue.rb → build_config_ArduinoDue.rb} +32 -6
- data/modules/mruby/examples/targets/build_config_IntelGalileo.rb +106 -0
- data/modules/mruby/examples/targets/{chipKitMax32.rb → build_config_chipKITMax32.rb} +26 -7
- data/modules/mruby/include/mrbconf.h +25 -1
- data/modules/mruby/include/mruby/array.h +32 -22
- data/modules/mruby/include/mruby/boxing_nan.h +94 -0
- data/modules/mruby/include/mruby/boxing_no.h +49 -0
- data/modules/mruby/include/mruby/boxing_word.h +119 -0
- data/modules/mruby/include/mruby/class.h +15 -13
- data/modules/mruby/include/mruby/compile.h +43 -36
- data/modules/mruby/include/mruby/data.h +13 -5
- data/modules/mruby/include/mruby/debug.h +9 -9
- data/modules/mruby/include/mruby/dump.h +32 -23
- data/modules/mruby/include/mruby/error.h +36 -0
- data/modules/mruby/include/mruby/gc.h +11 -6
- data/modules/mruby/include/mruby/hash.h +12 -12
- data/modules/mruby/include/mruby/irep.h +9 -3
- data/modules/mruby/include/mruby/khash.h +58 -41
- data/modules/mruby/include/mruby/numeric.h +38 -4
- data/modules/mruby/include/mruby/object.h +55 -0
- data/modules/mruby/include/mruby/opcode.h +160 -0
- data/modules/mruby/include/mruby/proc.h +19 -5
- data/modules/mruby/include/mruby/range.h +4 -3
- data/modules/mruby/include/mruby/re.h +20 -0
- data/modules/mruby/include/mruby/string.h +86 -47
- data/modules/mruby/include/mruby/value.h +100 -374
- data/modules/mruby/include/mruby/variable.h +34 -32
- data/modules/mruby/include/mruby/version.h +40 -0
- data/modules/mruby/include/mruby.h +211 -139
- data/modules/mruby/minirake +16 -9
- data/modules/mruby/mrbgems/default.gembox +12 -0
- data/modules/mruby/mrbgems/full-core.gembox +3 -3
- data/modules/mruby/mrbgems/mruby-array-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +488 -8
- data/modules/mruby/mrbgems/mruby-array-ext/src/array.c +57 -31
- data/modules/mruby/mrbgems/mruby-array-ext/test/array.rb +231 -45
- data/modules/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb +286 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb +701 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/mrbgem.rake +9 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c +516 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h +26 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c +235 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h +14 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c +78 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h +13 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c +428 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c +501 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c +58 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c +54 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +746 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +163 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +16 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdberror.h +20 -0
- data/modules/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb +12 -0
- data/modules/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake +14 -1
- data/modules/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +154 -72
- data/modules/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb +46 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +37 -28
- data/modules/mruby/mrbgems/mruby-bin-mruby-config/mrbgem.rake +30 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby-config/mruby-config +16 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby-config/mruby-config.bat +30 -0
- data/modules/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb +73 -0
- data/modules/mruby/mrbgems/mruby-bin-strip/mrbgem.rake +6 -0
- data/modules/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c +155 -0
- data/modules/mruby/mrbgems/mruby-enum-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb +555 -21
- data/modules/mruby/mrbgems/mruby-enum-ext/test/enum.rb +119 -0
- data/modules/mruby/mrbgems/mruby-enum-lazy/mrbgem.rake +7 -0
- data/modules/mruby/mrbgems/mruby-enum-lazy/mrblib/lazy.rb +150 -0
- data/modules/mruby/mrbgems/mruby-enum-lazy/test/lazy.rb +47 -0
- data/modules/mruby/mrbgems/mruby-enumerator/mrbgem.rake +7 -0
- data/modules/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb +636 -0
- data/modules/mruby/mrbgems/mruby-enumerator/test/enumerator.rb +537 -0
- data/modules/mruby/mrbgems/mruby-eval/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-eval/src/eval.c +243 -4
- data/modules/mruby/mrbgems/mruby-eval/test/eval.rb +80 -0
- data/modules/mruby/mrbgems/mruby-exit/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-exit/src/mruby-exit.c +1 -1
- data/modules/mruby/mrbgems/mruby-fiber/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-fiber/src/fiber.c +157 -51
- data/modules/mruby/mrbgems/mruby-fiber/test/fiber.rb +179 -35
- data/modules/mruby/mrbgems/mruby-hash-ext/mrbgem.rake +3 -0
- data/modules/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb +241 -1
- data/modules/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +11 -19
- data/modules/mruby/mrbgems/mruby-hash-ext/test/hash.rb +138 -1
- data/modules/mruby/mrbgems/mruby-kernel-ext/mrbgem.rake +5 -0
- data/modules/mruby/mrbgems/mruby-kernel-ext/src/kernel.c +183 -0
- data/modules/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb +53 -0
- data/modules/mruby/mrbgems/mruby-math/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-math/src/math.c +107 -14
- data/modules/mruby/mrbgems/mruby-math/test/math.rb +16 -0
- data/modules/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb +5 -0
- data/modules/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb +9 -1
- data/modules/mruby/mrbgems/mruby-object-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-object-ext/mrblib/object.rb +19 -0
- data/modules/mruby/mrbgems/mruby-object-ext/src/object.c +5 -8
- data/modules/mruby/mrbgems/mruby-object-ext/test/object.rb +16 -0
- data/modules/mruby/mrbgems/mruby-objectspace/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +121 -53
- data/modules/mruby/mrbgems/mruby-objectspace/test/objectspace.rb +27 -4
- data/modules/mruby/mrbgems/mruby-print/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-print/src/print.c +3 -5
- data/modules/mruby/mrbgems/mruby-proc-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-proc-ext/src/proc.c +89 -19
- data/modules/mruby/mrbgems/mruby-proc-ext/test/proc.c +56 -0
- data/modules/mruby/mrbgems/mruby-proc-ext/test/proc.rb +47 -0
- data/modules/mruby/mrbgems/mruby-random/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-random/src/mt19937ar.c +30 -25
- data/modules/mruby/mrbgems/mruby-random/src/mt19937ar.h +6 -3
- data/modules/mruby/mrbgems/mruby-random/src/random.c +157 -137
- data/modules/mruby/mrbgems/mruby-random/src/random.h +3 -3
- data/modules/mruby/mrbgems/mruby-random/test/random.rb +9 -9
- data/modules/mruby/mrbgems/mruby-range-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-range-ext/src/range.c +57 -3
- data/modules/mruby/mrbgems/mruby-range-ext/test/range.rb +9 -0
- data/modules/mruby/mrbgems/mruby-sprintf/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-sprintf/mrblib/string.rb +9 -0
- data/modules/mruby/mrbgems/mruby-sprintf/src/sprintf.c +29 -23
- data/modules/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +7 -2
- data/modules/mruby/mrbgems/mruby-string-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-string-ext/mrblib/string.rb +250 -11
- data/modules/mruby/mrbgems/mruby-string-ext/src/string.c +220 -5
- data/modules/mruby/mrbgems/mruby-string-ext/test/string.rb +326 -4
- data/modules/mruby/mrbgems/mruby-string-utf8/mrbgem.rake +2 -0
- data/modules/mruby/mrbgems/mruby-string-utf8/src/string.c +486 -52
- data/modules/mruby/mrbgems/mruby-string-utf8/test/string.rb +97 -14
- data/modules/mruby/mrbgems/mruby-struct/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-struct/mrblib/struct.rb +31 -0
- data/modules/mruby/mrbgems/mruby-struct/src/struct.c +178 -196
- data/modules/mruby/mrbgems/mruby-struct/test/struct.rb +115 -61
- data/modules/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb +22 -17
- data/modules/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +20 -11
- data/modules/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb +14 -0
- data/modules/mruby/mrbgems/mruby-time/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-time/mrblib/time.rb +9 -0
- data/modules/mruby/mrbgems/mruby-time/src/time.c +98 -37
- data/modules/mruby/mrbgems/mruby-time/test/time.rb +152 -148
- data/modules/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb +1 -1
- data/modules/mruby/mrblib/array.rb +110 -4
- data/modules/mruby/mrblib/class.rb +1 -22
- data/modules/mruby/mrblib/compar.rb +10 -30
- data/modules/mruby/mrblib/enum.rb +64 -52
- data/modules/mruby/mrblib/error.rb +9 -4
- data/modules/mruby/mrblib/hash.rb +164 -23
- data/modules/mruby/mrblib/kernel.rb +26 -22
- data/modules/mruby/mrblib/mrblib.rake +4 -4
- data/modules/mruby/mrblib/numeric.rb +22 -9
- data/modules/mruby/mrblib/range.rb +24 -2
- data/modules/mruby/mrblib/string.rb +15 -3
- data/modules/mruby/src/array.c +279 -339
- data/modules/mruby/src/backtrace.c +68 -16
- data/modules/mruby/src/class.c +539 -379
- data/modules/mruby/src/codegen.c +424 -207
- data/modules/mruby/src/compar.c +1 -1
- data/modules/mruby/src/crc.c +7 -6
- data/modules/mruby/src/debug.c +37 -36
- data/modules/mruby/src/dump.c +463 -213
- data/modules/mruby/src/enum.c +1 -1
- data/modules/mruby/src/error.c +91 -92
- data/modules/mruby/src/error.h +3 -19
- data/modules/mruby/src/etc.c +85 -82
- data/modules/mruby/src/gc.c +134 -108
- data/modules/mruby/src/hash.c +161 -565
- data/modules/mruby/src/init.c +2 -13
- data/modules/mruby/src/kernel.c +217 -251
- data/modules/mruby/src/load.c +280 -283
- data/modules/mruby/src/mrb_throw.h +41 -0
- data/modules/mruby/src/mruby_core.rake +57 -7
- data/modules/mruby/src/node.h +104 -104
- data/modules/mruby/src/numeric.c +221 -208
- data/modules/mruby/src/object.c +41 -42
- data/modules/mruby/src/opcode.h +2 -160
- data/modules/mruby/src/parse.y +3430 -3223
- data/modules/mruby/src/pool.c +13 -9
- data/modules/mruby/src/print.c +20 -17
- data/modules/mruby/src/proc.c +77 -21
- data/modules/mruby/src/range.c +55 -45
- data/modules/mruby/src/state.c +95 -31
- data/modules/mruby/src/string.c +462 -468
- data/modules/mruby/src/symbol.c +95 -85
- data/modules/mruby/src/variable.c +104 -74
- data/modules/mruby/src/version.c +13 -0
- data/modules/mruby/src/vm.c +528 -296
- data/modules/mruby/tasks/libmruby.rake +9 -5
- data/modules/mruby/tasks/mrbgem_spec.rake +130 -26
- data/modules/mruby/tasks/mrbgems.rake +21 -11
- data/modules/mruby/tasks/mrbgems_test.rake +46 -40
- data/modules/mruby/tasks/mruby_build.rake +54 -12
- data/modules/mruby/tasks/mruby_build_commands.rake +34 -5
- data/modules/mruby/tasks/mruby_build_gem.rake +25 -3
- data/modules/mruby/tasks/ruby_ext.rake +11 -2
- data/modules/mruby/tasks/toolchains/clang.rake +2 -1
- data/modules/mruby/tasks/toolchains/gcc.rake +26 -3
- data/modules/mruby/tasks/toolchains/visualcpp.rake +17 -8
- data/modules/mruby/test/assert.rb +30 -8
- data/modules/mruby/test/bintest.rb +10 -0
- data/modules/mruby/test/driver.c +74 -24
- data/modules/mruby/test/init_mrbtest.c +21 -2
- data/modules/mruby/test/mrbtest.rake +27 -5
- data/modules/mruby/test/t/argumenterror.rb +0 -5
- data/modules/mruby/test/t/array.rb +23 -7
- data/modules/mruby/test/t/bs_block.rb +32 -0
- data/modules/mruby/test/t/class.rb +29 -5
- data/modules/mruby/test/t/comparable.rb +20 -12
- data/modules/mruby/test/t/enumerable.rb +33 -7
- data/modules/mruby/test/t/exception.rb +63 -38
- data/modules/mruby/test/t/false.rb +2 -4
- data/modules/mruby/test/t/float.rb +39 -4
- data/modules/mruby/test/t/hash.rb +40 -6
- data/modules/mruby/test/t/indexerror.rb +0 -4
- data/modules/mruby/test/t/integer.rb +41 -5
- data/modules/mruby/test/t/kernel.rb +90 -3
- data/modules/mruby/test/t/localjumperror.rb +4 -4
- data/modules/mruby/test/t/methods.rb +1 -1
- data/modules/mruby/test/t/module.rb +43 -13
- data/modules/mruby/test/t/nameerror.rb +0 -4
- data/modules/mruby/test/t/nil.rb +5 -0
- data/modules/mruby/test/t/nomethoderror.rb +11 -2
- data/modules/mruby/test/t/numeric.rb +18 -4
- data/modules/mruby/test/t/proc.rb +59 -6
- data/modules/mruby/test/t/range.rb +15 -5
- data/modules/mruby/test/t/rangeerror.rb +0 -4
- data/modules/mruby/test/t/standarderror.rb +0 -4
- data/modules/mruby/test/t/string.rb +56 -12
- data/modules/mruby/test/t/superclass.rb +46 -0
- data/modules/mruby/test/t/symbol.rb +0 -4
- data/modules/mruby/test/t/syntax.rb +134 -1
- data/modules/mruby/test/t/true.rb +2 -4
- data/modules/mruby/test/t/typeerror.rb +0 -5
- data/modules/mruby/test/t/unicode.rb +35 -0
- data/modules/mruby/tools/mrbc/mrbc.c +9 -12
- data/modules/mruby/travis_config.rb +22 -2
- metadata +98 -1299
- data/modules/emscripten/AUTHORS +0 -117
- data/modules/emscripten/CONTRIBUTING.markdown +0 -5
- data/modules/emscripten/ChangeLog +0 -468
- data/modules/emscripten/LICENSE +0 -94
- data/modules/emscripten/README.markdown +0 -14
- data/modules/emscripten/cmake/Modules/FindOpenAL.cmake +0 -26
- data/modules/emscripten/cmake/Platform/Emscripten.cmake +0 -228
- data/modules/emscripten/em++ +0 -12
- data/modules/emscripten/em++.bat +0 -2
- data/modules/emscripten/em-config +0 -24
- data/modules/emscripten/em-config.bat +0 -2
- data/modules/emscripten/emar +0 -24
- data/modules/emscripten/emar.bat +0 -2
- data/modules/emscripten/emcc +0 -2069
- data/modules/emscripten/emcc.bat +0 -2
- data/modules/emscripten/emcc.py +0 -5
- data/modules/emscripten/emconfigure +0 -27
- data/modules/emscripten/emconfigure.bat +0 -2
- data/modules/emscripten/emlink.py +0 -33
- data/modules/emscripten/emmake +0 -29
- data/modules/emscripten/emmake.bat +0 -2
- data/modules/emscripten/emranlib +0 -9
- data/modules/emscripten/emranlib.bat +0 -2
- data/modules/emscripten/emrun +0 -1087
- data/modules/emscripten/emrun.bat +0 -2
- data/modules/emscripten/emscons +0 -20
- data/modules/emscripten/emscripten.py +0 -1347
- data/modules/emscripten/package.json +0 -7
- data/modules/emscripten/patches/README +0 -4
- data/modules/emscripten/patches/series +0 -2
- data/modules/emscripten/scons-tools/closure.py +0 -28
- data/modules/emscripten/scons-tools/emscripten.py +0 -364
- data/modules/emscripten/scons-tools/llvm.py +0 -34
- data/modules/emscripten/src/analyzer.js +0 -1781
- data/modules/emscripten/src/closure-externs.js +0 -110
- data/modules/emscripten/src/compiler.html +0 -48
- data/modules/emscripten/src/compiler.js +0 -331
- data/modules/emscripten/src/compiler_phase.html +0 -33
- data/modules/emscripten/src/corruptionCheck.js +0 -98
- data/modules/emscripten/src/determinstic.js +0 -20
- data/modules/emscripten/src/embind/embind.js +0 -1677
- data/modules/emscripten/src/embind/emval.js +0 -284
- data/modules/emscripten/src/emrun_postjs.js +0 -20
- data/modules/emscripten/src/emrun_prejs.js +0 -5
- data/modules/emscripten/src/emscripten-source-map.min.js +0 -31
- data/modules/emscripten/src/experimental/allow_loopvars_from_memsetcpy_inasm.diff +0 -97
- data/modules/emscripten/src/experimental/batching.diff +0 -44
- data/modules/emscripten/src/experimental/functypeopt.diff +0 -113
- data/modules/emscripten/src/experimental/multiple_heaps.diff +0 -175
- data/modules/emscripten/src/experimental/noncallgraphprofiling.diff +0 -197
- data/modules/emscripten/src/experimental/optimize_memcpy_for_ta1.diff +0 -124
- data/modules/emscripten/src/experimental/remove__label__s.diff +0 -140
- data/modules/emscripten/src/experimental/renderer_cache_hash.diff +0 -99
- data/modules/emscripten/src/experimental/sdl_key_forwarding.diff +0 -57
- data/modules/emscripten/src/experimental/simplifyGeneratedFunctionsDetection.diff +0 -336
- data/modules/emscripten/src/experimental/stringCache.diff +0 -147
- data/modules/emscripten/src/fastLong.js +0 -299
- data/modules/emscripten/src/gl-matrix.js +0 -1952
- data/modules/emscripten/src/headless.js +0 -295
- data/modules/emscripten/src/headlessCanvas.js +0 -618
- data/modules/emscripten/src/hello_world.js +0 -92
- data/modules/emscripten/src/intertyper.js +0 -1228
- data/modules/emscripten/src/jsifier.js +0 -1969
- data/modules/emscripten/src/library.js +0 -9196
- data/modules/emscripten/src/library_browser.js +0 -988
- data/modules/emscripten/src/library_egl.js +0 -564
- data/modules/emscripten/src/library_fs.js +0 -1619
- data/modules/emscripten/src/library_gc.js +0 -236
- data/modules/emscripten/src/library_gl.js +0 -5194
- data/modules/emscripten/src/library_glfw.js +0 -585
- data/modules/emscripten/src/library_glut.js +0 -504
- data/modules/emscripten/src/library_idbfs.js +0 -216
- data/modules/emscripten/src/library_jansson.js +0 -320
- data/modules/emscripten/src/library_memfs.js +0 -303
- data/modules/emscripten/src/library_nodefs.js +0 -286
- data/modules/emscripten/src/library_openal.js +0 -915
- data/modules/emscripten/src/library_path.js +0 -133
- data/modules/emscripten/src/library_sdl.js +0 -2728
- data/modules/emscripten/src/library_sockfs.js +0 -578
- data/modules/emscripten/src/library_strtok_r.c +0 -97
- data/modules/emscripten/src/library_tty.js +0 -146
- data/modules/emscripten/src/library_uuid.js +0 -140
- data/modules/emscripten/src/library_xlib.js +0 -23
- data/modules/emscripten/src/long.js +0 -1609
- data/modules/emscripten/src/modules.js +0 -543
- data/modules/emscripten/src/parseTools.js +0 -2723
- data/modules/emscripten/src/postamble.js +0 -239
- data/modules/emscripten/src/postamble_sharedlib.js +0 -16
- data/modules/emscripten/src/preamble.js +0 -1233
- data/modules/emscripten/src/preamble_sharedlib.js +0 -25
- data/modules/emscripten/src/proxyClient.js +0 -82
- data/modules/emscripten/src/proxyWorker.js +0 -143
- data/modules/emscripten/src/relooper/README.markdown +0 -14
- data/modules/emscripten/src/relooper/Relooper.cpp +0 -1301
- data/modules/emscripten/src/relooper/Relooper.h +0 -257
- data/modules/emscripten/src/relooper/doit.sh +0 -70
- data/modules/emscripten/src/relooper/emscripten/glue.js +0 -67
- data/modules/emscripten/src/relooper/emscripten/test.js +0 -44
- data/modules/emscripten/src/relooper/fuzzer.py +0 -131
- data/modules/emscripten/src/relooper/ministring.h +0 -35
- data/modules/emscripten/src/relooper/paper.pdf +0 -0
- data/modules/emscripten/src/relooper/test.cpp +0 -290
- data/modules/emscripten/src/relooper/test.txt +0 -317
- data/modules/emscripten/src/relooper/test2.c +0 -44
- data/modules/emscripten/src/relooper/test2.txt +0 -26
- data/modules/emscripten/src/relooper/test3.c +0 -42
- data/modules/emscripten/src/relooper/test3.txt +0 -56
- data/modules/emscripten/src/relooper/test4.cpp +0 -40
- data/modules/emscripten/src/relooper/test4.txt +0 -44
- data/modules/emscripten/src/relooper/test5.cpp +0 -40
- data/modules/emscripten/src/relooper/test5.txt +0 -56
- data/modules/emscripten/src/relooper/test6.cpp +0 -31
- data/modules/emscripten/src/relooper/test6.txt +0 -26
- data/modules/emscripten/src/relooper/test_dead.cpp +0 -28
- data/modules/emscripten/src/relooper/test_dead.txt +0 -9
- data/modules/emscripten/src/relooper/test_debug.cpp +0 -30
- data/modules/emscripten/src/relooper/test_debug.txt +0 -142
- data/modules/emscripten/src/relooper/test_fuzz1.cpp +0 -52
- data/modules/emscripten/src/relooper/test_fuzz1.txt +0 -72
- data/modules/emscripten/src/relooper/test_fuzz2.cpp +0 -34
- data/modules/emscripten/src/relooper/test_fuzz2.txt +0 -30
- data/modules/emscripten/src/relooper/test_fuzz3.cpp +0 -36
- data/modules/emscripten/src/relooper/test_fuzz3.txt +0 -25
- data/modules/emscripten/src/relooper/test_fuzz4.cpp +0 -38
- data/modules/emscripten/src/relooper/test_fuzz4.txt +0 -41
- data/modules/emscripten/src/relooper/test_fuzz5.cpp +0 -57
- data/modules/emscripten/src/relooper/test_fuzz5.txt +0 -86
- data/modules/emscripten/src/relooper/test_fuzz6.cpp +0 -322
- data/modules/emscripten/src/relooper/test_fuzz6.txt +0 -291
- data/modules/emscripten/src/relooper/test_inf.cpp +0 -813
- data/modules/emscripten/src/relooper/test_inf.txt +0 -1131
- data/modules/emscripten/src/relooper/testit.sh +0 -62
- data/modules/emscripten/src/relooper/updateit.sh +0 -17
- data/modules/emscripten/src/runtime.js +0 -604
- data/modules/emscripten/src/settings.js +0 -476
- data/modules/emscripten/src/shell.html +0 -95
- data/modules/emscripten/src/shell.js +0 -173
- data/modules/emscripten/src/shell_sharedlib.js +0 -29
- data/modules/emscripten/src/simd.js +0 -1128
- data/modules/emscripten/src/socket.io.js +0 -3870
- data/modules/emscripten/src/struct_info.json +0 -1077
- data/modules/emscripten/src/utility.js +0 -411
- data/modules/emscripten/src/wrtcp.js +0 -821
- data/modules/emscripten/system/bin/sdl-config +0 -13
- data/modules/emscripten/system/include/AL/al.h +0 -172
- data/modules/emscripten/system/include/AL/alc.h +0 -84
- data/modules/emscripten/system/include/EGL/egl.h +0 -329
- data/modules/emscripten/system/include/EGL/eglext.h +0 -398
- data/modules/emscripten/system/include/EGL/eglplatform.h +0 -141
- data/modules/emscripten/system/include/GL/freeglut_std.h +0 -628
- data/modules/emscripten/system/include/GL/gl.h +0 -2241
- data/modules/emscripten/system/include/GL/glew.h +0 -6
- data/modules/emscripten/system/include/GL/glext.h +0 -11127
- data/modules/emscripten/system/include/GL/glfw.h +0 -518
- data/modules/emscripten/system/include/GL/glu.h +0 -353
- data/modules/emscripten/system/include/GL/glut.h +0 -21
- data/modules/emscripten/system/include/GLES/gl.h +0 -770
- data/modules/emscripten/system/include/GLES/glext.h +0 -1278
- data/modules/emscripten/system/include/GLES/glplatform.h +0 -30
- data/modules/emscripten/system/include/GLES2/gl2.h +0 -621
- data/modules/emscripten/system/include/GLES2/gl2ext.h +0 -803
- data/modules/emscripten/system/include/GLES2/gl2platform.h +0 -30
- data/modules/emscripten/system/include/KHR/khrplatform.h +0 -277
- data/modules/emscripten/system/include/SDL/COPYING +0 -19
- data/modules/emscripten/system/include/SDL/SDL.h +0 -162
- data/modules/emscripten/system/include/SDL/SDL_assert.h +0 -241
- data/modules/emscripten/system/include/SDL/SDL_atomic.h +0 -318
- data/modules/emscripten/system/include/SDL/SDL_audio.h +0 -509
- data/modules/emscripten/system/include/SDL/SDL_blendmode.h +0 -60
- data/modules/emscripten/system/include/SDL/SDL_clipboard.h +0 -75
- data/modules/emscripten/system/include/SDL/SDL_compat.h +0 -365
- data/modules/emscripten/system/include/SDL/SDL_config.h +0 -48
- data/modules/emscripten/system/include/SDL/SDL_config.h.in +0 -297
- data/modules/emscripten/system/include/SDL/SDL_config_android.h +0 -133
- data/modules/emscripten/system/include/SDL/SDL_config_iphoneos.h +0 -148
- data/modules/emscripten/system/include/SDL/SDL_config_macosx.h +0 -172
- data/modules/emscripten/system/include/SDL/SDL_config_minimal.h +0 -74
- data/modules/emscripten/system/include/SDL/SDL_config_nintendods.h +0 -129
- data/modules/emscripten/system/include/SDL/SDL_config_pandora.h +0 -125
- data/modules/emscripten/system/include/SDL/SDL_config_windows.h +0 -207
- data/modules/emscripten/system/include/SDL/SDL_config_wiz.h +0 -119
- data/modules/emscripten/system/include/SDL/SDL_copying.h +0 -20
- data/modules/emscripten/system/include/SDL/SDL_cpuinfo.h +0 -150
- data/modules/emscripten/system/include/SDL/SDL_endian.h +0 -248
- data/modules/emscripten/system/include/SDL/SDL_error.h +0 -77
- data/modules/emscripten/system/include/SDL/SDL_events.h +0 -640
- data/modules/emscripten/system/include/SDL/SDL_gesture.h +0 -91
- data/modules/emscripten/system/include/SDL/SDL_gfxPrimitives.h +0 -246
- data/modules/emscripten/system/include/SDL/SDL_haptic.h +0 -1200
- data/modules/emscripten/system/include/SDL/SDL_hints.h +0 -206
- data/modules/emscripten/system/include/SDL/SDL_image.h +0 -138
- data/modules/emscripten/system/include/SDL/SDL_input.h +0 -87
- data/modules/emscripten/system/include/SDL/SDL_joystick.h +0 -208
- data/modules/emscripten/system/include/SDL/SDL_keyboard.h +0 -169
- data/modules/emscripten/system/include/SDL/SDL_keycode.h +0 -344
- data/modules/emscripten/system/include/SDL/SDL_loadso.h +0 -85
- data/modules/emscripten/system/include/SDL/SDL_log.h +0 -211
- data/modules/emscripten/system/include/SDL/SDL_main.h +0 -98
- data/modules/emscripten/system/include/SDL/SDL_mixer.h +0 -634
- data/modules/emscripten/system/include/SDL/SDL_mouse.h +0 -213
- data/modules/emscripten/system/include/SDL/SDL_mutex.h +0 -248
- data/modules/emscripten/system/include/SDL/SDL_name.h +0 -11
- data/modules/emscripten/system/include/SDL/SDL_opengl.h +0 -11116
- data/modules/emscripten/system/include/SDL/SDL_opengles.h +0 -38
- data/modules/emscripten/system/include/SDL/SDL_opengles2.h +0 -38
- data/modules/emscripten/system/include/SDL/SDL_pixels.h +0 -423
- data/modules/emscripten/system/include/SDL/SDL_platform.h +0 -160
- data/modules/emscripten/system/include/SDL/SDL_power.h +0 -79
- data/modules/emscripten/system/include/SDL/SDL_quit.h +0 -58
- data/modules/emscripten/system/include/SDL/SDL_rect.h +0 -136
- data/modules/emscripten/system/include/SDL/SDL_render.h +0 -615
- data/modules/emscripten/system/include/SDL/SDL_revision.h +0 -2
- data/modules/emscripten/system/include/SDL/SDL_revision.h.orig +0 -2
- data/modules/emscripten/system/include/SDL/SDL_rotozoom.h +0 -123
- data/modules/emscripten/system/include/SDL/SDL_rwops.h +0 -220
- data/modules/emscripten/system/include/SDL/SDL_scancode.h +0 -398
- data/modules/emscripten/system/include/SDL/SDL_shape.h +0 -147
- data/modules/emscripten/system/include/SDL/SDL_stdinc.h +0 -764
- data/modules/emscripten/system/include/SDL/SDL_surface.h +0 -499
- data/modules/emscripten/system/include/SDL/SDL_syswm.h +0 -241
- data/modules/emscripten/system/include/SDL/SDL_thread.h +0 -182
- data/modules/emscripten/system/include/SDL/SDL_timer.h +0 -108
- data/modules/emscripten/system/include/SDL/SDL_touch.h +0 -124
- data/modules/emscripten/system/include/SDL/SDL_ttf.h +0 -249
- data/modules/emscripten/system/include/SDL/SDL_types.h +0 -29
- data/modules/emscripten/system/include/SDL/SDL_version.h +0 -166
- data/modules/emscripten/system/include/SDL/SDL_video.h +0 -820
- data/modules/emscripten/system/include/SDL/begin_code.h +0 -135
- data/modules/emscripten/system/include/SDL/close_code.h +0 -37
- data/modules/emscripten/system/include/X11/X.h +0 -717
- data/modules/emscripten/system/include/X11/Xatom.h +0 -79
- data/modules/emscripten/system/include/X11/Xfuncproto.h +0 -127
- data/modules/emscripten/system/include/X11/Xlib.h +0 -4023
- data/modules/emscripten/system/include/X11/Xosdefs.h +0 -116
- data/modules/emscripten/system/include/X11/Xutil.h +0 -826
- data/modules/emscripten/system/include/X11/keysym.h +0 -73
- data/modules/emscripten/system/include/X11/keysymdef.h +0 -2389
- data/modules/emscripten/system/include/compat/ctype.h +0 -34
- data/modules/emscripten/system/include/compat/malloc.h +0 -48
- data/modules/emscripten/system/include/compat/math.h +0 -14
- data/modules/emscripten/system/include/compat/netdb.h +0 -22
- data/modules/emscripten/system/include/compat/stdarg.h +0 -16
- data/modules/emscripten/system/include/compat/stdlib.h +0 -16
- data/modules/emscripten/system/include/compat/string.h +0 -17
- data/modules/emscripten/system/include/compat/sys/socketvar.h +0 -14
- data/modules/emscripten/system/include/compat/sys/stat.h +0 -20
- data/modules/emscripten/system/include/compat/sys/timeb.h +0 -35
- data/modules/emscripten/system/include/compat/time.h +0 -18
- data/modules/emscripten/system/include/compat/unistd.h +0 -16
- data/modules/emscripten/system/include/compat/wchar.h +0 -23
- data/modules/emscripten/system/include/compat/wctype.h +0 -23
- data/modules/emscripten/system/include/compat/xlocale.h +0 -19
- data/modules/emscripten/system/include/emscripten/bind.h +0 -1210
- data/modules/emscripten/system/include/emscripten/emmintrin.h +0 -87
- data/modules/emscripten/system/include/emscripten/emscripten.h +0 -519
- data/modules/emscripten/system/include/emscripten/val.h +0 -311
- data/modules/emscripten/system/include/emscripten/vector.h +0 -34
- data/modules/emscripten/system/include/emscripten/wire.h +0 -393
- data/modules/emscripten/system/include/emscripten/xmmintrin.h +0 -131
- data/modules/emscripten/system/include/execinfo.h +0 -44
- data/modules/emscripten/system/include/gc.h +0 -70
- data/modules/emscripten/system/include/gfx/png.h +0 -3798
- data/modules/emscripten/system/include/gfx/pngconf.h +0 -1665
- data/modules/emscripten/system/include/gfx/tiff.h +0 -654
- data/modules/emscripten/system/include/gfx/tiffconf.h +0 -104
- data/modules/emscripten/system/include/gfx/tiffio.h +0 -526
- data/modules/emscripten/system/include/gfx/tiffvers.h +0 -9
- data/modules/emscripten/system/include/jansson.h +0 -323
- data/modules/emscripten/system/include/jansson_config.h +0 -54
- data/modules/emscripten/system/include/libc/aio.h +0 -69
- data/modules/emscripten/system/include/libc/alloca.h +0 -21
- data/modules/emscripten/system/include/libc/ar.h +0 -25
- data/modules/emscripten/system/include/libc/arpa/ftp.h +0 -35
- data/modules/emscripten/system/include/libc/arpa/inet.h +0 -36
- data/modules/emscripten/system/include/libc/arpa/nameser.h +0 -467
- data/modules/emscripten/system/include/libc/arpa/nameser_compat.h +0 -2
- data/modules/emscripten/system/include/libc/arpa/telnet.h +0 -251
- data/modules/emscripten/system/include/libc/arpa/tftp.h +0 -31
- data/modules/emscripten/system/include/libc/assert.h +0 -19
- data/modules/emscripten/system/include/libc/bits/alltypes.h +0 -397
- data/modules/emscripten/system/include/libc/bits/endian.h +0 -1
- data/modules/emscripten/system/include/libc/bits/errno.h +0 -134
- data/modules/emscripten/system/include/libc/bits/fcntl.h +0 -38
- data/modules/emscripten/system/include/libc/bits/fenv.h +0 -34
- data/modules/emscripten/system/include/libc/bits/float.h +0 -17
- data/modules/emscripten/system/include/libc/bits/io.h +0 -0
- data/modules/emscripten/system/include/libc/bits/ioctl.h +0 -197
- data/modules/emscripten/system/include/libc/bits/ipc.h +0 -14
- data/modules/emscripten/system/include/libc/bits/limits.h +0 -8
- data/modules/emscripten/system/include/libc/bits/mman.h +0 -62
- data/modules/emscripten/system/include/libc/bits/msg.h +0 -16
- data/modules/emscripten/system/include/libc/bits/posix.h +0 -2
- data/modules/emscripten/system/include/libc/bits/reg.h +0 -19
- data/modules/emscripten/system/include/libc/bits/setjmp.h +0 -1
- data/modules/emscripten/system/include/libc/bits/shm.h +0 -18
- data/modules/emscripten/system/include/libc/bits/signal.h +0 -112
- data/modules/emscripten/system/include/libc/bits/socket.h +0 -17
- data/modules/emscripten/system/include/libc/bits/stat.h +0 -22
- data/modules/emscripten/system/include/libc/bits/statfs.h +0 -7
- data/modules/emscripten/system/include/libc/bits/stdarg.h +0 -4
- data/modules/emscripten/system/include/libc/bits/stdint.h +0 -20
- data/modules/emscripten/system/include/libc/bits/syscall.h +0 -696
- data/modules/emscripten/system/include/libc/bits/termios.h +0 -160
- data/modules/emscripten/system/include/libc/bits/user.h +0 -48
- data/modules/emscripten/system/include/libc/byteswap.h +0 -26
- data/modules/emscripten/system/include/libc/complex.h +0 -125
- data/modules/emscripten/system/include/libc/cpio.h +0 -29
- data/modules/emscripten/system/include/libc/crypt.h +0 -20
- data/modules/emscripten/system/include/libc/ctype.h +0 -67
- data/modules/emscripten/system/include/libc/dirent.h +0 -79
- data/modules/emscripten/system/include/libc/dlfcn.h +0 -42
- data/modules/emscripten/system/include/libc/elf.h +0 -2555
- data/modules/emscripten/system/include/libc/endian.h +0 -82
- data/modules/emscripten/system/include/libc/err.h +0 -25
- data/modules/emscripten/system/include/libc/errno.h +0 -27
- data/modules/emscripten/system/include/libc/fcntl.h +0 -175
- data/modules/emscripten/system/include/libc/features.h +0 -32
- data/modules/emscripten/system/include/libc/fenv.h +0 -28
- data/modules/emscripten/system/include/libc/float.h +0 -34
- data/modules/emscripten/system/include/libc/fnmatch.h +0 -29
- data/modules/emscripten/system/include/libc/ftw.h +0 -42
- data/modules/emscripten/system/include/libc/getopt.h +0 -31
- data/modules/emscripten/system/include/libc/glob.h +0 -48
- data/modules/emscripten/system/include/libc/grp.h +0 -52
- data/modules/emscripten/system/include/libc/iconv.h +0 -24
- data/modules/emscripten/system/include/libc/ifaddrs.h +0 -35
- data/modules/emscripten/system/include/libc/inttypes.h +0 -227
- data/modules/emscripten/system/include/libc/iso646.h +0 -20
- data/modules/emscripten/system/include/libc/langinfo.h +0 -88
- data/modules/emscripten/system/include/libc/lastlog.h +0 -1
- data/modules/emscripten/system/include/libc/libgen.h +0 -15
- data/modules/emscripten/system/include/libc/libintl.h +0 -25
- data/modules/emscripten/system/include/libc/limits.h +0 -146
- data/modules/emscripten/system/include/libc/link.h +0 -54
- data/modules/emscripten/system/include/libc/locale.h +0 -82
- data/modules/emscripten/system/include/libc/malloc.h +0 -0
- data/modules/emscripten/system/include/libc/math.h +0 -422
- data/modules/emscripten/system/include/libc/memory.h +0 -1
- data/modules/emscripten/system/include/libc/mntent.h +0 -44
- data/modules/emscripten/system/include/libc/monetary.h +0 -23
- data/modules/emscripten/system/include/libc/mqueue.h +0 -36
- data/modules/emscripten/system/include/libc/net/ethernet.h +0 -55
- data/modules/emscripten/system/include/libc/net/if.h +0 -135
- data/modules/emscripten/system/include/libc/net/if_arp.h +0 -133
- data/modules/emscripten/system/include/libc/net/route.h +0 -124
- data/modules/emscripten/system/include/libc/netdb.h +0 -161
- data/modules/emscripten/system/include/libc/netinet/ether.h +0 -14
- data/modules/emscripten/system/include/libc/netinet/icmp6.h +0 -305
- data/modules/emscripten/system/include/libc/netinet/if_ether.h +0 -126
- data/modules/emscripten/system/include/libc/netinet/in.h +0 -336
- data/modules/emscripten/system/include/libc/netinet/in_systm.h +0 -9
- data/modules/emscripten/system/include/libc/netinet/ip.h +0 -186
- data/modules/emscripten/system/include/libc/netinet/ip6.h +0 -142
- data/modules/emscripten/system/include/libc/netinet/ip_icmp.h +0 -192
- data/modules/emscripten/system/include/libc/netinet/tcp.h +0 -71
- data/modules/emscripten/system/include/libc/netinet/udp.h +0 -35
- data/modules/emscripten/system/include/libc/netpacket/packet.h +0 -44
- data/modules/emscripten/system/include/libc/nl_types.h +0 -22
- data/modules/emscripten/system/include/libc/paths.h +0 -32
- data/modules/emscripten/system/include/libc/poll.h +0 -46
- data/modules/emscripten/system/include/libc/pthread.h +0 -222
- data/modules/emscripten/system/include/libc/pty.h +0 -18
- data/modules/emscripten/system/include/libc/pwd.h +0 -49
- data/modules/emscripten/system/include/libc/readme.txt +0 -3
- data/modules/emscripten/system/include/libc/regex.h +0 -62
- data/modules/emscripten/system/include/libc/resolv.h +0 -144
- data/modules/emscripten/system/include/libc/sched.h +0 -132
- data/modules/emscripten/system/include/libc/search.h +0 -51
- data/modules/emscripten/system/include/libc/semaphore.h +0 -35
- data/modules/emscripten/system/include/libc/setjmp.h +0 -42
- data/modules/emscripten/system/include/libc/shadow.h +0 -44
- data/modules/emscripten/system/include/libc/signal.h +0 -255
- data/modules/emscripten/system/include/libc/spawn.h +0 -74
- data/modules/emscripten/system/include/libc/stdalign.h +0 -15
- data/modules/emscripten/system/include/libc/stdarg.h +0 -25
- data/modules/emscripten/system/include/libc/stdbool.h +0 -14
- data/modules/emscripten/system/include/libc/stddef.h +0 -18
- data/modules/emscripten/system/include/libc/stdint.h +0 -117
- data/modules/emscripten/system/include/libc/stdio.h +0 -199
- data/modules/emscripten/system/include/libc/stdio_ext.h +0 -34
- data/modules/emscripten/system/include/libc/stdlib.h +0 -171
- data/modules/emscripten/system/include/libc/stdnoreturn.h +0 -5
- data/modules/emscripten/system/include/libc/string.h +0 -102
- data/modules/emscripten/system/include/libc/strings.h +0 -35
- data/modules/emscripten/system/include/libc/stropts.h +0 -139
- data/modules/emscripten/system/include/libc/sys/acct.h +0 -75
- data/modules/emscripten/system/include/libc/sys/cachectl.h +0 -22
- data/modules/emscripten/system/include/libc/sys/dir.h +0 -2
- data/modules/emscripten/system/include/libc/sys/epoll.h +0 -67
- data/modules/emscripten/system/include/libc/sys/errno.h +0 -2
- data/modules/emscripten/system/include/libc/sys/eventfd.h +0 -26
- data/modules/emscripten/system/include/libc/sys/fcntl.h +0 -2
- data/modules/emscripten/system/include/libc/sys/file.h +0 -21
- data/modules/emscripten/system/include/libc/sys/fsuid.h +0 -20
- data/modules/emscripten/system/include/libc/sys/inotify.h +0 -57
- data/modules/emscripten/system/include/libc/sys/io.h +0 -17
- data/modules/emscripten/system/include/libc/sys/ioctl.h +0 -14
- data/modules/emscripten/system/include/libc/sys/ipc.h +0 -42
- data/modules/emscripten/system/include/libc/sys/klog.h +0 -14
- data/modules/emscripten/system/include/libc/sys/mman.h +0 -55
- data/modules/emscripten/system/include/libc/sys/mount.h +0 -72
- data/modules/emscripten/system/include/libc/sys/msg.h +0 -52
- data/modules/emscripten/system/include/libc/sys/mtio.h +0 -188
- data/modules/emscripten/system/include/libc/sys/param.h +0 -35
- data/modules/emscripten/system/include/libc/sys/personality.h +0 -46
- data/modules/emscripten/system/include/libc/sys/poll.h +0 -2
- data/modules/emscripten/system/include/libc/sys/prctl.h +0 -101
- data/modules/emscripten/system/include/libc/sys/procfs.h +0 -65
- data/modules/emscripten/system/include/libc/sys/ptrace.h +0 -96
- data/modules/emscripten/system/include/libc/sys/reboot.h +0 -20
- data/modules/emscripten/system/include/libc/sys/reg.h +0 -9
- data/modules/emscripten/system/include/libc/sys/resource.h +0 -103
- data/modules/emscripten/system/include/libc/sys/select.h +0 -42
- data/modules/emscripten/system/include/libc/sys/sem.h +0 -82
- data/modules/emscripten/system/include/libc/sys/sendfile.h +0 -22
- data/modules/emscripten/system/include/libc/sys/shm.h +0 -61
- data/modules/emscripten/system/include/libc/sys/signal.h +0 -2
- data/modules/emscripten/system/include/libc/sys/signalfd.h +0 -44
- data/modules/emscripten/system/include/libc/sys/socket.h +0 -299
- data/modules/emscripten/system/include/libc/sys/stat.h +0 -114
- data/modules/emscripten/system/include/libc/sys/statfs.h +0 -32
- data/modules/emscripten/system/include/libc/sys/statvfs.h +0 -57
- data/modules/emscripten/system/include/libc/sys/stropts.h +0 -1
- data/modules/emscripten/system/include/libc/sys/swap.h +0 -21
- data/modules/emscripten/system/include/libc/sys/syscall.h +0 -6
- data/modules/emscripten/system/include/libc/sys/sysctl.h +0 -17
- data/modules/emscripten/system/include/libc/sys/sysinfo.h +0 -36
- data/modules/emscripten/system/include/libc/sys/syslog.h +0 -1
- data/modules/emscripten/system/include/libc/sys/sysmacros.h +0 -15
- data/modules/emscripten/system/include/libc/sys/termios.h +0 -2
- data/modules/emscripten/system/include/libc/sys/time.h +0 -57
- data/modules/emscripten/system/include/libc/sys/timerfd.h +0 -24
- data/modules/emscripten/system/include/libc/sys/times.h +0 -26
- data/modules/emscripten/system/include/libc/sys/timex.h +0 -98
- data/modules/emscripten/system/include/libc/sys/ttydefaults.h +0 -39
- data/modules/emscripten/system/include/libc/sys/types.h +0 -91
- data/modules/emscripten/system/include/libc/sys/ucontext.h +0 -1
- data/modules/emscripten/system/include/libc/sys/uio.h +0 -48
- data/modules/emscripten/system/include/libc/sys/un.h +0 -32
- data/modules/emscripten/system/include/libc/sys/user.h +0 -16
- data/modules/emscripten/system/include/libc/sys/utsname.h +0 -30
- data/modules/emscripten/system/include/libc/sys/vfs.h +0 -1
- data/modules/emscripten/system/include/libc/sys/wait.h +0 -55
- data/modules/emscripten/system/include/libc/sys/xattr.h +0 -30
- data/modules/emscripten/system/include/libc/syscall.h +0 -1
- data/modules/emscripten/system/include/libc/sysexits.h +0 -21
- data/modules/emscripten/system/include/libc/syslog.h +0 -104
- data/modules/emscripten/system/include/libc/tar.h +0 -33
- data/modules/emscripten/system/include/libc/termios.h +0 -46
- data/modules/emscripten/system/include/libc/tgmath.h +0 -270
- data/modules/emscripten/system/include/libc/time.h +0 -132
- data/modules/emscripten/system/include/libc/ucontext.h +0 -25
- data/modules/emscripten/system/include/libc/ulimit.h +0 -17
- data/modules/emscripten/system/include/libc/unistd.h +0 -519
- data/modules/emscripten/system/include/libc/utime.h +0 -24
- data/modules/emscripten/system/include/libc/utmp.h +0 -47
- data/modules/emscripten/system/include/libc/utmpx.h +0 -58
- data/modules/emscripten/system/include/libc/values.h +0 -39
- data/modules/emscripten/system/include/libc/wchar.h +0 -183
- data/modules/emscripten/system/include/libc/wctype.h +0 -77
- data/modules/emscripten/system/include/libc/wordexp.h +0 -42
- data/modules/emscripten/system/include/libcxx/CREDITS.TXT +0 -123
- data/modules/emscripten/system/include/libcxx/LICENSE.txt +0 -76
- data/modules/emscripten/system/include/libcxx/__bit_reference +0 -1287
- data/modules/emscripten/system/include/libcxx/__config +0 -610
- data/modules/emscripten/system/include/libcxx/__debug +0 -218
- data/modules/emscripten/system/include/libcxx/__functional_03 +0 -2130
- data/modules/emscripten/system/include/libcxx/__functional_base +0 -615
- data/modules/emscripten/system/include/libcxx/__functional_base_03 +0 -1087
- data/modules/emscripten/system/include/libcxx/__hash_table +0 -2457
- data/modules/emscripten/system/include/libcxx/__locale +0 -1445
- data/modules/emscripten/system/include/libcxx/__mutex_base +0 -407
- data/modules/emscripten/system/include/libcxx/__split_buffer +0 -654
- data/modules/emscripten/system/include/libcxx/__sso_allocator +0 -77
- data/modules/emscripten/system/include/libcxx/__std_stream +0 -359
- data/modules/emscripten/system/include/libcxx/__tree +0 -2309
- data/modules/emscripten/system/include/libcxx/__tuple +0 -305
- data/modules/emscripten/system/include/libcxx/__tuple_03 +0 -27
- data/modules/emscripten/system/include/libcxx/__undef_min_max +0 -27
- data/modules/emscripten/system/include/libcxx/algorithm +0 -5679
- data/modules/emscripten/system/include/libcxx/array +0 -342
- data/modules/emscripten/system/include/libcxx/atomic +0 -1531
- data/modules/emscripten/system/include/libcxx/bitset +0 -1081
- data/modules/emscripten/system/include/libcxx/cassert +0 -25
- data/modules/emscripten/system/include/libcxx/ccomplex +0 -29
- data/modules/emscripten/system/include/libcxx/cctype +0 -164
- data/modules/emscripten/system/include/libcxx/cerrno +0 -393
- data/modules/emscripten/system/include/libcxx/cfenv +0 -82
- data/modules/emscripten/system/include/libcxx/cfloat +0 -78
- data/modules/emscripten/system/include/libcxx/chrono +0 -1027
- data/modules/emscripten/system/include/libcxx/cinttypes +0 -259
- data/modules/emscripten/system/include/libcxx/ciso646 +0 -25
- data/modules/emscripten/system/include/libcxx/climits +0 -48
- data/modules/emscripten/system/include/libcxx/clocale +0 -53
- data/modules/emscripten/system/include/libcxx/cmath +0 -1690
- data/modules/emscripten/system/include/libcxx/codecvt +0 -550
- data/modules/emscripten/system/include/libcxx/complex +0 -1567
- data/modules/emscripten/system/include/libcxx/complex.h +0 -35
- data/modules/emscripten/system/include/libcxx/condition_variable +0 -256
- data/modules/emscripten/system/include/libcxx/csetjmp +0 -52
- data/modules/emscripten/system/include/libcxx/csignal +0 -58
- data/modules/emscripten/system/include/libcxx/cstdarg +0 -48
- data/modules/emscripten/system/include/libcxx/cstdbool +0 -32
- data/modules/emscripten/system/include/libcxx/cstddef +0 -103
- data/modules/emscripten/system/include/libcxx/cstdint +0 -191
- data/modules/emscripten/system/include/libcxx/cstdio +0 -182
- data/modules/emscripten/system/include/libcxx/cstdlib +0 -172
- data/modules/emscripten/system/include/libcxx/cstring +0 -112
- data/modules/emscripten/system/include/libcxx/ctgmath +0 -29
- data/modules/emscripten/system/include/libcxx/ctime +0 -72
- data/modules/emscripten/system/include/libcxx/cwchar +0 -217
- data/modules/emscripten/system/include/libcxx/cwctype +0 -213
- data/modules/emscripten/system/include/libcxx/deque +0 -2873
- data/modules/emscripten/system/include/libcxx/dynarray +0 -311
- data/modules/emscripten/system/include/libcxx/exception +0 -250
- data/modules/emscripten/system/include/libcxx/ext/__hash +0 -46
- data/modules/emscripten/system/include/libcxx/ext/hash_map +0 -1007
- data/modules/emscripten/system/include/libcxx/ext/hash_set +0 -661
- data/modules/emscripten/system/include/libcxx/forward_list +0 -1663
- data/modules/emscripten/system/include/libcxx/fstream +0 -1431
- data/modules/emscripten/system/include/libcxx/functional +0 -2418
- data/modules/emscripten/system/include/libcxx/future +0 -2615
- data/modules/emscripten/system/include/libcxx/initializer_list +0 -118
- data/modules/emscripten/system/include/libcxx/iomanip +0 -651
- data/modules/emscripten/system/include/libcxx/ios +0 -1023
- data/modules/emscripten/system/include/libcxx/iosfwd +0 -194
- data/modules/emscripten/system/include/libcxx/iostream +0 -60
- data/modules/emscripten/system/include/libcxx/istream +0 -1716
- data/modules/emscripten/system/include/libcxx/iterator +0 -1568
- data/modules/emscripten/system/include/libcxx/limits +0 -813
- data/modules/emscripten/system/include/libcxx/list +0 -2355
- data/modules/emscripten/system/include/libcxx/locale +0 -4465
- data/modules/emscripten/system/include/libcxx/map +0 -2045
- data/modules/emscripten/system/include/libcxx/memory +0 -5448
- data/modules/emscripten/system/include/libcxx/mutex +0 -566
- data/modules/emscripten/system/include/libcxx/new +0 -146
- data/modules/emscripten/system/include/libcxx/numeric +0 -197
- data/modules/emscripten/system/include/libcxx/optional +0 -697
- data/modules/emscripten/system/include/libcxx/ostream +0 -1295
- data/modules/emscripten/system/include/libcxx/queue +0 -717
- data/modules/emscripten/system/include/libcxx/random +0 -6725
- data/modules/emscripten/system/include/libcxx/ratio +0 -487
- data/modules/emscripten/system/include/libcxx/readme.txt +0 -1
- data/modules/emscripten/system/include/libcxx/regex +0 -6487
- data/modules/emscripten/system/include/libcxx/scoped_allocator +0 -578
- data/modules/emscripten/system/include/libcxx/set +0 -1189
- data/modules/emscripten/system/include/libcxx/shared_mutex +0 -419
- data/modules/emscripten/system/include/libcxx/sstream +0 -972
- data/modules/emscripten/system/include/libcxx/stack +0 -292
- data/modules/emscripten/system/include/libcxx/stdexcept +0 -162
- data/modules/emscripten/system/include/libcxx/streambuf +0 -564
- data/modules/emscripten/system/include/libcxx/string +0 -4198
- data/modules/emscripten/system/include/libcxx/strstream +0 -400
- data/modules/emscripten/system/include/libcxx/support/ibm/limits.h +0 -99
- data/modules/emscripten/system/include/libcxx/support/ibm/support.h +0 -54
- data/modules/emscripten/system/include/libcxx/support/ibm/xlocale.h +0 -326
- data/modules/emscripten/system/include/libcxx/support/solaris/floatingpoint.h +0 -5
- data/modules/emscripten/system/include/libcxx/support/solaris/wchar.h +0 -38
- data/modules/emscripten/system/include/libcxx/support/solaris/xlocale.h +0 -146
- data/modules/emscripten/system/include/libcxx/support/win32/limits_win32.h +0 -79
- data/modules/emscripten/system/include/libcxx/support/win32/locale_win32.h +0 -129
- data/modules/emscripten/system/include/libcxx/support/win32/math_win32.h +0 -115
- data/modules/emscripten/system/include/libcxx/support/win32/support.h +0 -119
- data/modules/emscripten/system/include/libcxx/system_error +0 -642
- data/modules/emscripten/system/include/libcxx/tgmath.h +0 -29
- data/modules/emscripten/system/include/libcxx/thread +0 -458
- data/modules/emscripten/system/include/libcxx/tuple +0 -1102
- data/modules/emscripten/system/include/libcxx/type_traits +0 -3292
- data/modules/emscripten/system/include/libcxx/typeindex +0 -103
- data/modules/emscripten/system/include/libcxx/typeinfo +0 -124
- data/modules/emscripten/system/include/libcxx/unordered_map +0 -2078
- data/modules/emscripten/system/include/libcxx/unordered_set +0 -1379
- data/modules/emscripten/system/include/libcxx/utility +0 -768
- data/modules/emscripten/system/include/libcxx/valarray +0 -4779
- data/modules/emscripten/system/include/libcxx/vector +0 -3246
- data/modules/emscripten/system/include/unwind.h +0 -154
- data/modules/emscripten/system/include/uuid/uuid.h +0 -35
- data/modules/emscripten/system/include/zconf.h +0 -428
- data/modules/emscripten/system/include/zlib.h +0 -1613
- data/modules/emscripten/system/lib/compiler-rt/LICENSE.TXT +0 -97
- data/modules/emscripten/system/lib/compiler-rt/divdi3.c +0 -47
- data/modules/emscripten/system/lib/compiler-rt/int_endianness.h +0 -116
- data/modules/emscripten/system/lib/compiler-rt/int_lib.h +0 -46
- data/modules/emscripten/system/lib/compiler-rt/int_math.h +0 -67
- data/modules/emscripten/system/lib/compiler-rt/int_types.h +0 -140
- data/modules/emscripten/system/lib/compiler-rt/int_util.h +0 -29
- data/modules/emscripten/system/lib/compiler-rt/muldi3.c +0 -56
- data/modules/emscripten/system/lib/compiler-rt/readme.txt +0 -20
- data/modules/emscripten/system/lib/compiler-rt/udivdi3.c +0 -36
- data/modules/emscripten/system/lib/compiler-rt/udivmoddi4.c +0 -251
- data/modules/emscripten/system/lib/debugging.cpp +0 -24
- data/modules/emscripten/system/lib/dlmalloc.c +0 -6297
- data/modules/emscripten/system/lib/embind/bind.cpp +0 -63
- data/modules/emscripten/system/lib/libc/gen/err.c +0 -49
- data/modules/emscripten/system/lib/libc/gen/errx.c +0 -49
- data/modules/emscripten/system/lib/libc/gen/verr.c +0 -58
- data/modules/emscripten/system/lib/libc/gen/verrx.c +0 -51
- data/modules/emscripten/system/lib/libc/gen/vwarn.c +0 -55
- data/modules/emscripten/system/lib/libc/gen/vwarnx.c +0 -48
- data/modules/emscripten/system/lib/libc/gen/warn.c +0 -49
- data/modules/emscripten/system/lib/libc/gen/warnx.c +0 -49
- data/modules/emscripten/system/lib/libc/musl/COPYRIGHT +0 -92
- data/modules/emscripten/system/lib/libc/musl/readme.txt +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/ctype/alpha.h +0 -125
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswalnum.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswalpha.c +0 -14
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswblank.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswcntrl.c +0 -10
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswctype.c +0 -63
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswdigit.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswgraph.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswlower.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswprint.c +0 -19
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswpunct.c +0 -12
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswspace.c +0 -19
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswupper.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswxdigit.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/ctype/nonspacing.h +0 -62
- data/modules/emscripten/system/lib/libc/musl/src/ctype/punct.h +0 -109
- data/modules/emscripten/system/lib/libc/musl/src/ctype/towctrans.c +0 -268
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wcswidth.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wctrans.c +0 -16
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wcwidth.c +0 -29
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wide.h +0 -42
- data/modules/emscripten/system/lib/libc/musl/src/internal/libc.c +0 -22
- data/modules/emscripten/system/lib/libc/musl/src/internal/libc.h +0 -71
- data/modules/emscripten/system/lib/libc/musl/src/internal/locale_impl.h +0 -5
- data/modules/emscripten/system/lib/libc/musl/src/internal/stdio_impl.h +0 -92
- data/modules/emscripten/system/lib/libc/musl/src/locale/big5.h +0 -1085
- data/modules/emscripten/system/lib/libc/musl/src/locale/codepages.h +0 -238
- data/modules/emscripten/system/lib/libc/musl/src/locale/gb18030.h +0 -1836
- data/modules/emscripten/system/lib/libc/musl/src/locale/hkscs.h +0 -390
- data/modules/emscripten/system/lib/libc/musl/src/locale/iconv.c +0 -454
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswalnum_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswalpha_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswblank_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswcntrl_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswctype_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswdigit_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswgraph_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswlower_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswprint_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswpunct_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswspace_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswupper_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswxdigit_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/jis0208.h +0 -550
- data/modules/emscripten/system/lib/libc/musl/src/locale/ksc.h +0 -640
- data/modules/emscripten/system/lib/libc/musl/src/locale/legacychars.h +0 -39
- data/modules/emscripten/system/lib/libc/musl/src/locale/strfmon.c +0 -101
- data/modules/emscripten/system/lib/libc/musl/src/locale/strxfrm.c +0 -18
- data/modules/emscripten/system/lib/libc/musl/src/locale/towctrans_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/towlower_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/locale/towupper_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcscoll.c +0 -16
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcscoll_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcsxfrm.c +0 -21
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcsxfrm_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/wctrans_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/wctype_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/btowc.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/internal.c +0 -38
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/internal.h +0 -22
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mblen.c +0 -17
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbrlen.c +0 -18
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbrtowc.c +0 -57
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsinit.c +0 -17
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsnrtowcs.c +0 -65
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsrtowcs.c +0 -100
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbstowcs.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbtowc.c +0 -53
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcrtomb.c +0 -38
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c +0 -52
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcsrtombs.c +0 -58
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcstombs.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wctob.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wctomb.c +0 -18
- data/modules/emscripten/system/lib/libc/musl/src/regex/regcomp.c +0 -3352
- data/modules/emscripten/system/lib/libc/musl/src/regex/regerror.c +0 -35
- data/modules/emscripten/system/lib/libc/musl/src/regex/regexec.c +0 -1011
- data/modules/emscripten/system/lib/libc/musl/src/regex/tre-mem.c +0 -158
- data/modules/emscripten/system/lib/libc/musl/src/regex/tre.h +0 -231
- data/modules/emscripten/system/lib/libc/musl/src/stdio/fwprintf.c +0 -13
- data/modules/emscripten/system/lib/libc/musl/src/stdio/swprintf.c +0 -14
- data/modules/emscripten/system/lib/libc/musl/src/stdio/vfwprintf.c +0 -361
- data/modules/emscripten/system/lib/libc/musl/src/stdio/vswprintf.c +0 -53
- data/modules/emscripten/system/lib/libc/musl/src/stdio/vwprintf.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/stdio/wprintf.c +0 -13
- data/modules/emscripten/system/lib/libc/musl/src/stdlib/ecvt.c +0 -19
- data/modules/emscripten/system/lib/libc/musl/src/stdlib/fcvt.c +0 -25
- data/modules/emscripten/system/lib/libc/musl/src/stdlib/gcvt.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcpcpy.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcpncpy.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscasecmp.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscasecmp_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscat.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcschr.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscmp.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscpy.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscspn.c +0 -10
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsdup.c +0 -11
- data/modules/emscripten/system/lib/libc/musl/src/string/wcslen.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncasecmp.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncasecmp_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncat.c +0 -10
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncmp.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncpy.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsnlen.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsrchr.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsspn.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsstr.c +0 -108
- data/modules/emscripten/system/lib/libc/musl/src/string/wcstok.c +0 -12
- data/modules/emscripten/system/lib/libc/musl/src/string/wcswcs.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemchr.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemcmp.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemcpy.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemmove.c +0 -12
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemset.c +0 -9
- data/modules/emscripten/system/lib/libc/stdlib/getopt_long.c +0 -511
- data/modules/emscripten/system/lib/libc/stdlib/strtod.c +0 -305
- data/modules/emscripten/system/lib/libc.symbols +0 -81
- data/modules/emscripten/system/lib/libcextra.symbols +0 -115
- data/modules/emscripten/system/lib/libcxx/CREDITS.TXT +0 -123
- data/modules/emscripten/system/lib/libcxx/LICENSE.txt +0 -76
- data/modules/emscripten/system/lib/libcxx/algorithm.cpp +0 -84
- data/modules/emscripten/system/lib/libcxx/bind.cpp +0 -30
- data/modules/emscripten/system/lib/libcxx/chrono.cpp +0 -132
- data/modules/emscripten/system/lib/libcxx/condition_variable.cpp +0 -81
- data/modules/emscripten/system/lib/libcxx/debug.cpp +0 -530
- data/modules/emscripten/system/lib/libcxx/exception.cpp +0 -307
- data/modules/emscripten/system/lib/libcxx/future.cpp +0 -291
- data/modules/emscripten/system/lib/libcxx/hash.cpp +0 -570
- data/modules/emscripten/system/lib/libcxx/ios.cpp +0 -460
- data/modules/emscripten/system/lib/libcxx/iostream.cpp +0 -68
- data/modules/emscripten/system/lib/libcxx/locale.cpp +0 -6169
- data/modules/emscripten/system/lib/libcxx/memory.cpp +0 -223
- data/modules/emscripten/system/lib/libcxx/mutex.cpp +0 -253
- data/modules/emscripten/system/lib/libcxx/new.cpp +0 -239
- data/modules/emscripten/system/lib/libcxx/optional.cpp +0 -25
- data/modules/emscripten/system/lib/libcxx/random.cpp +0 -74
- data/modules/emscripten/system/lib/libcxx/readme.txt +0 -1
- data/modules/emscripten/system/lib/libcxx/regex.cpp +0 -325
- data/modules/emscripten/system/lib/libcxx/shared_mutex.cpp +0 -101
- data/modules/emscripten/system/lib/libcxx/stdexcept.cpp +0 -200
- data/modules/emscripten/system/lib/libcxx/string.cpp +0 -530
- data/modules/emscripten/system/lib/libcxx/strstream.cpp +0 -329
- data/modules/emscripten/system/lib/libcxx/support/solaris/README +0 -4
- data/modules/emscripten/system/lib/libcxx/support/solaris/mbsnrtowcs.inc +0 -76
- data/modules/emscripten/system/lib/libcxx/support/solaris/wcsnrtombs.inc +0 -93
- data/modules/emscripten/system/lib/libcxx/support/solaris/xlocale.c +0 -245
- data/modules/emscripten/system/lib/libcxx/support/win32/locale_win32.cpp +0 -95
- data/modules/emscripten/system/lib/libcxx/support/win32/support.cpp +0 -166
- data/modules/emscripten/system/lib/libcxx/symbols +0 -2699
- data/modules/emscripten/system/lib/libcxx/system_error.cpp +0 -205
- data/modules/emscripten/system/lib/libcxx/thread.cpp +0 -225
- data/modules/emscripten/system/lib/libcxx/typeinfo.cpp +0 -73
- data/modules/emscripten/system/lib/libcxx/utility.cpp +0 -17
- data/modules/emscripten/system/lib/libcxx/valarray.cpp +0 -56
- data/modules/emscripten/system/lib/libcxxabi/CREDITS.TXT +0 -38
- data/modules/emscripten/system/lib/libcxxabi/LICENSE.TXT +0 -76
- data/modules/emscripten/system/lib/libcxxabi/include/cxa_demangle.h +0 -167
- data/modules/emscripten/system/lib/libcxxabi/include/cxxabi.h +0 -175
- data/modules/emscripten/system/lib/libcxxabi/lib/buildit +0 -99
- data/modules/emscripten/system/lib/libcxxabi/readme.txt +0 -1
- data/modules/emscripten/system/lib/libcxxabi/src/abort_message.cpp +0 -50
- data/modules/emscripten/system/lib/libcxxabi/src/abort_message.h +0 -33
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_aux_runtime.cpp +0 -34
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_demangle.cpp +0 -11036
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception.cpp +0 -622
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception.hpp +0 -123
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception_storage.cpp +0 -91
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_guard.cpp +0 -231
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_handlers.cpp +0 -125
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_handlers.hpp +0 -54
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_new_delete.cpp +0 -242
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_personality.cpp +0 -1055
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_unexpected.cpp +0 -27
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_vector.cpp +0 -367
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_virtual.cpp +0 -31
- data/modules/emscripten/system/lib/libcxxabi/src/exception.cpp +0 -41
- data/modules/emscripten/system/lib/libcxxabi/src/fallback_malloc.ipp +0 -174
- data/modules/emscripten/system/lib/libcxxabi/src/private_typeinfo.cpp +0 -1146
- data/modules/emscripten/system/lib/libcxxabi/src/private_typeinfo.h +0 -248
- data/modules/emscripten/system/lib/libcxxabi/src/stdexcept.cpp +0 -169
- data/modules/emscripten/system/lib/libcxxabi/src/typeinfo.cpp +0 -53
- data/modules/emscripten/system/lib/libcxxabi/symbols +0 -236
- data/modules/emscripten/system/lib/sdl.cpp +0 -13
- data/modules/emscripten/system/lib/sdl.symbols +0 -1
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/CppHeaderParser.py +0 -2347
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/__init__.py +0 -4
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/doc/CppHeaderParser.html +0 -657
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/examples/SampleClass.h +0 -147
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/examples/readSampleClass.py +0 -74
- data/modules/emscripten/third_party/CppHeaderParser/PKG-INFO +0 -249
- data/modules/emscripten/third_party/CppHeaderParser/README.html +0 -544
- data/modules/emscripten/third_party/CppHeaderParser/README.txt +0 -226
- data/modules/emscripten/third_party/CppHeaderParser/setup.py +0 -43
- data/modules/emscripten/third_party/ansidecl.h +0 -371
- data/modules/emscripten/third_party/closure-compiler/COPYING +0 -202
- data/modules/emscripten/third_party/closure-compiler/README +0 -292
- data/modules/emscripten/third_party/closure-compiler/compiler.jar +0 -0
- data/modules/emscripten/third_party/closure-compiler/readme.txt +0 -3
- data/modules/emscripten/third_party/cp-demangle.h +0 -161
- data/modules/emscripten/third_party/demangle.h +0 -549
- data/modules/emscripten/third_party/demangler.py +0 -49
- data/modules/emscripten/third_party/gcc_demangler.c +0 -4226
- data/modules/emscripten/third_party/gcc_demangler.js +0 -21282
- data/modules/emscripten/third_party/jni/emjvm.cpp +0 -133
- data/modules/emscripten/third_party/jni/emjvm.h +0 -8
- data/modules/emscripten/third_party/jni/emjvm.js +0 -185
- data/modules/emscripten/third_party/jni/jni.h +0 -1154
- data/modules/emscripten/third_party/libiberty.h +0 -634
- data/modules/emscripten/third_party/lzma.js/README.markdown +0 -37
- data/modules/emscripten/third_party/lzma.js/doit.bat +0 -4
- data/modules/emscripten/third_party/lzma.js/doit.sh +0 -44
- data/modules/emscripten/third_party/lzma.js/lzip/AUTHORS +0 -7
- data/modules/emscripten/third_party/lzma.js/lzip/COPYING +0 -676
- data/modules/emscripten/third_party/lzma.js/lzip/ChangeLog +0 -201
- data/modules/emscripten/third_party/lzma.js/lzip/INSTALL +0 -56
- data/modules/emscripten/third_party/lzma.js/lzip/Makefile +0 -160
- data/modules/emscripten/third_party/lzma.js/lzip/Makefile.in +0 -138
- data/modules/emscripten/third_party/lzma.js/lzip/NEWS +0 -22
- data/modules/emscripten/third_party/lzma.js/lzip/README +0 -77
- data/modules/emscripten/third_party/lzma.js/lzip/arg_parser.cc +0 -204
- data/modules/emscripten/third_party/lzma.js/lzip/arg_parser.h +0 -106
- data/modules/emscripten/third_party/lzma.js/lzip/configure +0 -192
- data/modules/emscripten/third_party/lzma.js/lzip/decoder.cc +0 -252
- data/modules/emscripten/third_party/lzma.js/lzip/decoder.h +0 -268
- data/modules/emscripten/third_party/lzma.js/lzip/encoder.cc +0 -643
- data/modules/emscripten/third_party/lzma.js/lzip/encoder.h +0 -582
- data/modules/emscripten/third_party/lzma.js/lzip/fast_encoder.cc +0 -378
- data/modules/emscripten/third_party/lzma.js/lzip/fast_encoder.h +0 -171
- data/modules/emscripten/third_party/lzma.js/lzip/lzip.h +0 -264
- data/modules/emscripten/third_party/lzma.js/lzip/main.cc +0 -545
- data/modules/emscripten/third_party/lzma.js/lzma-decoder.js +0 -27
- data/modules/emscripten/third_party/lzma.js/lzma-full.js +0 -27
- data/modules/emscripten/third_party/lzma.js/native_test.sh +0 -5
- data/modules/emscripten/third_party/lzma.js/post.js +0 -13
- data/modules/emscripten/third_party/lzma.js/pre.js +0 -13
- data/modules/emscripten/third_party/lzma.js/test-decoder.js +0 -39
- data/modules/emscripten/third_party/lzma.js/test-full.html +0 -9
- data/modules/emscripten/third_party/lzma.js/test-full.js +0 -78
- data/modules/emscripten/third_party/ply/ANNOUNCE +0 -40
- data/modules/emscripten/third_party/ply/CHANGES +0 -1093
- data/modules/emscripten/third_party/ply/PKG-INFO +0 -22
- data/modules/emscripten/third_party/ply/README +0 -271
- data/modules/emscripten/third_party/ply/TODO +0 -16
- data/modules/emscripten/third_party/ply/doc/internal.html +0 -874
- data/modules/emscripten/third_party/ply/doc/makedoc.py +0 -194
- data/modules/emscripten/third_party/ply/doc/ply.html +0 -3262
- data/modules/emscripten/third_party/ply/example/BASIC/README +0 -79
- data/modules/emscripten/third_party/ply/example/BASIC/basic.py +0 -71
- data/modules/emscripten/third_party/ply/example/BASIC/basiclex.py +0 -74
- data/modules/emscripten/third_party/ply/example/BASIC/basiclog.py +0 -79
- data/modules/emscripten/third_party/ply/example/BASIC/basinterp.py +0 -441
- data/modules/emscripten/third_party/ply/example/BASIC/basparse.py +0 -424
- data/modules/emscripten/third_party/ply/example/BASIC/dim.bas +0 -14
- data/modules/emscripten/third_party/ply/example/BASIC/func.bas +0 -5
- data/modules/emscripten/third_party/ply/example/BASIC/gcd.bas +0 -22
- data/modules/emscripten/third_party/ply/example/BASIC/gosub.bas +0 -13
- data/modules/emscripten/third_party/ply/example/BASIC/hello.bas +0 -4
- data/modules/emscripten/third_party/ply/example/BASIC/linear.bas +0 -17
- data/modules/emscripten/third_party/ply/example/BASIC/maxsin.bas +0 -12
- data/modules/emscripten/third_party/ply/example/BASIC/powers.bas +0 -13
- data/modules/emscripten/third_party/ply/example/BASIC/rand.bas +0 -4
- data/modules/emscripten/third_party/ply/example/BASIC/sales.bas +0 -20
- data/modules/emscripten/third_party/ply/example/BASIC/sears.bas +0 -18
- data/modules/emscripten/third_party/ply/example/BASIC/sqrt1.bas +0 -5
- data/modules/emscripten/third_party/ply/example/BASIC/sqrt2.bas +0 -4
- data/modules/emscripten/third_party/ply/example/GardenSnake/GardenSnake.py +0 -709
- data/modules/emscripten/third_party/ply/example/GardenSnake/README +0 -5
- data/modules/emscripten/third_party/ply/example/README +0 -10
- data/modules/emscripten/third_party/ply/example/ansic/README +0 -2
- data/modules/emscripten/third_party/ply/example/ansic/clex.py +0 -164
- data/modules/emscripten/third_party/ply/example/ansic/cparse.py +0 -863
- data/modules/emscripten/third_party/ply/example/calc/calc.py +0 -107
- data/modules/emscripten/third_party/ply/example/calcdebug/calc.py +0 -113
- data/modules/emscripten/third_party/ply/example/classcalc/calc.py +0 -157
- data/modules/emscripten/third_party/ply/example/cleanup.sh +0 -2
- data/modules/emscripten/third_party/ply/example/closurecalc/calc.py +0 -130
- data/modules/emscripten/third_party/ply/example/hedit/hedit.py +0 -48
- data/modules/emscripten/third_party/ply/example/newclasscalc/calc.py +0 -160
- data/modules/emscripten/third_party/ply/example/optcalc/README +0 -9
- data/modules/emscripten/third_party/ply/example/optcalc/calc.py +0 -119
- data/modules/emscripten/third_party/ply/example/unicalc/calc.py +0 -117
- data/modules/emscripten/third_party/ply/example/yply/README +0 -41
- data/modules/emscripten/third_party/ply/example/yply/ylex.py +0 -112
- data/modules/emscripten/third_party/ply/example/yply/yparse.py +0 -217
- data/modules/emscripten/third_party/ply/example/yply/yply.py +0 -53
- data/modules/emscripten/third_party/ply/ply/__init__.py +0 -4
- data/modules/emscripten/third_party/ply/ply/cpp.py +0 -898
- data/modules/emscripten/third_party/ply/ply/ctokens.py +0 -133
- data/modules/emscripten/third_party/ply/ply/lex.py +0 -1058
- data/modules/emscripten/third_party/ply/ply/yacc.py +0 -3276
- data/modules/emscripten/third_party/ply/setup.py +0 -31
- data/modules/emscripten/third_party/ply/test/README +0 -7
- data/modules/emscripten/third_party/ply/test/calclex.py +0 -49
- data/modules/emscripten/third_party/ply/test/cleanup.sh +0 -4
- data/modules/emscripten/third_party/ply/test/lex_closure.py +0 -54
- data/modules/emscripten/third_party/ply/test/lex_doc1.py +0 -26
- data/modules/emscripten/third_party/ply/test/lex_dup1.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_dup2.py +0 -33
- data/modules/emscripten/third_party/ply/test/lex_dup3.py +0 -31
- data/modules/emscripten/third_party/ply/test/lex_empty.py +0 -20
- data/modules/emscripten/third_party/ply/test/lex_error1.py +0 -24
- data/modules/emscripten/third_party/ply/test/lex_error2.py +0 -26
- data/modules/emscripten/third_party/ply/test/lex_error3.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_error4.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_hedit.py +0 -47
- data/modules/emscripten/third_party/ply/test/lex_ignore.py +0 -31
- data/modules/emscripten/third_party/ply/test/lex_ignore2.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_literal1.py +0 -25
- data/modules/emscripten/third_party/ply/test/lex_literal2.py +0 -25
- data/modules/emscripten/third_party/ply/test/lex_many_tokens.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_module.py +0 -10
- data/modules/emscripten/third_party/ply/test/lex_module_import.py +0 -42
- data/modules/emscripten/third_party/ply/test/lex_object.py +0 -55
- data/modules/emscripten/third_party/ply/test/lex_opt_alias.py +0 -54
- data/modules/emscripten/third_party/ply/test/lex_optimize.py +0 -50
- data/modules/emscripten/third_party/ply/test/lex_optimize2.py +0 -50
- data/modules/emscripten/third_party/ply/test/lex_optimize3.py +0 -52
- data/modules/emscripten/third_party/ply/test/lex_re1.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_re2.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_re3.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_rule1.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_rule2.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_rule3.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_state1.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state2.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state3.py +0 -42
- data/modules/emscripten/third_party/ply/test/lex_state4.py +0 -41
- data/modules/emscripten/third_party/ply/test/lex_state5.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state_noerror.py +0 -39
- data/modules/emscripten/third_party/ply/test/lex_state_norule.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state_try.py +0 -45
- data/modules/emscripten/third_party/ply/test/lex_token1.py +0 -19
- data/modules/emscripten/third_party/ply/test/lex_token2.py +0 -22
- data/modules/emscripten/third_party/ply/test/lex_token3.py +0 -24
- data/modules/emscripten/third_party/ply/test/lex_token4.py +0 -26
- data/modules/emscripten/third_party/ply/test/lex_token5.py +0 -31
- data/modules/emscripten/third_party/ply/test/lex_token_dup.py +0 -29
- data/modules/emscripten/third_party/ply/test/testlex.py +0 -606
- data/modules/emscripten/third_party/ply/test/testyacc.py +0 -347
- data/modules/emscripten/third_party/ply/test/yacc_badargs.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badid.py +0 -77
- data/modules/emscripten/third_party/ply/test/yacc_badprec.py +0 -64
- data/modules/emscripten/third_party/ply/test/yacc_badprec2.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badprec3.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badrule.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badtok.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_dup.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_error1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_error2.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_error3.py +0 -67
- data/modules/emscripten/third_party/ply/test/yacc_error4.py +0 -72
- data/modules/emscripten/third_party/ply/test/yacc_inf.py +0 -56
- data/modules/emscripten/third_party/ply/test/yacc_literal.py +0 -69
- data/modules/emscripten/third_party/ply/test/yacc_misplaced.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_missing1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_nested.py +0 -33
- data/modules/emscripten/third_party/ply/test/yacc_nodoc.py +0 -67
- data/modules/emscripten/third_party/ply/test/yacc_noerror.py +0 -66
- data/modules/emscripten/third_party/ply/test/yacc_nop.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_notfunc.py +0 -66
- data/modules/emscripten/third_party/ply/test/yacc_notok.py +0 -67
- data/modules/emscripten/third_party/ply/test/yacc_prec1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_rr.py +0 -72
- data/modules/emscripten/third_party/ply/test/yacc_rr_unused.py +0 -30
- data/modules/emscripten/third_party/ply/test/yacc_simple.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_sr.py +0 -63
- data/modules/emscripten/third_party/ply/test/yacc_term1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_unused.py +0 -77
- data/modules/emscripten/third_party/ply/test/yacc_unused_rule.py +0 -72
- data/modules/emscripten/third_party/ply/test/yacc_uprec.py +0 -63
- data/modules/emscripten/third_party/ply/test/yacc_uprec2.py +0 -63
- data/modules/emscripten/third_party/readme.txt +0 -7
- data/modules/emscripten/third_party/stb_image.c +0 -4673
- data/modules/emscripten/third_party/websockify/CHANGES.txt +0 -23
- data/modules/emscripten/third_party/websockify/LICENSE.txt +0 -16
- data/modules/emscripten/third_party/websockify/MANIFEST.in +0 -1
- data/modules/emscripten/third_party/websockify/Makefile +0 -11
- data/modules/emscripten/third_party/websockify/README.md +0 -168
- data/modules/emscripten/third_party/websockify/Windows/Windows Service Readme.txt +0 -39
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs +0 -24
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.Designer.cs +0 -61
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.cs +0 -19
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.resx +0 -129
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Properties/AssemblyInfo.cs +0 -36
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Service1.Designer.cs +0 -37
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Service1.cs +0 -41
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/noVNC Websocket.csproj +0 -75
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/noVNC Websocket.sln +0 -20
- data/modules/emscripten/third_party/websockify/docs/LICENSE.GPL-3 +0 -621
- data/modules/emscripten/third_party/websockify/docs/LICENSE.LGPL-3 +0 -165
- data/modules/emscripten/third_party/websockify/docs/LICENSE.MPL-2.0 +0 -373
- data/modules/emscripten/third_party/websockify/docs/TODO +0 -9
- data/modules/emscripten/third_party/websockify/docs/flash_policy.txt +0 -4
- data/modules/emscripten/third_party/websockify/docs/latency_results.txt +0 -114
- data/modules/emscripten/third_party/websockify/docs/notes +0 -17
- data/modules/emscripten/third_party/websockify/docs/release.txt +0 -9
- data/modules/emscripten/third_party/websockify/docs/websockify.1 +0 -110
- data/modules/emscripten/third_party/websockify/include/VT100.js +0 -919
- data/modules/emscripten/third_party/websockify/include/base64.js +0 -114
- data/modules/emscripten/third_party/websockify/include/keysym.js +0 -99
- data/modules/emscripten/third_party/websockify/include/util.js +0 -359
- data/modules/emscripten/third_party/websockify/include/web-socket-js/README.txt +0 -109
- data/modules/emscripten/third_party/websockify/include/web-socket-js/WebSocketMain.swf +0 -0
- data/modules/emscripten/third_party/websockify/include/web-socket-js/swfobject.js +0 -4
- data/modules/emscripten/third_party/websockify/include/web-socket-js/web_socket.js +0 -391
- data/modules/emscripten/third_party/websockify/include/websock.js +0 -422
- data/modules/emscripten/third_party/websockify/include/webutil.js +0 -216
- data/modules/emscripten/third_party/websockify/include/wsirc.js +0 -235
- data/modules/emscripten/third_party/websockify/include/wstelnet.js +0 -335
- data/modules/emscripten/third_party/websockify/other/Makefile +0 -14
- data/modules/emscripten/third_party/websockify/other/README.md +0 -51
- data/modules/emscripten/third_party/websockify/other/launch.sh +0 -108
- data/modules/emscripten/third_party/websockify/other/project.clj +0 -13
- data/modules/emscripten/third_party/websockify/other/websocket.c +0 -802
- data/modules/emscripten/third_party/websockify/other/websocket.h +0 -84
- data/modules/emscripten/third_party/websockify/other/websocket.rb +0 -456
- data/modules/emscripten/third_party/websockify/other/websockify.c +0 -385
- data/modules/emscripten/third_party/websockify/other/websockify.clj +0 -233
- data/modules/emscripten/third_party/websockify/other/websockify.js +0 -196
- data/modules/emscripten/third_party/websockify/other/websockify.rb +0 -171
- data/modules/emscripten/third_party/websockify/other/wswrap +0 -22
- data/modules/emscripten/third_party/websockify/rebind +0 -18
- data/modules/emscripten/third_party/websockify/rebind.c +0 -94
- data/modules/emscripten/third_party/websockify/run +0 -5
- data/modules/emscripten/third_party/websockify/setup.py +0 -30
- data/modules/emscripten/third_party/websockify/tests/b64_vs_utf8.py +0 -29
- data/modules/emscripten/third_party/websockify/tests/base64.html +0 -91
- data/modules/emscripten/third_party/websockify/tests/base64.js +0 -12
- data/modules/emscripten/third_party/websockify/tests/echo.html +0 -148
- data/modules/emscripten/third_party/websockify/tests/echo.py +0 -75
- data/modules/emscripten/third_party/websockify/tests/echo.rb +0 -62
- data/modules/emscripten/third_party/websockify/tests/latency.html +0 -290
- data/modules/emscripten/third_party/websockify/tests/latency.py +0 -75
- data/modules/emscripten/third_party/websockify/tests/load.html +0 -250
- data/modules/emscripten/third_party/websockify/tests/load.py +0 -167
- data/modules/emscripten/third_party/websockify/tests/plain_echo.html +0 -168
- data/modules/emscripten/third_party/websockify/tests/simple.html +0 -68
- data/modules/emscripten/third_party/websockify/tests/utf8-list.py +0 -22
- data/modules/emscripten/third_party/websockify/websockify/__init__.py +0 -2
- data/modules/emscripten/third_party/websockify/websockify/websocket.py +0 -982
- data/modules/emscripten/third_party/websockify/websockify/websocketproxy.py +0 -393
- data/modules/emscripten/third_party/websockify/websockify.py +0 -5
- data/modules/emscripten/third_party/websockify/wsirc.html +0 -99
- data/modules/emscripten/third_party/websockify/wstelnet.html +0 -74
- data/modules/emscripten/tools/__init__.py +0 -0
- data/modules/emscripten/tools/asm_module.py +0 -275
- data/modules/emscripten/tools/autodebugger.py +0 -291
- data/modules/emscripten/tools/autodebugger_c.py +0 -37
- data/modules/emscripten/tools/autodebugger_indenter.py +0 -18
- data/modules/emscripten/tools/autodebugger_js.py +0 -47
- data/modules/emscripten/tools/autodediffer.py +0 -60
- data/modules/emscripten/tools/bindings_generator.py +0 -832
- data/modules/emscripten/tools/bisect_pair.py +0 -88
- data/modules/emscripten/tools/cache.py +0 -196
- data/modules/emscripten/tools/clean_webconsole.py +0 -34
- data/modules/emscripten/tools/crunch-worker.js +0 -124
- data/modules/emscripten/tools/diff_autodebugger.py +0 -15
- data/modules/emscripten/tools/eliminator/asm-eliminator-test-output.js +0 -307
- data/modules/emscripten/tools/eliminator/asm-eliminator-test.js +0 -382
- data/modules/emscripten/tools/eliminator/eliminator-test-output.js +0 -6136
- data/modules/emscripten/tools/eliminator/eliminator-test.js +0 -8879
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/README.html +0 -888
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/README.org +0 -463
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/bin/uglifyjs +0 -317
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/docstyle.css +0 -75
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/object-ast.js +0 -75
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/parse-js.js +0 -1363
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/process.js +0 -2005
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/squeeze-more.js +0 -51
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/package.json +0 -22
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/beautify.js +0 -28
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/testparser.js +0 -402
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array1.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array2.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array3.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array4.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/assignment.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/const.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/if.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue10.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue11.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue13.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue14.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue16.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue17.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue20.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue21.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue25.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue27.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue28.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue29.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue30.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue34.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue4.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue48.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue50.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue53.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue68.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue69.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue9.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/mangle.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/var.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/with.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array1.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array2.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array3.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array4.js +0 -6
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/assignment.js +0 -20
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/concatstring.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/const.js +0 -5
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/forstatement.js +0 -10
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/if.js +0 -6
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +0 -9
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +0 -16
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue10.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue11.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue13.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue14.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue16.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue17.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue20.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue21.js +0 -6
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue25.js +0 -7
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue27.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue28.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue29.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue30.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue34.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue4.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue48.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue50.js +0 -9
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue53.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue68.js +0 -5
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue69.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue9.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/mangle.js +0 -5
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/var.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/with.js +0 -2
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/scripts.js +0 -55
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/hoist.js +0 -33
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/instrument.js +0 -97
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/instrument2.js +0 -138
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/test.js +0 -16
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/uglify-js.js +0 -17
- data/modules/emscripten/tools/eliminator/safe-eliminator-test-output.js +0 -85
- data/modules/emscripten/tools/eliminator/safe-eliminator-test.js +0 -103
- data/modules/emscripten/tools/emconfiguren.py +0 -19
- data/modules/emscripten/tools/emmaken.py +0 -230
- data/modules/emscripten/tools/emmakenxx.py +0 -18
- data/modules/emscripten/tools/exec_llvm.py +0 -50
- data/modules/emscripten/tools/file2json.py +0 -49
- data/modules/emscripten/tools/file_packager.py +0 -719
- data/modules/emscripten/tools/find_bigfuncs.py +0 -23
- data/modules/emscripten/tools/find_bigis.py +0 -18
- data/modules/emscripten/tools/find_bigvars.py +0 -24
- data/modules/emscripten/tools/fix_closure.py +0 -88
- data/modules/emscripten/tools/gen_struct_info.py +0 -509
- data/modules/emscripten/tools/ie7_fix.py +0 -14
- data/modules/emscripten/tools/js-optimizer.js +0 -4023
- data/modules/emscripten/tools/js_optimizer.py +0 -357
- data/modules/emscripten/tools/jsrun.py +0 -37
- data/modules/emscripten/tools/ll-strip.py +0 -56
- data/modules/emscripten/tools/make_file.py +0 -19
- data/modules/emscripten/tools/make_minigzip.py +0 -13
- data/modules/emscripten/tools/merge_asm.py +0 -26
- data/modules/emscripten/tools/namespacer.py +0 -95
- data/modules/emscripten/tools/nativize_llvm.py +0 -34
- data/modules/emscripten/tools/node_modules/source-map/CHANGELOG.md +0 -58
- data/modules/emscripten/tools/node_modules/source-map/LICENSE +0 -28
- data/modules/emscripten/tools/node_modules/source-map/Makefile.dryice.js +0 -166
- data/modules/emscripten/tools/node_modules/source-map/README.md +0 -347
- data/modules/emscripten/tools/node_modules/source-map/build/assert-shim.js +0 -56
- data/modules/emscripten/tools/node_modules/source-map/build/mini-require.js +0 -152
- data/modules/emscripten/tools/node_modules/source-map/build/prefix-source-map.jsm +0 -20
- data/modules/emscripten/tools/node_modules/source-map/build/prefix-utils.jsm +0 -18
- data/modules/emscripten/tools/node_modules/source-map/build/suffix-browser.js +0 -8
- data/modules/emscripten/tools/node_modules/source-map/build/suffix-source-map.jsm +0 -6
- data/modules/emscripten/tools/node_modules/source-map/build/suffix-utils.jsm +0 -21
- data/modules/emscripten/tools/node_modules/source-map/build/test-prefix.js +0 -8
- data/modules/emscripten/tools/node_modules/source-map/build/test-suffix.js +0 -3
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/array-set.js +0 -96
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/base64-vlq.js +0 -144
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/base64.js +0 -42
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/binary-search.js +0 -81
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-map-consumer.js +0 -430
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-map-generator.js +0 -381
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-node.js +0 -353
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/util.js +0 -117
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map.js +0 -8
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/LICENSE +0 -58
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/README.md +0 -119
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/amdefine.js +0 -299
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/package.json +0 -33
- data/modules/emscripten/tools/node_modules/source-map/package.json +0 -74
- data/modules/emscripten/tools/node_modules/source-map/test/run-tests.js +0 -73
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-api.js +0 -26
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-array-set.js +0 -71
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-base64-vlq.js +0 -24
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-base64.js +0 -35
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-binary-search.js +0 -54
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-dog-fooding.js +0 -72
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-map-consumer.js +0 -306
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-map-generator.js +0 -391
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-node.js +0 -282
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/util.js +0 -152
- data/modules/emscripten/tools/reproduceriter.js +0 -216
- data/modules/emscripten/tools/reproduceriter.py +0 -160
- data/modules/emscripten/tools/response_file.py +0 -34
- data/modules/emscripten/tools/scan_js.py +0 -20
- data/modules/emscripten/tools/scan_ll.py +0 -18
- data/modules/emscripten/tools/scons/site_scons/site_tools/emscripten/__init__.py +0 -3
- data/modules/emscripten/tools/scons/site_scons/site_tools/emscripten/emscripten.py +0 -46
- data/modules/emscripten/tools/settings_template_readonly.py +0 -49
- data/modules/emscripten/tools/shared.py +0 -1705
- data/modules/emscripten/tools/source-maps/sourcemap2json.js +0 -15
- data/modules/emscripten/tools/source-maps/sourcemapper.js +0 -208
- data/modules/emscripten/tools/split.py +0 -105
- data/modules/emscripten/tools/split_asm.py +0 -30
- data/modules/emscripten/tools/tempfiles.py +0 -41
- data/modules/emscripten/tools/test-js-optimizer-asm-last-output.js +0 -75
- data/modules/emscripten/tools/test-js-optimizer-asm-last.js +0 -91
- data/modules/emscripten/tools/test-js-optimizer-asm-minlast-output.js +0 -2
- data/modules/emscripten/tools/test-js-optimizer-asm-minlast.js +0 -8
- data/modules/emscripten/tools/test-js-optimizer-asm-outline1-output.js +0 -929
- data/modules/emscripten/tools/test-js-optimizer-asm-outline1.js +0 -351
- data/modules/emscripten/tools/test-js-optimizer-asm-outline2-output.js +0 -793
- data/modules/emscripten/tools/test-js-optimizer-asm-outline2.js +0 -606
- data/modules/emscripten/tools/test-js-optimizer-asm-outline3-output.js +0 -28
- data/modules/emscripten/tools/test-js-optimizer-asm-outline3.js +0 -30
- data/modules/emscripten/tools/test-js-optimizer-asm-pre-output.js +0 -522
- data/modules/emscripten/tools/test-js-optimizer-asm-pre.js +0 -533
- data/modules/emscripten/tools/test-js-optimizer-asm-regs-min-output.js +0 -36
- data/modules/emscripten/tools/test-js-optimizer-asm-regs-min.js +0 -37
- data/modules/emscripten/tools/test-js-optimizer-asm-regs-output.js +0 -106
- data/modules/emscripten/tools/test-js-optimizer-asm-regs.js +0 -110
- data/modules/emscripten/tools/test-js-optimizer-asm-relocate-output.js +0 -9
- data/modules/emscripten/tools/test-js-optimizer-asm-relocate.js +0 -12
- data/modules/emscripten/tools/test-js-optimizer-output.js +0 -291
- data/modules/emscripten/tools/test-js-optimizer-regs-output.js +0 -232
- data/modules/emscripten/tools/test-js-optimizer-regs.js +0 -237
- data/modules/emscripten/tools/test-js-optimizer-t2-output.js +0 -91
- data/modules/emscripten/tools/test-js-optimizer-t2.js +0 -92
- data/modules/emscripten/tools/test-js-optimizer-t2c-output.js +0 -17
- data/modules/emscripten/tools/test-js-optimizer-t2c.js +0 -18
- data/modules/emscripten/tools/test-js-optimizer-t3-output.js +0 -49
- data/modules/emscripten/tools/test-js-optimizer-t3.js +0 -50
- data/modules/emscripten/tools/test-js-optimizer.js +0 -401
- data/modules/emscripten/tools/validate_asmjs.py +0 -82
- data/modules/mruby/mrblib/print.rb +0 -18
- data/modules/mruby/src/re.h +0 -12
@@ -1,1609 +0,0 @@
|
|
1
|
-
// TODO: strip out parts of this we do not need
|
2
|
-
|
3
|
-
//======= begin closure i64 code =======
|
4
|
-
|
5
|
-
// Copyright 2009 The Closure Library Authors. All Rights Reserved.
|
6
|
-
//
|
7
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
-
// you may not use this file except in compliance with the License.
|
9
|
-
// You may obtain a copy of the License at
|
10
|
-
//
|
11
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
12
|
-
//
|
13
|
-
// Unless required by applicable law or agreed to in writing, software
|
14
|
-
// distributed under the License is distributed on an "AS-IS" BASIS,
|
15
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
-
// See the License for the specific language governing permissions and
|
17
|
-
// limitations under the License.
|
18
|
-
|
19
|
-
/**
|
20
|
-
* @fileoverview Defines a Long class for representing a 64-bit two's-complement
|
21
|
-
* integer value, which faithfully simulates the behavior of a Java "long". This
|
22
|
-
* implementation is derived from LongLib in GWT.
|
23
|
-
*
|
24
|
-
*/
|
25
|
-
|
26
|
-
var i64Math = (function() { // Emscripten wrapper
|
27
|
-
var goog = { math: {} };
|
28
|
-
|
29
|
-
|
30
|
-
/**
|
31
|
-
* Constructs a 64-bit two's-complement integer, given its low and high 32-bit
|
32
|
-
* values as *signed* integers. See the from* functions below for more
|
33
|
-
* convenient ways of constructing Longs.
|
34
|
-
*
|
35
|
-
* The internal representation of a long is the two given signed, 32-bit values.
|
36
|
-
* We use 32-bit pieces because these are the size of integers on which
|
37
|
-
* Javascript performs bit-operations. For operations like addition and
|
38
|
-
* multiplication, we split each number into 16-bit pieces, which can easily be
|
39
|
-
* multiplied within Javascript's floating-point representation without overflow
|
40
|
-
* or change in sign.
|
41
|
-
*
|
42
|
-
* In the algorithms below, we frequently reduce the negative case to the
|
43
|
-
* positive case by negating the input(s) and then post-processing the result.
|
44
|
-
* Note that we must ALWAYS check specially whether those values are MIN_VALUE
|
45
|
-
* (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as
|
46
|
-
* a positive number, it overflows back into a negative). Not handling this
|
47
|
-
* case would often result in infinite recursion.
|
48
|
-
*
|
49
|
-
* @param {number} low The low (signed) 32 bits of the long.
|
50
|
-
* @param {number} high The high (signed) 32 bits of the long.
|
51
|
-
* @constructor
|
52
|
-
*/
|
53
|
-
goog.math.Long = function(low, high) {
|
54
|
-
/**
|
55
|
-
* @type {number}
|
56
|
-
* @private
|
57
|
-
*/
|
58
|
-
this.low_ = low | 0; // force into 32 signed bits.
|
59
|
-
|
60
|
-
/**
|
61
|
-
* @type {number}
|
62
|
-
* @private
|
63
|
-
*/
|
64
|
-
this.high_ = high | 0; // force into 32 signed bits.
|
65
|
-
};
|
66
|
-
|
67
|
-
|
68
|
-
// NOTE: Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the
|
69
|
-
// from* methods on which they depend.
|
70
|
-
|
71
|
-
|
72
|
-
/**
|
73
|
-
* A cache of the Long representations of small integer values.
|
74
|
-
* @type {!Object}
|
75
|
-
* @private
|
76
|
-
*/
|
77
|
-
goog.math.Long.IntCache_ = {};
|
78
|
-
|
79
|
-
|
80
|
-
/**
|
81
|
-
* Returns a Long representing the given (32-bit) integer value.
|
82
|
-
* @param {number} value The 32-bit integer in question.
|
83
|
-
* @return {!goog.math.Long} The corresponding Long value.
|
84
|
-
*/
|
85
|
-
goog.math.Long.fromInt = function(value) {
|
86
|
-
if (-128 <= value && value < 128) {
|
87
|
-
var cachedObj = goog.math.Long.IntCache_[value];
|
88
|
-
if (cachedObj) {
|
89
|
-
return cachedObj;
|
90
|
-
}
|
91
|
-
}
|
92
|
-
|
93
|
-
var obj = new goog.math.Long(value | 0, value < 0 ? -1 : 0);
|
94
|
-
if (-128 <= value && value < 128) {
|
95
|
-
goog.math.Long.IntCache_[value] = obj;
|
96
|
-
}
|
97
|
-
return obj;
|
98
|
-
};
|
99
|
-
|
100
|
-
|
101
|
-
/**
|
102
|
-
* Returns a Long representing the given value, provided that it is a finite
|
103
|
-
* number. Otherwise, zero is returned.
|
104
|
-
* @param {number} value The number in question.
|
105
|
-
* @return {!goog.math.Long} The corresponding Long value.
|
106
|
-
*/
|
107
|
-
goog.math.Long.fromNumber = function(value) {
|
108
|
-
if (isNaN(value) || !isFinite(value)) {
|
109
|
-
return goog.math.Long.ZERO;
|
110
|
-
} else if (value <= -goog.math.Long.TWO_PWR_63_DBL_) {
|
111
|
-
return goog.math.Long.MIN_VALUE;
|
112
|
-
} else if (value + 1 >= goog.math.Long.TWO_PWR_63_DBL_) {
|
113
|
-
return goog.math.Long.MAX_VALUE;
|
114
|
-
} else if (value < 0) {
|
115
|
-
return goog.math.Long.fromNumber(-value).negate();
|
116
|
-
} else {
|
117
|
-
return new goog.math.Long(
|
118
|
-
(value % goog.math.Long.TWO_PWR_32_DBL_) | 0,
|
119
|
-
(value / goog.math.Long.TWO_PWR_32_DBL_) | 0);
|
120
|
-
}
|
121
|
-
};
|
122
|
-
|
123
|
-
|
124
|
-
/**
|
125
|
-
* Returns a Long representing the 64-bit integer that comes by concatenating
|
126
|
-
* the given high and low bits. Each is assumed to use 32 bits.
|
127
|
-
* @param {number} lowBits The low 32-bits.
|
128
|
-
* @param {number} highBits The high 32-bits.
|
129
|
-
* @return {!goog.math.Long} The corresponding Long value.
|
130
|
-
*/
|
131
|
-
goog.math.Long.fromBits = function(lowBits, highBits) {
|
132
|
-
return new goog.math.Long(lowBits, highBits);
|
133
|
-
};
|
134
|
-
|
135
|
-
|
136
|
-
/**
|
137
|
-
* Returns a Long representation of the given string, written using the given
|
138
|
-
* radix.
|
139
|
-
* @param {string} str The textual representation of the Long.
|
140
|
-
* @param {number=} opt_radix The radix in which the text is written.
|
141
|
-
* @return {!goog.math.Long} The corresponding Long value.
|
142
|
-
*/
|
143
|
-
goog.math.Long.fromString = function(str, opt_radix) {
|
144
|
-
if (str.length == 0) {
|
145
|
-
throw Error('number format error: empty string');
|
146
|
-
}
|
147
|
-
|
148
|
-
var radix = opt_radix || 10;
|
149
|
-
if (radix < 2 || 36 < radix) {
|
150
|
-
throw Error('radix out of range: ' + radix);
|
151
|
-
}
|
152
|
-
|
153
|
-
if (str.charAt(0) == '-') {
|
154
|
-
return goog.math.Long.fromString(str.substring(1), radix).negate();
|
155
|
-
} else if (str.indexOf('-') >= 0) {
|
156
|
-
throw Error('number format error: interior "-" character: ' + str);
|
157
|
-
}
|
158
|
-
|
159
|
-
// Do several (8) digits each time through the loop, so as to
|
160
|
-
// minimize the calls to the very expensive emulated div.
|
161
|
-
var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8));
|
162
|
-
|
163
|
-
var result = goog.math.Long.ZERO;
|
164
|
-
for (var i = 0; i < str.length; i += 8) {
|
165
|
-
var size = Math.min(8, str.length - i);
|
166
|
-
var value = parseInt(str.substring(i, i + size), radix);
|
167
|
-
if (size < 8) {
|
168
|
-
var power = goog.math.Long.fromNumber(Math.pow(radix, size));
|
169
|
-
result = result.multiply(power).add(goog.math.Long.fromNumber(value));
|
170
|
-
} else {
|
171
|
-
result = result.multiply(radixToPower);
|
172
|
-
result = result.add(goog.math.Long.fromNumber(value));
|
173
|
-
}
|
174
|
-
}
|
175
|
-
return result;
|
176
|
-
};
|
177
|
-
|
178
|
-
|
179
|
-
// NOTE: the compiler should inline these constant values below and then remove
|
180
|
-
// these variables, so there should be no runtime penalty for these.
|
181
|
-
|
182
|
-
|
183
|
-
/**
|
184
|
-
* Number used repeated below in calculations. This must appear before the
|
185
|
-
* first call to any from* function below.
|
186
|
-
* @type {number}
|
187
|
-
* @private
|
188
|
-
*/
|
189
|
-
goog.math.Long.TWO_PWR_16_DBL_ = 1 << 16;
|
190
|
-
|
191
|
-
|
192
|
-
/**
|
193
|
-
* @type {number}
|
194
|
-
* @private
|
195
|
-
*/
|
196
|
-
goog.math.Long.TWO_PWR_24_DBL_ = 1 << 24;
|
197
|
-
|
198
|
-
|
199
|
-
/**
|
200
|
-
* @type {number}
|
201
|
-
* @private
|
202
|
-
*/
|
203
|
-
goog.math.Long.TWO_PWR_32_DBL_ =
|
204
|
-
goog.math.Long.TWO_PWR_16_DBL_ * goog.math.Long.TWO_PWR_16_DBL_;
|
205
|
-
|
206
|
-
|
207
|
-
/**
|
208
|
-
* @type {number}
|
209
|
-
* @private
|
210
|
-
*/
|
211
|
-
goog.math.Long.TWO_PWR_31_DBL_ =
|
212
|
-
goog.math.Long.TWO_PWR_32_DBL_ / 2;
|
213
|
-
|
214
|
-
|
215
|
-
/**
|
216
|
-
* @type {number}
|
217
|
-
* @private
|
218
|
-
*/
|
219
|
-
goog.math.Long.TWO_PWR_48_DBL_ =
|
220
|
-
goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_16_DBL_;
|
221
|
-
|
222
|
-
|
223
|
-
/**
|
224
|
-
* @type {number}
|
225
|
-
* @private
|
226
|
-
*/
|
227
|
-
goog.math.Long.TWO_PWR_64_DBL_ =
|
228
|
-
goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_32_DBL_;
|
229
|
-
|
230
|
-
|
231
|
-
/**
|
232
|
-
* @type {number}
|
233
|
-
* @private
|
234
|
-
*/
|
235
|
-
goog.math.Long.TWO_PWR_63_DBL_ =
|
236
|
-
goog.math.Long.TWO_PWR_64_DBL_ / 2;
|
237
|
-
|
238
|
-
|
239
|
-
/** @type {!goog.math.Long} */
|
240
|
-
goog.math.Long.ZERO = goog.math.Long.fromInt(0);
|
241
|
-
|
242
|
-
|
243
|
-
/** @type {!goog.math.Long} */
|
244
|
-
goog.math.Long.ONE = goog.math.Long.fromInt(1);
|
245
|
-
|
246
|
-
|
247
|
-
/** @type {!goog.math.Long} */
|
248
|
-
goog.math.Long.NEG_ONE = goog.math.Long.fromInt(-1);
|
249
|
-
|
250
|
-
|
251
|
-
/** @type {!goog.math.Long} */
|
252
|
-
goog.math.Long.MAX_VALUE =
|
253
|
-
goog.math.Long.fromBits(0xFFFFFFFF | 0, 0x7FFFFFFF | 0);
|
254
|
-
|
255
|
-
|
256
|
-
/** @type {!goog.math.Long} */
|
257
|
-
goog.math.Long.MIN_VALUE = goog.math.Long.fromBits(0, 0x80000000 | 0);
|
258
|
-
|
259
|
-
|
260
|
-
/**
|
261
|
-
* @type {!goog.math.Long}
|
262
|
-
* @private
|
263
|
-
*/
|
264
|
-
goog.math.Long.TWO_PWR_24_ = goog.math.Long.fromInt(1 << 24);
|
265
|
-
|
266
|
-
|
267
|
-
/** @return {number} The value, assuming it is a 32-bit integer. */
|
268
|
-
goog.math.Long.prototype.toInt = function() {
|
269
|
-
return this.low_;
|
270
|
-
};
|
271
|
-
|
272
|
-
|
273
|
-
/** @return {number} The closest floating-point representation to this value. */
|
274
|
-
goog.math.Long.prototype.toNumber = function() {
|
275
|
-
return this.high_ * goog.math.Long.TWO_PWR_32_DBL_ +
|
276
|
-
this.getLowBitsUnsigned();
|
277
|
-
};
|
278
|
-
|
279
|
-
|
280
|
-
/**
|
281
|
-
* @param {number=} opt_radix The radix in which the text should be written.
|
282
|
-
* @return {string} The textual representation of this value.
|
283
|
-
*/
|
284
|
-
goog.math.Long.prototype.toString = function(opt_radix) {
|
285
|
-
var radix = opt_radix || 10;
|
286
|
-
if (radix < 2 || 36 < radix) {
|
287
|
-
throw Error('radix out of range: ' + radix);
|
288
|
-
}
|
289
|
-
|
290
|
-
if (this.isZero()) {
|
291
|
-
return '0';
|
292
|
-
}
|
293
|
-
|
294
|
-
if (this.isNegative()) {
|
295
|
-
if (this.equals(goog.math.Long.MIN_VALUE)) {
|
296
|
-
// We need to change the Long value before it can be negated, so we remove
|
297
|
-
// the bottom-most digit in this base and then recurse to do the rest.
|
298
|
-
var radixLong = goog.math.Long.fromNumber(radix);
|
299
|
-
var div = this.div(radixLong);
|
300
|
-
var rem = div.multiply(radixLong).subtract(this);
|
301
|
-
return div.toString(radix) + rem.toInt().toString(radix);
|
302
|
-
} else {
|
303
|
-
return '-' + this.negate().toString(radix);
|
304
|
-
}
|
305
|
-
}
|
306
|
-
|
307
|
-
// Do several (6) digits each time through the loop, so as to
|
308
|
-
// minimize the calls to the very expensive emulated div.
|
309
|
-
var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6));
|
310
|
-
|
311
|
-
var rem = this;
|
312
|
-
var result = '';
|
313
|
-
while (true) {
|
314
|
-
var remDiv = rem.div(radixToPower);
|
315
|
-
var intval = rem.subtract(remDiv.multiply(radixToPower)).toInt();
|
316
|
-
var digits = intval.toString(radix);
|
317
|
-
|
318
|
-
rem = remDiv;
|
319
|
-
if (rem.isZero()) {
|
320
|
-
return digits + result;
|
321
|
-
} else {
|
322
|
-
while (digits.length < 6) {
|
323
|
-
digits = '0' + digits;
|
324
|
-
}
|
325
|
-
result = '' + digits + result;
|
326
|
-
}
|
327
|
-
}
|
328
|
-
};
|
329
|
-
|
330
|
-
|
331
|
-
/** @return {number} The high 32-bits as a signed value. */
|
332
|
-
goog.math.Long.prototype.getHighBits = function() {
|
333
|
-
return this.high_;
|
334
|
-
};
|
335
|
-
|
336
|
-
|
337
|
-
/** @return {number} The low 32-bits as a signed value. */
|
338
|
-
goog.math.Long.prototype.getLowBits = function() {
|
339
|
-
return this.low_;
|
340
|
-
};
|
341
|
-
|
342
|
-
|
343
|
-
/** @return {number} The low 32-bits as an unsigned value. */
|
344
|
-
goog.math.Long.prototype.getLowBitsUnsigned = function() {
|
345
|
-
return (this.low_ >= 0) ?
|
346
|
-
this.low_ : goog.math.Long.TWO_PWR_32_DBL_ + this.low_;
|
347
|
-
};
|
348
|
-
|
349
|
-
|
350
|
-
/**
|
351
|
-
* @return {number} Returns the number of bits needed to represent the absolute
|
352
|
-
* value of this Long.
|
353
|
-
*/
|
354
|
-
goog.math.Long.prototype.getNumBitsAbs = function() {
|
355
|
-
if (this.isNegative()) {
|
356
|
-
if (this.equals(goog.math.Long.MIN_VALUE)) {
|
357
|
-
return 64;
|
358
|
-
} else {
|
359
|
-
return this.negate().getNumBitsAbs();
|
360
|
-
}
|
361
|
-
} else {
|
362
|
-
var val = this.high_ != 0 ? this.high_ : this.low_;
|
363
|
-
for (var bit = 31; bit > 0; bit--) {
|
364
|
-
if ((val & (1 << bit)) != 0) {
|
365
|
-
break;
|
366
|
-
}
|
367
|
-
}
|
368
|
-
return this.high_ != 0 ? bit + 33 : bit + 1;
|
369
|
-
}
|
370
|
-
};
|
371
|
-
|
372
|
-
|
373
|
-
/** @return {boolean} Whether this value is zero. */
|
374
|
-
goog.math.Long.prototype.isZero = function() {
|
375
|
-
return this.high_ == 0 && this.low_ == 0;
|
376
|
-
};
|
377
|
-
|
378
|
-
|
379
|
-
/** @return {boolean} Whether this value is negative. */
|
380
|
-
goog.math.Long.prototype.isNegative = function() {
|
381
|
-
return this.high_ < 0;
|
382
|
-
};
|
383
|
-
|
384
|
-
|
385
|
-
/** @return {boolean} Whether this value is odd. */
|
386
|
-
goog.math.Long.prototype.isOdd = function() {
|
387
|
-
return (this.low_ & 1) == 1;
|
388
|
-
};
|
389
|
-
|
390
|
-
|
391
|
-
/**
|
392
|
-
* @param {goog.math.Long} other Long to compare against.
|
393
|
-
* @return {boolean} Whether this Long equals the other.
|
394
|
-
*/
|
395
|
-
goog.math.Long.prototype.equals = function(other) {
|
396
|
-
return (this.high_ == other.high_) && (this.low_ == other.low_);
|
397
|
-
};
|
398
|
-
|
399
|
-
|
400
|
-
/**
|
401
|
-
* @param {goog.math.Long} other Long to compare against.
|
402
|
-
* @return {boolean} Whether this Long does not equal the other.
|
403
|
-
*/
|
404
|
-
goog.math.Long.prototype.notEquals = function(other) {
|
405
|
-
return (this.high_ != other.high_) || (this.low_ != other.low_);
|
406
|
-
};
|
407
|
-
|
408
|
-
|
409
|
-
/**
|
410
|
-
* @param {goog.math.Long} other Long to compare against.
|
411
|
-
* @return {boolean} Whether this Long is less than the other.
|
412
|
-
*/
|
413
|
-
goog.math.Long.prototype.lessThan = function(other) {
|
414
|
-
return this.compare(other) < 0;
|
415
|
-
};
|
416
|
-
|
417
|
-
|
418
|
-
/**
|
419
|
-
* @param {goog.math.Long} other Long to compare against.
|
420
|
-
* @return {boolean} Whether this Long is less than or equal to the other.
|
421
|
-
*/
|
422
|
-
goog.math.Long.prototype.lessThanOrEqual = function(other) {
|
423
|
-
return this.compare(other) <= 0;
|
424
|
-
};
|
425
|
-
|
426
|
-
|
427
|
-
/**
|
428
|
-
* @param {goog.math.Long} other Long to compare against.
|
429
|
-
* @return {boolean} Whether this Long is greater than the other.
|
430
|
-
*/
|
431
|
-
goog.math.Long.prototype.greaterThan = function(other) {
|
432
|
-
return this.compare(other) > 0;
|
433
|
-
};
|
434
|
-
|
435
|
-
|
436
|
-
/**
|
437
|
-
* @param {goog.math.Long} other Long to compare against.
|
438
|
-
* @return {boolean} Whether this Long is greater than or equal to the other.
|
439
|
-
*/
|
440
|
-
goog.math.Long.prototype.greaterThanOrEqual = function(other) {
|
441
|
-
return this.compare(other) >= 0;
|
442
|
-
};
|
443
|
-
|
444
|
-
|
445
|
-
/**
|
446
|
-
* Compares this Long with the given one.
|
447
|
-
* @param {goog.math.Long} other Long to compare against.
|
448
|
-
* @return {number} 0 if they are the same, 1 if the this is greater, and -1
|
449
|
-
* if the given one is greater.
|
450
|
-
*/
|
451
|
-
goog.math.Long.prototype.compare = function(other) {
|
452
|
-
if (this.equals(other)) {
|
453
|
-
return 0;
|
454
|
-
}
|
455
|
-
|
456
|
-
var thisNeg = this.isNegative();
|
457
|
-
var otherNeg = other.isNegative();
|
458
|
-
if (thisNeg && !otherNeg) {
|
459
|
-
return -1;
|
460
|
-
}
|
461
|
-
if (!thisNeg && otherNeg) {
|
462
|
-
return 1;
|
463
|
-
}
|
464
|
-
|
465
|
-
// at this point, the signs are the same, so subtraction will not overflow
|
466
|
-
if (this.subtract(other).isNegative()) {
|
467
|
-
return -1;
|
468
|
-
} else {
|
469
|
-
return 1;
|
470
|
-
}
|
471
|
-
};
|
472
|
-
|
473
|
-
|
474
|
-
/** @return {!goog.math.Long} The negation of this value. */
|
475
|
-
goog.math.Long.prototype.negate = function() {
|
476
|
-
if (this.equals(goog.math.Long.MIN_VALUE)) {
|
477
|
-
return goog.math.Long.MIN_VALUE;
|
478
|
-
} else {
|
479
|
-
return this.not().add(goog.math.Long.ONE);
|
480
|
-
}
|
481
|
-
};
|
482
|
-
|
483
|
-
|
484
|
-
/**
|
485
|
-
* Returns the sum of this and the given Long.
|
486
|
-
* @param {goog.math.Long} other Long to add to this one.
|
487
|
-
* @return {!goog.math.Long} The sum of this and the given Long.
|
488
|
-
*/
|
489
|
-
goog.math.Long.prototype.add = function(other) {
|
490
|
-
// Divide each number into 4 chunks of 16 bits, and then sum the chunks.
|
491
|
-
|
492
|
-
var a48 = this.high_ >>> 16;
|
493
|
-
var a32 = this.high_ & 0xFFFF;
|
494
|
-
var a16 = this.low_ >>> 16;
|
495
|
-
var a00 = this.low_ & 0xFFFF;
|
496
|
-
|
497
|
-
var b48 = other.high_ >>> 16;
|
498
|
-
var b32 = other.high_ & 0xFFFF;
|
499
|
-
var b16 = other.low_ >>> 16;
|
500
|
-
var b00 = other.low_ & 0xFFFF;
|
501
|
-
|
502
|
-
var c48 = 0, c32 = 0, c16 = 0, c00 = 0;
|
503
|
-
c00 += a00 + b00;
|
504
|
-
c16 += c00 >>> 16;
|
505
|
-
c00 &= 0xFFFF;
|
506
|
-
c16 += a16 + b16;
|
507
|
-
c32 += c16 >>> 16;
|
508
|
-
c16 &= 0xFFFF;
|
509
|
-
c32 += a32 + b32;
|
510
|
-
c48 += c32 >>> 16;
|
511
|
-
c32 &= 0xFFFF;
|
512
|
-
c48 += a48 + b48;
|
513
|
-
c48 &= 0xFFFF;
|
514
|
-
return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32);
|
515
|
-
};
|
516
|
-
|
517
|
-
|
518
|
-
/**
|
519
|
-
* Returns the difference of this and the given Long.
|
520
|
-
* @param {goog.math.Long} other Long to subtract from this.
|
521
|
-
* @return {!goog.math.Long} The difference of this and the given Long.
|
522
|
-
*/
|
523
|
-
goog.math.Long.prototype.subtract = function(other) {
|
524
|
-
return this.add(other.negate());
|
525
|
-
};
|
526
|
-
|
527
|
-
|
528
|
-
/**
|
529
|
-
* Returns the product of this and the given long.
|
530
|
-
* @param {goog.math.Long} other Long to multiply with this.
|
531
|
-
* @return {!goog.math.Long} The product of this and the other.
|
532
|
-
*/
|
533
|
-
goog.math.Long.prototype.multiply = function(other) {
|
534
|
-
if (this.isZero()) {
|
535
|
-
return goog.math.Long.ZERO;
|
536
|
-
} else if (other.isZero()) {
|
537
|
-
return goog.math.Long.ZERO;
|
538
|
-
}
|
539
|
-
|
540
|
-
if (this.equals(goog.math.Long.MIN_VALUE)) {
|
541
|
-
return other.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO;
|
542
|
-
} else if (other.equals(goog.math.Long.MIN_VALUE)) {
|
543
|
-
return this.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO;
|
544
|
-
}
|
545
|
-
|
546
|
-
if (this.isNegative()) {
|
547
|
-
if (other.isNegative()) {
|
548
|
-
return this.negate().multiply(other.negate());
|
549
|
-
} else {
|
550
|
-
return this.negate().multiply(other).negate();
|
551
|
-
}
|
552
|
-
} else if (other.isNegative()) {
|
553
|
-
return this.multiply(other.negate()).negate();
|
554
|
-
}
|
555
|
-
|
556
|
-
// If both longs are small, use float multiplication
|
557
|
-
if (this.lessThan(goog.math.Long.TWO_PWR_24_) &&
|
558
|
-
other.lessThan(goog.math.Long.TWO_PWR_24_)) {
|
559
|
-
return goog.math.Long.fromNumber(this.toNumber() * other.toNumber());
|
560
|
-
}
|
561
|
-
|
562
|
-
// Divide each long into 4 chunks of 16 bits, and then add up 4x4 products.
|
563
|
-
// We can skip products that would overflow.
|
564
|
-
|
565
|
-
var a48 = this.high_ >>> 16;
|
566
|
-
var a32 = this.high_ & 0xFFFF;
|
567
|
-
var a16 = this.low_ >>> 16;
|
568
|
-
var a00 = this.low_ & 0xFFFF;
|
569
|
-
|
570
|
-
var b48 = other.high_ >>> 16;
|
571
|
-
var b32 = other.high_ & 0xFFFF;
|
572
|
-
var b16 = other.low_ >>> 16;
|
573
|
-
var b00 = other.low_ & 0xFFFF;
|
574
|
-
|
575
|
-
var c48 = 0, c32 = 0, c16 = 0, c00 = 0;
|
576
|
-
c00 += a00 * b00;
|
577
|
-
c16 += c00 >>> 16;
|
578
|
-
c00 &= 0xFFFF;
|
579
|
-
c16 += a16 * b00;
|
580
|
-
c32 += c16 >>> 16;
|
581
|
-
c16 &= 0xFFFF;
|
582
|
-
c16 += a00 * b16;
|
583
|
-
c32 += c16 >>> 16;
|
584
|
-
c16 &= 0xFFFF;
|
585
|
-
c32 += a32 * b00;
|
586
|
-
c48 += c32 >>> 16;
|
587
|
-
c32 &= 0xFFFF;
|
588
|
-
c32 += a16 * b16;
|
589
|
-
c48 += c32 >>> 16;
|
590
|
-
c32 &= 0xFFFF;
|
591
|
-
c32 += a00 * b32;
|
592
|
-
c48 += c32 >>> 16;
|
593
|
-
c32 &= 0xFFFF;
|
594
|
-
c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48;
|
595
|
-
c48 &= 0xFFFF;
|
596
|
-
return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32);
|
597
|
-
};
|
598
|
-
|
599
|
-
|
600
|
-
/**
|
601
|
-
* Returns this Long divided by the given one.
|
602
|
-
* @param {goog.math.Long} other Long by which to divide.
|
603
|
-
* @return {!goog.math.Long} This Long divided by the given one.
|
604
|
-
*/
|
605
|
-
goog.math.Long.prototype.div = function(other) {
|
606
|
-
if (other.isZero()) {
|
607
|
-
throw Error('division by zero');
|
608
|
-
} else if (this.isZero()) {
|
609
|
-
return goog.math.Long.ZERO;
|
610
|
-
}
|
611
|
-
|
612
|
-
if (this.equals(goog.math.Long.MIN_VALUE)) {
|
613
|
-
if (other.equals(goog.math.Long.ONE) ||
|
614
|
-
other.equals(goog.math.Long.NEG_ONE)) {
|
615
|
-
return goog.math.Long.MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE
|
616
|
-
} else if (other.equals(goog.math.Long.MIN_VALUE)) {
|
617
|
-
return goog.math.Long.ONE;
|
618
|
-
} else {
|
619
|
-
// At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|.
|
620
|
-
var halfThis = this.shiftRight(1);
|
621
|
-
var approx = halfThis.div(other).shiftLeft(1);
|
622
|
-
if (approx.equals(goog.math.Long.ZERO)) {
|
623
|
-
return other.isNegative() ? goog.math.Long.ONE : goog.math.Long.NEG_ONE;
|
624
|
-
} else {
|
625
|
-
var rem = this.subtract(other.multiply(approx));
|
626
|
-
var result = approx.add(rem.div(other));
|
627
|
-
return result;
|
628
|
-
}
|
629
|
-
}
|
630
|
-
} else if (other.equals(goog.math.Long.MIN_VALUE)) {
|
631
|
-
return goog.math.Long.ZERO;
|
632
|
-
}
|
633
|
-
|
634
|
-
if (this.isNegative()) {
|
635
|
-
if (other.isNegative()) {
|
636
|
-
return this.negate().div(other.negate());
|
637
|
-
} else {
|
638
|
-
return this.negate().div(other).negate();
|
639
|
-
}
|
640
|
-
} else if (other.isNegative()) {
|
641
|
-
return this.div(other.negate()).negate();
|
642
|
-
}
|
643
|
-
|
644
|
-
// Repeat the following until the remainder is less than other: find a
|
645
|
-
// floating-point that approximates remainder / other *from below*, add this
|
646
|
-
// into the result, and subtract it from the remainder. It is critical that
|
647
|
-
// the approximate value is less than or equal to the real value so that the
|
648
|
-
// remainder never becomes negative.
|
649
|
-
var res = goog.math.Long.ZERO;
|
650
|
-
var rem = this;
|
651
|
-
while (rem.greaterThanOrEqual(other)) {
|
652
|
-
// Approximate the result of division. This may be a little greater or
|
653
|
-
// smaller than the actual value.
|
654
|
-
var approx = Math.max(1, Math.floor(rem.toNumber() / other.toNumber()));
|
655
|
-
|
656
|
-
// We will tweak the approximate result by changing it in the 48-th digit or
|
657
|
-
// the smallest non-fractional digit, whichever is larger.
|
658
|
-
var log2 = Math.ceil(Math.log(approx) / Math.LN2);
|
659
|
-
var delta = (log2 <= 48) ? 1 : Math.pow(2, log2 - 48);
|
660
|
-
|
661
|
-
// Decrease the approximation until it is smaller than the remainder. Note
|
662
|
-
// that if it is too large, the product overflows and is negative.
|
663
|
-
var approxRes = goog.math.Long.fromNumber(approx);
|
664
|
-
var approxRem = approxRes.multiply(other);
|
665
|
-
while (approxRem.isNegative() || approxRem.greaterThan(rem)) {
|
666
|
-
approx -= delta;
|
667
|
-
approxRes = goog.math.Long.fromNumber(approx);
|
668
|
-
approxRem = approxRes.multiply(other);
|
669
|
-
}
|
670
|
-
|
671
|
-
// We know the answer can't be zero... and actually, zero would cause
|
672
|
-
// infinite recursion since we would make no progress.
|
673
|
-
if (approxRes.isZero()) {
|
674
|
-
approxRes = goog.math.Long.ONE;
|
675
|
-
}
|
676
|
-
|
677
|
-
res = res.add(approxRes);
|
678
|
-
rem = rem.subtract(approxRem);
|
679
|
-
}
|
680
|
-
return res;
|
681
|
-
};
|
682
|
-
|
683
|
-
|
684
|
-
/**
|
685
|
-
* Returns this Long modulo the given one.
|
686
|
-
* @param {goog.math.Long} other Long by which to mod.
|
687
|
-
* @return {!goog.math.Long} This Long modulo the given one.
|
688
|
-
*/
|
689
|
-
goog.math.Long.prototype.modulo = function(other) {
|
690
|
-
return this.subtract(this.div(other).multiply(other));
|
691
|
-
};
|
692
|
-
|
693
|
-
|
694
|
-
/** @return {!goog.math.Long} The bitwise-NOT of this value. */
|
695
|
-
goog.math.Long.prototype.not = function() {
|
696
|
-
return goog.math.Long.fromBits(~this.low_, ~this.high_);
|
697
|
-
};
|
698
|
-
|
699
|
-
|
700
|
-
/**
|
701
|
-
* Returns the bitwise-AND of this Long and the given one.
|
702
|
-
* @param {goog.math.Long} other The Long with which to AND.
|
703
|
-
* @return {!goog.math.Long} The bitwise-AND of this and the other.
|
704
|
-
*/
|
705
|
-
goog.math.Long.prototype.and = function(other) {
|
706
|
-
return goog.math.Long.fromBits(this.low_ & other.low_,
|
707
|
-
this.high_ & other.high_);
|
708
|
-
};
|
709
|
-
|
710
|
-
|
711
|
-
/**
|
712
|
-
* Returns the bitwise-OR of this Long and the given one.
|
713
|
-
* @param {goog.math.Long} other The Long with which to OR.
|
714
|
-
* @return {!goog.math.Long} The bitwise-OR of this and the other.
|
715
|
-
*/
|
716
|
-
goog.math.Long.prototype.or = function(other) {
|
717
|
-
return goog.math.Long.fromBits(this.low_ | other.low_,
|
718
|
-
this.high_ | other.high_);
|
719
|
-
};
|
720
|
-
|
721
|
-
|
722
|
-
/**
|
723
|
-
* Returns the bitwise-XOR of this Long and the given one.
|
724
|
-
* @param {goog.math.Long} other The Long with which to XOR.
|
725
|
-
* @return {!goog.math.Long} The bitwise-XOR of this and the other.
|
726
|
-
*/
|
727
|
-
goog.math.Long.prototype.xor = function(other) {
|
728
|
-
return goog.math.Long.fromBits(this.low_ ^ other.low_,
|
729
|
-
this.high_ ^ other.high_);
|
730
|
-
};
|
731
|
-
|
732
|
-
|
733
|
-
/**
|
734
|
-
* Returns this Long with bits shifted to the left by the given amount.
|
735
|
-
* @param {number} numBits The number of bits by which to shift.
|
736
|
-
* @return {!goog.math.Long} This shifted to the left by the given amount.
|
737
|
-
*/
|
738
|
-
goog.math.Long.prototype.shiftLeft = function(numBits) {
|
739
|
-
numBits &= 63;
|
740
|
-
if (numBits == 0) {
|
741
|
-
return this;
|
742
|
-
} else {
|
743
|
-
var low = this.low_;
|
744
|
-
if (numBits < 32) {
|
745
|
-
var high = this.high_;
|
746
|
-
return goog.math.Long.fromBits(
|
747
|
-
low << numBits,
|
748
|
-
(high << numBits) | (low >>> (32 - numBits)));
|
749
|
-
} else {
|
750
|
-
return goog.math.Long.fromBits(0, low << (numBits - 32));
|
751
|
-
}
|
752
|
-
}
|
753
|
-
};
|
754
|
-
|
755
|
-
|
756
|
-
/**
|
757
|
-
* Returns this Long with bits shifted to the right by the given amount.
|
758
|
-
* @param {number} numBits The number of bits by which to shift.
|
759
|
-
* @return {!goog.math.Long} This shifted to the right by the given amount.
|
760
|
-
*/
|
761
|
-
goog.math.Long.prototype.shiftRight = function(numBits) {
|
762
|
-
numBits &= 63;
|
763
|
-
if (numBits == 0) {
|
764
|
-
return this;
|
765
|
-
} else {
|
766
|
-
var high = this.high_;
|
767
|
-
if (numBits < 32) {
|
768
|
-
var low = this.low_;
|
769
|
-
return goog.math.Long.fromBits(
|
770
|
-
(low >>> numBits) | (high << (32 - numBits)),
|
771
|
-
high >> numBits);
|
772
|
-
} else {
|
773
|
-
return goog.math.Long.fromBits(
|
774
|
-
high >> (numBits - 32),
|
775
|
-
high >= 0 ? 0 : -1);
|
776
|
-
}
|
777
|
-
}
|
778
|
-
};
|
779
|
-
|
780
|
-
|
781
|
-
/**
|
782
|
-
* Returns this Long with bits shifted to the right by the given amount, with
|
783
|
-
* the new top bits matching the current sign bit.
|
784
|
-
* @param {number} numBits The number of bits by which to shift.
|
785
|
-
* @return {!goog.math.Long} This shifted to the right by the given amount, with
|
786
|
-
* zeros placed into the new leading bits.
|
787
|
-
*/
|
788
|
-
goog.math.Long.prototype.shiftRightUnsigned = function(numBits) {
|
789
|
-
numBits &= 63;
|
790
|
-
if (numBits == 0) {
|
791
|
-
return this;
|
792
|
-
} else {
|
793
|
-
var high = this.high_;
|
794
|
-
if (numBits < 32) {
|
795
|
-
var low = this.low_;
|
796
|
-
return goog.math.Long.fromBits(
|
797
|
-
(low >>> numBits) | (high << (32 - numBits)),
|
798
|
-
high >>> numBits);
|
799
|
-
} else if (numBits == 32) {
|
800
|
-
return goog.math.Long.fromBits(high, 0);
|
801
|
-
} else {
|
802
|
-
return goog.math.Long.fromBits(high >>> (numBits - 32), 0);
|
803
|
-
}
|
804
|
-
}
|
805
|
-
};
|
806
|
-
|
807
|
-
//======= begin jsbn =======
|
808
|
-
|
809
|
-
var navigator = { appName: 'Modern Browser' }; // polyfill a little
|
810
|
-
|
811
|
-
// Copyright (c) 2005 Tom Wu
|
812
|
-
// All Rights Reserved.
|
813
|
-
// http://www-cs-students.stanford.edu/~tjw/jsbn/
|
814
|
-
|
815
|
-
/*
|
816
|
-
* Copyright (c) 2003-2005 Tom Wu
|
817
|
-
* All Rights Reserved.
|
818
|
-
*
|
819
|
-
* Permission is hereby granted, free of charge, to any person obtaining
|
820
|
-
* a copy of this software and associated documentation files (the
|
821
|
-
* "Software"), to deal in the Software without restriction, including
|
822
|
-
* without limitation the rights to use, copy, modify, merge, publish,
|
823
|
-
* distribute, sublicense, and/or sell copies of the Software, and to
|
824
|
-
* permit persons to whom the Software is furnished to do so, subject to
|
825
|
-
* the following conditions:
|
826
|
-
*
|
827
|
-
* The above copyright notice and this permission notice shall be
|
828
|
-
* included in all copies or substantial portions of the Software.
|
829
|
-
*
|
830
|
-
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
831
|
-
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
832
|
-
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
833
|
-
*
|
834
|
-
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
835
|
-
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
836
|
-
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
837
|
-
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
838
|
-
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
839
|
-
*
|
840
|
-
* In addition, the following condition applies:
|
841
|
-
*
|
842
|
-
* All redistributions must retain an intact copy of this copyright notice
|
843
|
-
* and disclaimer.
|
844
|
-
*/
|
845
|
-
|
846
|
-
// Basic JavaScript BN library - subset useful for RSA encryption.
|
847
|
-
|
848
|
-
// Bits per digit
|
849
|
-
var dbits;
|
850
|
-
|
851
|
-
// JavaScript engine analysis
|
852
|
-
var canary = 0xdeadbeefcafe;
|
853
|
-
var j_lm = ((canary&0xffffff)==0xefcafe);
|
854
|
-
|
855
|
-
// (public) Constructor
|
856
|
-
function BigInteger(a,b,c) {
|
857
|
-
if(a != null)
|
858
|
-
if("number" == typeof a) this.fromNumber(a,b,c);
|
859
|
-
else if(b == null && "string" != typeof a) this.fromString(a,256);
|
860
|
-
else this.fromString(a,b);
|
861
|
-
}
|
862
|
-
|
863
|
-
// return new, unset BigInteger
|
864
|
-
function nbi() { return new BigInteger(null); }
|
865
|
-
|
866
|
-
// am: Compute w_j += (x*this_i), propagate carries,
|
867
|
-
// c is initial carry, returns final carry.
|
868
|
-
// c < 3*dvalue, x < 2*dvalue, this_i < dvalue
|
869
|
-
// We need to select the fastest one that works in this environment.
|
870
|
-
|
871
|
-
// am1: use a single mult and divide to get the high bits,
|
872
|
-
// max digit bits should be 26 because
|
873
|
-
// max internal value = 2*dvalue^2-2*dvalue (< 2^53)
|
874
|
-
function am1(i,x,w,j,c,n) {
|
875
|
-
while(--n >= 0) {
|
876
|
-
var v = x*this[i++]+w[j]+c;
|
877
|
-
c = Math.floor(v/0x4000000);
|
878
|
-
w[j++] = v&0x3ffffff;
|
879
|
-
}
|
880
|
-
return c;
|
881
|
-
}
|
882
|
-
// am2 avoids a big mult-and-extract completely.
|
883
|
-
// Max digit bits should be <= 30 because we do bitwise ops
|
884
|
-
// on values up to 2*hdvalue^2-hdvalue-1 (< 2^31)
|
885
|
-
function am2(i,x,w,j,c,n) {
|
886
|
-
var xl = x&0x7fff, xh = x>>15;
|
887
|
-
while(--n >= 0) {
|
888
|
-
var l = this[i]&0x7fff;
|
889
|
-
var h = this[i++]>>15;
|
890
|
-
var m = xh*l+h*xl;
|
891
|
-
l = xl*l+((m&0x7fff)<<15)+w[j]+(c&0x3fffffff);
|
892
|
-
c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
|
893
|
-
w[j++] = l&0x3fffffff;
|
894
|
-
}
|
895
|
-
return c;
|
896
|
-
}
|
897
|
-
// Alternately, set max digit bits to 28 since some
|
898
|
-
// browsers slow down when dealing with 32-bit numbers.
|
899
|
-
function am3(i,x,w,j,c,n) {
|
900
|
-
var xl = x&0x3fff, xh = x>>14;
|
901
|
-
while(--n >= 0) {
|
902
|
-
var l = this[i]&0x3fff;
|
903
|
-
var h = this[i++]>>14;
|
904
|
-
var m = xh*l+h*xl;
|
905
|
-
l = xl*l+((m&0x3fff)<<14)+w[j]+c;
|
906
|
-
c = (l>>28)+(m>>14)+xh*h;
|
907
|
-
w[j++] = l&0xfffffff;
|
908
|
-
}
|
909
|
-
return c;
|
910
|
-
}
|
911
|
-
if(j_lm && (navigator.appName == "Microsoft Internet Explorer")) {
|
912
|
-
BigInteger.prototype.am = am2;
|
913
|
-
dbits = 30;
|
914
|
-
}
|
915
|
-
else if(j_lm && (navigator.appName != "Netscape")) {
|
916
|
-
BigInteger.prototype.am = am1;
|
917
|
-
dbits = 26;
|
918
|
-
}
|
919
|
-
else { // Mozilla/Netscape seems to prefer am3
|
920
|
-
BigInteger.prototype.am = am3;
|
921
|
-
dbits = 28;
|
922
|
-
}
|
923
|
-
|
924
|
-
BigInteger.prototype.DB = dbits;
|
925
|
-
BigInteger.prototype.DM = ((1<<dbits)-1);
|
926
|
-
BigInteger.prototype.DV = (1<<dbits);
|
927
|
-
|
928
|
-
var BI_FP = 52;
|
929
|
-
BigInteger.prototype.FV = Math.pow(2,BI_FP);
|
930
|
-
BigInteger.prototype.F1 = BI_FP-dbits;
|
931
|
-
BigInteger.prototype.F2 = 2*dbits-BI_FP;
|
932
|
-
|
933
|
-
// Digit conversions
|
934
|
-
var BI_RM = "0123456789abcdefghijklmnopqrstuvwxyz";
|
935
|
-
var BI_RC = new Array();
|
936
|
-
var rr,vv;
|
937
|
-
rr = "0".charCodeAt(0);
|
938
|
-
for(vv = 0; vv <= 9; ++vv) BI_RC[rr++] = vv;
|
939
|
-
rr = "a".charCodeAt(0);
|
940
|
-
for(vv = 10; vv < 36; ++vv) BI_RC[rr++] = vv;
|
941
|
-
rr = "A".charCodeAt(0);
|
942
|
-
for(vv = 10; vv < 36; ++vv) BI_RC[rr++] = vv;
|
943
|
-
|
944
|
-
function int2char(n) { return BI_RM.charAt(n); }
|
945
|
-
function intAt(s,i) {
|
946
|
-
var c = BI_RC[s.charCodeAt(i)];
|
947
|
-
return (c==null)?-1:c;
|
948
|
-
}
|
949
|
-
|
950
|
-
// (protected) copy this to r
|
951
|
-
function bnpCopyTo(r) {
|
952
|
-
for(var i = this.t-1; i >= 0; --i) r[i] = this[i];
|
953
|
-
r.t = this.t;
|
954
|
-
r.s = this.s;
|
955
|
-
}
|
956
|
-
|
957
|
-
// (protected) set from integer value x, -DV <= x < DV
|
958
|
-
function bnpFromInt(x) {
|
959
|
-
this.t = 1;
|
960
|
-
this.s = (x<0)?-1:0;
|
961
|
-
if(x > 0) this[0] = x;
|
962
|
-
else if(x < -1) this[0] = x+DV;
|
963
|
-
else this.t = 0;
|
964
|
-
}
|
965
|
-
|
966
|
-
// return bigint initialized to value
|
967
|
-
function nbv(i) { var r = nbi(); r.fromInt(i); return r; }
|
968
|
-
|
969
|
-
// (protected) set from string and radix
|
970
|
-
function bnpFromString(s,b) {
|
971
|
-
var k;
|
972
|
-
if(b == 16) k = 4;
|
973
|
-
else if(b == 8) k = 3;
|
974
|
-
else if(b == 256) k = 8; // byte array
|
975
|
-
else if(b == 2) k = 1;
|
976
|
-
else if(b == 32) k = 5;
|
977
|
-
else if(b == 4) k = 2;
|
978
|
-
else { this.fromRadix(s,b); return; }
|
979
|
-
this.t = 0;
|
980
|
-
this.s = 0;
|
981
|
-
var i = s.length, mi = false, sh = 0;
|
982
|
-
while(--i >= 0) {
|
983
|
-
var x = (k==8)?s[i]&0xff:intAt(s,i);
|
984
|
-
if(x < 0) {
|
985
|
-
if(s.charAt(i) == "-") mi = true;
|
986
|
-
continue;
|
987
|
-
}
|
988
|
-
mi = false;
|
989
|
-
if(sh == 0)
|
990
|
-
this[this.t++] = x;
|
991
|
-
else if(sh+k > this.DB) {
|
992
|
-
this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<<sh;
|
993
|
-
this[this.t++] = (x>>(this.DB-sh));
|
994
|
-
}
|
995
|
-
else
|
996
|
-
this[this.t-1] |= x<<sh;
|
997
|
-
sh += k;
|
998
|
-
if(sh >= this.DB) sh -= this.DB;
|
999
|
-
}
|
1000
|
-
if(k == 8 && (s[0]&0x80) != 0) {
|
1001
|
-
this.s = -1;
|
1002
|
-
if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)<<sh;
|
1003
|
-
}
|
1004
|
-
this.clamp();
|
1005
|
-
if(mi) BigInteger.ZERO.subTo(this,this);
|
1006
|
-
}
|
1007
|
-
|
1008
|
-
// (protected) clamp off excess high words
|
1009
|
-
function bnpClamp() {
|
1010
|
-
var c = this.s&this.DM;
|
1011
|
-
while(this.t > 0 && this[this.t-1] == c) --this.t;
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
// (public) return string representation in given radix
|
1015
|
-
function bnToString(b) {
|
1016
|
-
if(this.s < 0) return "-"+this.negate().toString(b);
|
1017
|
-
var k;
|
1018
|
-
if(b == 16) k = 4;
|
1019
|
-
else if(b == 8) k = 3;
|
1020
|
-
else if(b == 2) k = 1;
|
1021
|
-
else if(b == 32) k = 5;
|
1022
|
-
else if(b == 4) k = 2;
|
1023
|
-
else return this.toRadix(b);
|
1024
|
-
var km = (1<<k)-1, d, m = false, r = "", i = this.t;
|
1025
|
-
var p = this.DB-(i*this.DB)%k;
|
1026
|
-
if(i-- > 0) {
|
1027
|
-
if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); }
|
1028
|
-
while(i >= 0) {
|
1029
|
-
if(p < k) {
|
1030
|
-
d = (this[i]&((1<<p)-1))<<(k-p);
|
1031
|
-
d |= this[--i]>>(p+=this.DB-k);
|
1032
|
-
}
|
1033
|
-
else {
|
1034
|
-
d = (this[i]>>(p-=k))&km;
|
1035
|
-
if(p <= 0) { p += this.DB; --i; }
|
1036
|
-
}
|
1037
|
-
if(d > 0) m = true;
|
1038
|
-
if(m) r += int2char(d);
|
1039
|
-
}
|
1040
|
-
}
|
1041
|
-
return m?r:"0";
|
1042
|
-
}
|
1043
|
-
|
1044
|
-
// (public) -this
|
1045
|
-
function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; }
|
1046
|
-
|
1047
|
-
// (public) |this|
|
1048
|
-
function bnAbs() { return (this.s<0)?this.negate():this; }
|
1049
|
-
|
1050
|
-
// (public) return + if this > a, - if this < a, 0 if equal
|
1051
|
-
function bnCompareTo(a) {
|
1052
|
-
var r = this.s-a.s;
|
1053
|
-
if(r != 0) return r;
|
1054
|
-
var i = this.t;
|
1055
|
-
r = i-a.t;
|
1056
|
-
if(r != 0) return (this.s<0)?-r:r;
|
1057
|
-
while(--i >= 0) if((r=this[i]-a[i]) != 0) return r;
|
1058
|
-
return 0;
|
1059
|
-
}
|
1060
|
-
|
1061
|
-
// returns bit length of the integer x
|
1062
|
-
function nbits(x) {
|
1063
|
-
var r = 1, t;
|
1064
|
-
if((t=x>>>16) != 0) { x = t; r += 16; }
|
1065
|
-
if((t=x>>8) != 0) { x = t; r += 8; }
|
1066
|
-
if((t=x>>4) != 0) { x = t; r += 4; }
|
1067
|
-
if((t=x>>2) != 0) { x = t; r += 2; }
|
1068
|
-
if((t=x>>1) != 0) { x = t; r += 1; }
|
1069
|
-
return r;
|
1070
|
-
}
|
1071
|
-
|
1072
|
-
// (public) return the number of bits in "this"
|
1073
|
-
function bnBitLength() {
|
1074
|
-
if(this.t <= 0) return 0;
|
1075
|
-
return this.DB*(this.t-1)+nbits(this[this.t-1]^(this.s&this.DM));
|
1076
|
-
}
|
1077
|
-
|
1078
|
-
// (protected) r = this << n*DB
|
1079
|
-
function bnpDLShiftTo(n,r) {
|
1080
|
-
var i;
|
1081
|
-
for(i = this.t-1; i >= 0; --i) r[i+n] = this[i];
|
1082
|
-
for(i = n-1; i >= 0; --i) r[i] = 0;
|
1083
|
-
r.t = this.t+n;
|
1084
|
-
r.s = this.s;
|
1085
|
-
}
|
1086
|
-
|
1087
|
-
// (protected) r = this >> n*DB
|
1088
|
-
function bnpDRShiftTo(n,r) {
|
1089
|
-
for(var i = n; i < this.t; ++i) r[i-n] = this[i];
|
1090
|
-
r.t = Math.max(this.t-n,0);
|
1091
|
-
r.s = this.s;
|
1092
|
-
}
|
1093
|
-
|
1094
|
-
// (protected) r = this << n
|
1095
|
-
function bnpLShiftTo(n,r) {
|
1096
|
-
var bs = n%this.DB;
|
1097
|
-
var cbs = this.DB-bs;
|
1098
|
-
var bm = (1<<cbs)-1;
|
1099
|
-
var ds = Math.floor(n/this.DB), c = (this.s<<bs)&this.DM, i;
|
1100
|
-
for(i = this.t-1; i >= 0; --i) {
|
1101
|
-
r[i+ds+1] = (this[i]>>cbs)|c;
|
1102
|
-
c = (this[i]&bm)<<bs;
|
1103
|
-
}
|
1104
|
-
for(i = ds-1; i >= 0; --i) r[i] = 0;
|
1105
|
-
r[ds] = c;
|
1106
|
-
r.t = this.t+ds+1;
|
1107
|
-
r.s = this.s;
|
1108
|
-
r.clamp();
|
1109
|
-
}
|
1110
|
-
|
1111
|
-
// (protected) r = this >> n
|
1112
|
-
function bnpRShiftTo(n,r) {
|
1113
|
-
r.s = this.s;
|
1114
|
-
var ds = Math.floor(n/this.DB);
|
1115
|
-
if(ds >= this.t) { r.t = 0; return; }
|
1116
|
-
var bs = n%this.DB;
|
1117
|
-
var cbs = this.DB-bs;
|
1118
|
-
var bm = (1<<bs)-1;
|
1119
|
-
r[0] = this[ds]>>bs;
|
1120
|
-
for(var i = ds+1; i < this.t; ++i) {
|
1121
|
-
r[i-ds-1] |= (this[i]&bm)<<cbs;
|
1122
|
-
r[i-ds] = this[i]>>bs;
|
1123
|
-
}
|
1124
|
-
if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<<cbs;
|
1125
|
-
r.t = this.t-ds;
|
1126
|
-
r.clamp();
|
1127
|
-
}
|
1128
|
-
|
1129
|
-
// (protected) r = this - a
|
1130
|
-
function bnpSubTo(a,r) {
|
1131
|
-
var i = 0, c = 0, m = Math.min(a.t,this.t);
|
1132
|
-
while(i < m) {
|
1133
|
-
c += this[i]-a[i];
|
1134
|
-
r[i++] = c&this.DM;
|
1135
|
-
c >>= this.DB;
|
1136
|
-
}
|
1137
|
-
if(a.t < this.t) {
|
1138
|
-
c -= a.s;
|
1139
|
-
while(i < this.t) {
|
1140
|
-
c += this[i];
|
1141
|
-
r[i++] = c&this.DM;
|
1142
|
-
c >>= this.DB;
|
1143
|
-
}
|
1144
|
-
c += this.s;
|
1145
|
-
}
|
1146
|
-
else {
|
1147
|
-
c += this.s;
|
1148
|
-
while(i < a.t) {
|
1149
|
-
c -= a[i];
|
1150
|
-
r[i++] = c&this.DM;
|
1151
|
-
c >>= this.DB;
|
1152
|
-
}
|
1153
|
-
c -= a.s;
|
1154
|
-
}
|
1155
|
-
r.s = (c<0)?-1:0;
|
1156
|
-
if(c < -1) r[i++] = this.DV+c;
|
1157
|
-
else if(c > 0) r[i++] = c;
|
1158
|
-
r.t = i;
|
1159
|
-
r.clamp();
|
1160
|
-
}
|
1161
|
-
|
1162
|
-
// (protected) r = this * a, r != this,a (HAC 14.12)
|
1163
|
-
// "this" should be the larger one if appropriate.
|
1164
|
-
function bnpMultiplyTo(a,r) {
|
1165
|
-
var x = this.abs(), y = a.abs();
|
1166
|
-
var i = x.t;
|
1167
|
-
r.t = i+y.t;
|
1168
|
-
while(--i >= 0) r[i] = 0;
|
1169
|
-
for(i = 0; i < y.t; ++i) r[i+x.t] = x.am(0,y[i],r,i,0,x.t);
|
1170
|
-
r.s = 0;
|
1171
|
-
r.clamp();
|
1172
|
-
if(this.s != a.s) BigInteger.ZERO.subTo(r,r);
|
1173
|
-
}
|
1174
|
-
|
1175
|
-
// (protected) r = this^2, r != this (HAC 14.16)
|
1176
|
-
function bnpSquareTo(r) {
|
1177
|
-
var x = this.abs();
|
1178
|
-
var i = r.t = 2*x.t;
|
1179
|
-
while(--i >= 0) r[i] = 0;
|
1180
|
-
for(i = 0; i < x.t-1; ++i) {
|
1181
|
-
var c = x.am(i,x[i],r,2*i,0,1);
|
1182
|
-
if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) {
|
1183
|
-
r[i+x.t] -= x.DV;
|
1184
|
-
r[i+x.t+1] = 1;
|
1185
|
-
}
|
1186
|
-
}
|
1187
|
-
if(r.t > 0) r[r.t-1] += x.am(i,x[i],r,2*i,0,1);
|
1188
|
-
r.s = 0;
|
1189
|
-
r.clamp();
|
1190
|
-
}
|
1191
|
-
|
1192
|
-
// (protected) divide this by m, quotient and remainder to q, r (HAC 14.20)
|
1193
|
-
// r != q, this != m. q or r may be null.
|
1194
|
-
function bnpDivRemTo(m,q,r) {
|
1195
|
-
var pm = m.abs();
|
1196
|
-
if(pm.t <= 0) return;
|
1197
|
-
var pt = this.abs();
|
1198
|
-
if(pt.t < pm.t) {
|
1199
|
-
if(q != null) q.fromInt(0);
|
1200
|
-
if(r != null) this.copyTo(r);
|
1201
|
-
return;
|
1202
|
-
}
|
1203
|
-
if(r == null) r = nbi();
|
1204
|
-
var y = nbi(), ts = this.s, ms = m.s;
|
1205
|
-
var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus
|
1206
|
-
if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); }
|
1207
|
-
else { pm.copyTo(y); pt.copyTo(r); }
|
1208
|
-
var ys = y.t;
|
1209
|
-
var y0 = y[ys-1];
|
1210
|
-
if(y0 == 0) return;
|
1211
|
-
var yt = y0*(1<<this.F1)+((ys>1)?y[ys-2]>>this.F2:0);
|
1212
|
-
var d1 = this.FV/yt, d2 = (1<<this.F1)/yt, e = 1<<this.F2;
|
1213
|
-
var i = r.t, j = i-ys, t = (q==null)?nbi():q;
|
1214
|
-
y.dlShiftTo(j,t);
|
1215
|
-
if(r.compareTo(t) >= 0) {
|
1216
|
-
r[r.t++] = 1;
|
1217
|
-
r.subTo(t,r);
|
1218
|
-
}
|
1219
|
-
BigInteger.ONE.dlShiftTo(ys,t);
|
1220
|
-
t.subTo(y,y); // "negative" y so we can replace sub with am later
|
1221
|
-
while(y.t < ys) y[y.t++] = 0;
|
1222
|
-
while(--j >= 0) {
|
1223
|
-
// Estimate quotient digit
|
1224
|
-
var qd = (r[--i]==y0)?this.DM:Math.floor(r[i]*d1+(r[i-1]+e)*d2);
|
1225
|
-
if((r[i]+=y.am(0,qd,r,j,0,ys)) < qd) { // Try it out
|
1226
|
-
y.dlShiftTo(j,t);
|
1227
|
-
r.subTo(t,r);
|
1228
|
-
while(r[i] < --qd) r.subTo(t,r);
|
1229
|
-
}
|
1230
|
-
}
|
1231
|
-
if(q != null) {
|
1232
|
-
r.drShiftTo(ys,q);
|
1233
|
-
if(ts != ms) BigInteger.ZERO.subTo(q,q);
|
1234
|
-
}
|
1235
|
-
r.t = ys;
|
1236
|
-
r.clamp();
|
1237
|
-
if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder
|
1238
|
-
if(ts < 0) BigInteger.ZERO.subTo(r,r);
|
1239
|
-
}
|
1240
|
-
|
1241
|
-
// (public) this mod a
|
1242
|
-
function bnMod(a) {
|
1243
|
-
var r = nbi();
|
1244
|
-
this.abs().divRemTo(a,null,r);
|
1245
|
-
if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r);
|
1246
|
-
return r;
|
1247
|
-
}
|
1248
|
-
|
1249
|
-
// Modular reduction using "classic" algorithm
|
1250
|
-
function Classic(m) { this.m = m; }
|
1251
|
-
function cConvert(x) {
|
1252
|
-
if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m);
|
1253
|
-
else return x;
|
1254
|
-
}
|
1255
|
-
function cRevert(x) { return x; }
|
1256
|
-
function cReduce(x) { x.divRemTo(this.m,null,x); }
|
1257
|
-
function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); }
|
1258
|
-
function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); }
|
1259
|
-
|
1260
|
-
Classic.prototype.convert = cConvert;
|
1261
|
-
Classic.prototype.revert = cRevert;
|
1262
|
-
Classic.prototype.reduce = cReduce;
|
1263
|
-
Classic.prototype.mulTo = cMulTo;
|
1264
|
-
Classic.prototype.sqrTo = cSqrTo;
|
1265
|
-
|
1266
|
-
// (protected) return "-1/this % 2^DB"; useful for Mont. reduction
|
1267
|
-
// justification:
|
1268
|
-
// xy == 1 (mod m)
|
1269
|
-
// xy = 1+km
|
1270
|
-
// xy(2-xy) = (1+km)(1-km)
|
1271
|
-
// x[y(2-xy)] = 1-k^2m^2
|
1272
|
-
// x[y(2-xy)] == 1 (mod m^2)
|
1273
|
-
// if y is 1/x mod m, then y(2-xy) is 1/x mod m^2
|
1274
|
-
// should reduce x and y(2-xy) by m^2 at each step to keep size bounded.
|
1275
|
-
// JS multiply "overflows" differently from C/C++, so care is needed here.
|
1276
|
-
function bnpInvDigit() {
|
1277
|
-
if(this.t < 1) return 0;
|
1278
|
-
var x = this[0];
|
1279
|
-
if((x&1) == 0) return 0;
|
1280
|
-
var y = x&3; // y == 1/x mod 2^2
|
1281
|
-
y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4
|
1282
|
-
y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8
|
1283
|
-
y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16
|
1284
|
-
// last step - calculate inverse mod DV directly;
|
1285
|
-
// assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints
|
1286
|
-
y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits
|
1287
|
-
// we really want the negative inverse, and -DV < y < DV
|
1288
|
-
return (y>0)?this.DV-y:-y;
|
1289
|
-
}
|
1290
|
-
|
1291
|
-
// Montgomery reduction
|
1292
|
-
function Montgomery(m) {
|
1293
|
-
this.m = m;
|
1294
|
-
this.mp = m.invDigit();
|
1295
|
-
this.mpl = this.mp&0x7fff;
|
1296
|
-
this.mph = this.mp>>15;
|
1297
|
-
this.um = (1<<(m.DB-15))-1;
|
1298
|
-
this.mt2 = 2*m.t;
|
1299
|
-
}
|
1300
|
-
|
1301
|
-
// xR mod m
|
1302
|
-
function montConvert(x) {
|
1303
|
-
var r = nbi();
|
1304
|
-
x.abs().dlShiftTo(this.m.t,r);
|
1305
|
-
r.divRemTo(this.m,null,r);
|
1306
|
-
if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r);
|
1307
|
-
return r;
|
1308
|
-
}
|
1309
|
-
|
1310
|
-
// x/R mod m
|
1311
|
-
function montRevert(x) {
|
1312
|
-
var r = nbi();
|
1313
|
-
x.copyTo(r);
|
1314
|
-
this.reduce(r);
|
1315
|
-
return r;
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
// x = x/R mod m (HAC 14.32)
|
1319
|
-
function montReduce(x) {
|
1320
|
-
while(x.t <= this.mt2) // pad x so am has enough room later
|
1321
|
-
x[x.t++] = 0;
|
1322
|
-
for(var i = 0; i < this.m.t; ++i) {
|
1323
|
-
// faster way of calculating u0 = x[i]*mp mod DV
|
1324
|
-
var j = x[i]&0x7fff;
|
1325
|
-
var u0 = (j*this.mpl+(((j*this.mph+(x[i]>>15)*this.mpl)&this.um)<<15))&x.DM;
|
1326
|
-
// use am to combine the multiply-shift-add into one call
|
1327
|
-
j = i+this.m.t;
|
1328
|
-
x[j] += this.m.am(0,u0,x,i,0,this.m.t);
|
1329
|
-
// propagate carry
|
1330
|
-
while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; }
|
1331
|
-
}
|
1332
|
-
x.clamp();
|
1333
|
-
x.drShiftTo(this.m.t,x);
|
1334
|
-
if(x.compareTo(this.m) >= 0) x.subTo(this.m,x);
|
1335
|
-
}
|
1336
|
-
|
1337
|
-
// r = "x^2/R mod m"; x != r
|
1338
|
-
function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); }
|
1339
|
-
|
1340
|
-
// r = "xy/R mod m"; x,y != r
|
1341
|
-
function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); }
|
1342
|
-
|
1343
|
-
Montgomery.prototype.convert = montConvert;
|
1344
|
-
Montgomery.prototype.revert = montRevert;
|
1345
|
-
Montgomery.prototype.reduce = montReduce;
|
1346
|
-
Montgomery.prototype.mulTo = montMulTo;
|
1347
|
-
Montgomery.prototype.sqrTo = montSqrTo;
|
1348
|
-
|
1349
|
-
// (protected) true iff this is even
|
1350
|
-
function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; }
|
1351
|
-
|
1352
|
-
// (protected) this^e, e < 2^32, doing sqr and mul with "r" (HAC 14.79)
|
1353
|
-
function bnpExp(e,z) {
|
1354
|
-
if(e > 0xffffffff || e < 1) return BigInteger.ONE;
|
1355
|
-
var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1;
|
1356
|
-
g.copyTo(r);
|
1357
|
-
while(--i >= 0) {
|
1358
|
-
z.sqrTo(r,r2);
|
1359
|
-
if((e&(1<<i)) > 0) z.mulTo(r2,g,r);
|
1360
|
-
else { var t = r; r = r2; r2 = t; }
|
1361
|
-
}
|
1362
|
-
return z.revert(r);
|
1363
|
-
}
|
1364
|
-
|
1365
|
-
// (public) this^e % m, 0 <= e < 2^32
|
1366
|
-
function bnModPowInt(e,m) {
|
1367
|
-
var z;
|
1368
|
-
if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m);
|
1369
|
-
return this.exp(e,z);
|
1370
|
-
}
|
1371
|
-
|
1372
|
-
// protected
|
1373
|
-
BigInteger.prototype.copyTo = bnpCopyTo;
|
1374
|
-
BigInteger.prototype.fromInt = bnpFromInt;
|
1375
|
-
BigInteger.prototype.fromString = bnpFromString;
|
1376
|
-
BigInteger.prototype.clamp = bnpClamp;
|
1377
|
-
BigInteger.prototype.dlShiftTo = bnpDLShiftTo;
|
1378
|
-
BigInteger.prototype.drShiftTo = bnpDRShiftTo;
|
1379
|
-
BigInteger.prototype.lShiftTo = bnpLShiftTo;
|
1380
|
-
BigInteger.prototype.rShiftTo = bnpRShiftTo;
|
1381
|
-
BigInteger.prototype.subTo = bnpSubTo;
|
1382
|
-
BigInteger.prototype.multiplyTo = bnpMultiplyTo;
|
1383
|
-
BigInteger.prototype.squareTo = bnpSquareTo;
|
1384
|
-
BigInteger.prototype.divRemTo = bnpDivRemTo;
|
1385
|
-
BigInteger.prototype.invDigit = bnpInvDigit;
|
1386
|
-
BigInteger.prototype.isEven = bnpIsEven;
|
1387
|
-
BigInteger.prototype.exp = bnpExp;
|
1388
|
-
|
1389
|
-
// public
|
1390
|
-
BigInteger.prototype.toString = bnToString;
|
1391
|
-
BigInteger.prototype.negate = bnNegate;
|
1392
|
-
BigInteger.prototype.abs = bnAbs;
|
1393
|
-
BigInteger.prototype.compareTo = bnCompareTo;
|
1394
|
-
BigInteger.prototype.bitLength = bnBitLength;
|
1395
|
-
BigInteger.prototype.mod = bnMod;
|
1396
|
-
BigInteger.prototype.modPowInt = bnModPowInt;
|
1397
|
-
|
1398
|
-
// "constants"
|
1399
|
-
BigInteger.ZERO = nbv(0);
|
1400
|
-
BigInteger.ONE = nbv(1);
|
1401
|
-
|
1402
|
-
// jsbn2 stuff
|
1403
|
-
|
1404
|
-
// (protected) convert from radix string
|
1405
|
-
function bnpFromRadix(s,b) {
|
1406
|
-
this.fromInt(0);
|
1407
|
-
if(b == null) b = 10;
|
1408
|
-
var cs = this.chunkSize(b);
|
1409
|
-
var d = Math.pow(b,cs), mi = false, j = 0, w = 0;
|
1410
|
-
for(var i = 0; i < s.length; ++i) {
|
1411
|
-
var x = intAt(s,i);
|
1412
|
-
if(x < 0) {
|
1413
|
-
if(s.charAt(i) == "-" && this.signum() == 0) mi = true;
|
1414
|
-
continue;
|
1415
|
-
}
|
1416
|
-
w = b*w+x;
|
1417
|
-
if(++j >= cs) {
|
1418
|
-
this.dMultiply(d);
|
1419
|
-
this.dAddOffset(w,0);
|
1420
|
-
j = 0;
|
1421
|
-
w = 0;
|
1422
|
-
}
|
1423
|
-
}
|
1424
|
-
if(j > 0) {
|
1425
|
-
this.dMultiply(Math.pow(b,j));
|
1426
|
-
this.dAddOffset(w,0);
|
1427
|
-
}
|
1428
|
-
if(mi) BigInteger.ZERO.subTo(this,this);
|
1429
|
-
}
|
1430
|
-
|
1431
|
-
// (protected) return x s.t. r^x < DV
|
1432
|
-
function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); }
|
1433
|
-
|
1434
|
-
// (public) 0 if this == 0, 1 if this > 0
|
1435
|
-
function bnSigNum() {
|
1436
|
-
if(this.s < 0) return -1;
|
1437
|
-
else if(this.t <= 0 || (this.t == 1 && this[0] <= 0)) return 0;
|
1438
|
-
else return 1;
|
1439
|
-
}
|
1440
|
-
|
1441
|
-
// (protected) this *= n, this >= 0, 1 < n < DV
|
1442
|
-
function bnpDMultiply(n) {
|
1443
|
-
this[this.t] = this.am(0,n-1,this,0,0,this.t);
|
1444
|
-
++this.t;
|
1445
|
-
this.clamp();
|
1446
|
-
}
|
1447
|
-
|
1448
|
-
// (protected) this += n << w words, this >= 0
|
1449
|
-
function bnpDAddOffset(n,w) {
|
1450
|
-
if(n == 0) return;
|
1451
|
-
while(this.t <= w) this[this.t++] = 0;
|
1452
|
-
this[w] += n;
|
1453
|
-
while(this[w] >= this.DV) {
|
1454
|
-
this[w] -= this.DV;
|
1455
|
-
if(++w >= this.t) this[this.t++] = 0;
|
1456
|
-
++this[w];
|
1457
|
-
}
|
1458
|
-
}
|
1459
|
-
|
1460
|
-
// (protected) convert to radix string
|
1461
|
-
function bnpToRadix(b) {
|
1462
|
-
if(b == null) b = 10;
|
1463
|
-
if(this.signum() == 0 || b < 2 || b > 36) return "0";
|
1464
|
-
var cs = this.chunkSize(b);
|
1465
|
-
var a = Math.pow(b,cs);
|
1466
|
-
var d = nbv(a), y = nbi(), z = nbi(), r = "";
|
1467
|
-
this.divRemTo(d,y,z);
|
1468
|
-
while(y.signum() > 0) {
|
1469
|
-
r = (a+z.intValue()).toString(b).substr(1) + r;
|
1470
|
-
y.divRemTo(d,y,z);
|
1471
|
-
}
|
1472
|
-
return z.intValue().toString(b) + r;
|
1473
|
-
}
|
1474
|
-
|
1475
|
-
// (public) return value as integer
|
1476
|
-
function bnIntValue() {
|
1477
|
-
if(this.s < 0) {
|
1478
|
-
if(this.t == 1) return this[0]-this.DV;
|
1479
|
-
else if(this.t == 0) return -1;
|
1480
|
-
}
|
1481
|
-
else if(this.t == 1) return this[0];
|
1482
|
-
else if(this.t == 0) return 0;
|
1483
|
-
// assumes 16 < DB < 32
|
1484
|
-
return ((this[1]&((1<<(32-this.DB))-1))<<this.DB)|this[0];
|
1485
|
-
}
|
1486
|
-
|
1487
|
-
// (protected) r = this + a
|
1488
|
-
function bnpAddTo(a,r) {
|
1489
|
-
var i = 0, c = 0, m = Math.min(a.t,this.t);
|
1490
|
-
while(i < m) {
|
1491
|
-
c += this[i]+a[i];
|
1492
|
-
r[i++] = c&this.DM;
|
1493
|
-
c >>= this.DB;
|
1494
|
-
}
|
1495
|
-
if(a.t < this.t) {
|
1496
|
-
c += a.s;
|
1497
|
-
while(i < this.t) {
|
1498
|
-
c += this[i];
|
1499
|
-
r[i++] = c&this.DM;
|
1500
|
-
c >>= this.DB;
|
1501
|
-
}
|
1502
|
-
c += this.s;
|
1503
|
-
}
|
1504
|
-
else {
|
1505
|
-
c += this.s;
|
1506
|
-
while(i < a.t) {
|
1507
|
-
c += a[i];
|
1508
|
-
r[i++] = c&this.DM;
|
1509
|
-
c >>= this.DB;
|
1510
|
-
}
|
1511
|
-
c += a.s;
|
1512
|
-
}
|
1513
|
-
r.s = (c<0)?-1:0;
|
1514
|
-
if(c > 0) r[i++] = c;
|
1515
|
-
else if(c < -1) r[i++] = this.DV+c;
|
1516
|
-
r.t = i;
|
1517
|
-
r.clamp();
|
1518
|
-
}
|
1519
|
-
|
1520
|
-
BigInteger.prototype.fromRadix = bnpFromRadix;
|
1521
|
-
BigInteger.prototype.chunkSize = bnpChunkSize;
|
1522
|
-
BigInteger.prototype.signum = bnSigNum;
|
1523
|
-
BigInteger.prototype.dMultiply = bnpDMultiply;
|
1524
|
-
BigInteger.prototype.dAddOffset = bnpDAddOffset;
|
1525
|
-
BigInteger.prototype.toRadix = bnpToRadix;
|
1526
|
-
BigInteger.prototype.intValue = bnIntValue;
|
1527
|
-
BigInteger.prototype.addTo = bnpAddTo;
|
1528
|
-
|
1529
|
-
//======= end jsbn =======
|
1530
|
-
|
1531
|
-
// Emscripten wrapper
|
1532
|
-
var Wrapper = {
|
1533
|
-
abs: function(l, h) {
|
1534
|
-
var x = new goog.math.Long(l, h);
|
1535
|
-
var ret;
|
1536
|
-
if (x.isNegative()) {
|
1537
|
-
ret = x.negate();
|
1538
|
-
} else {
|
1539
|
-
ret = x;
|
1540
|
-
}
|
1541
|
-
HEAP32[tempDoublePtr>>2] = ret.low_;
|
1542
|
-
HEAP32[tempDoublePtr+4>>2] = ret.high_;
|
1543
|
-
},
|
1544
|
-
ensureTemps: function() {
|
1545
|
-
if (Wrapper.ensuredTemps) return;
|
1546
|
-
Wrapper.ensuredTemps = true;
|
1547
|
-
Wrapper.two32 = new BigInteger();
|
1548
|
-
Wrapper.two32.fromString('4294967296', 10);
|
1549
|
-
Wrapper.two64 = new BigInteger();
|
1550
|
-
Wrapper.two64.fromString('18446744073709551616', 10);
|
1551
|
-
Wrapper.temp1 = new BigInteger();
|
1552
|
-
Wrapper.temp2 = new BigInteger();
|
1553
|
-
},
|
1554
|
-
lh2bignum: function(l, h) {
|
1555
|
-
var a = new BigInteger();
|
1556
|
-
a.fromString(h.toString(), 10);
|
1557
|
-
var b = new BigInteger();
|
1558
|
-
a.multiplyTo(Wrapper.two32, b);
|
1559
|
-
var c = new BigInteger();
|
1560
|
-
c.fromString(l.toString(), 10);
|
1561
|
-
var d = new BigInteger();
|
1562
|
-
c.addTo(b, d);
|
1563
|
-
return d;
|
1564
|
-
},
|
1565
|
-
stringify: function(l, h, unsigned) {
|
1566
|
-
var ret = new goog.math.Long(l, h).toString();
|
1567
|
-
if (unsigned && ret[0] == '-') {
|
1568
|
-
// unsign slowly using jsbn bignums
|
1569
|
-
Wrapper.ensureTemps();
|
1570
|
-
var bignum = new BigInteger();
|
1571
|
-
bignum.fromString(ret, 10);
|
1572
|
-
ret = new BigInteger();
|
1573
|
-
Wrapper.two64.addTo(bignum, ret);
|
1574
|
-
ret = ret.toString(10);
|
1575
|
-
}
|
1576
|
-
return ret;
|
1577
|
-
},
|
1578
|
-
fromString: function(str, base, min, max, unsigned) {
|
1579
|
-
Wrapper.ensureTemps();
|
1580
|
-
var bignum = new BigInteger();
|
1581
|
-
bignum.fromString(str, base);
|
1582
|
-
var bigmin = new BigInteger();
|
1583
|
-
bigmin.fromString(min, 10);
|
1584
|
-
var bigmax = new BigInteger();
|
1585
|
-
bigmax.fromString(max, 10);
|
1586
|
-
if (unsigned && bignum.compareTo(BigInteger.ZERO) < 0) {
|
1587
|
-
var temp = new BigInteger();
|
1588
|
-
bignum.addTo(Wrapper.two64, temp);
|
1589
|
-
bignum = temp;
|
1590
|
-
}
|
1591
|
-
var error = false;
|
1592
|
-
if (bignum.compareTo(bigmin) < 0) {
|
1593
|
-
bignum = bigmin;
|
1594
|
-
error = true;
|
1595
|
-
} else if (bignum.compareTo(bigmax) > 0) {
|
1596
|
-
bignum = bigmax;
|
1597
|
-
error = true;
|
1598
|
-
}
|
1599
|
-
var ret = goog.math.Long.fromString(bignum.toString()); // min-max checks should have clamped this to a range goog.math.Long can handle well
|
1600
|
-
HEAP32[tempDoublePtr>>2] = ret.low_;
|
1601
|
-
HEAP32[tempDoublePtr+4>>2] = ret.high_;
|
1602
|
-
if (error) throw 'range error';
|
1603
|
-
}
|
1604
|
-
};
|
1605
|
-
return Wrapper;
|
1606
|
-
})();
|
1607
|
-
|
1608
|
-
//======= end closure i64 code =======
|
1609
|
-
|