1. 4848d6f Merge pull request #296 from juj/no_cmake_multigenerator_subdirectories by Alon Zakai · 9 years ago version_6
  2. 9b79d4c Merge pull request #297 from WebAssembly/frist_wasm_backend_full_test by Alon Zakai · 9 years ago
  3. 5727544 add testing for vanilla llvm + emcc without the hacks, as things are now starting to work, and add a full/real hello world testcase by Alon Zakai · 9 years ago
  4. bb124a9 avoid hardcoded function pointer addresses in indirect_call.cpp test by Alon Zakai · 9 years ago
  5. d984d25 fix wasm.js loads of aligned i64s by Alon Zakai · 9 years ago
  6. 84bb319 update emscripten submodule by Alon Zakai · 9 years ago
  7. acf1273 we export memory properly now, no need in spidermonkify.py by Alon Zakai · 9 years ago
  8. 94e6dba update wasm.js by Alon Zakai · 9 years ago
  9. 2922691 fix wasm.js loads of i64 that read <8 bytes by Alon Zakai · 9 years ago
  10. 9dbec27 Suppress CMake from generating Debug/, Release/ etc. subdirectories under bin/ and lib/ output directories when building with a CMake multigenerator like Visual Studio or Xcode. by Jukka Jylänki · 9 years ago
  11. cb71620 Merge pull request #295 from tzik/grow_memory_fix by Alon Zakai · 9 years ago version_5
  12. 915089d Merge pull request #293 from WebAssembly/fixes by Alon Zakai · 9 years ago
  13. a3626f9 Fix grow_memory translation on s2wasm by tzik · 9 years ago
  14. da01ed7 add explicit function types for indirect call targtets in s2wasm by Alon Zakai · 9 years ago
  15. 4e71858 use ensureFunctionType in s2wasm, to ensure consistent function type names by Alon Zakai · 9 years ago
  16. 1604b4b Merge pull request #291 from WebAssembly/updates by Alon Zakai · 9 years ago version_4
  17. 62db86d update emscripten submodule by Alon Zakai · 9 years ago
  18. 9a9d5cd update emscripten submodule by Alon Zakai · 9 years ago
  19. 43ceb03 avoid alignof for the sake of vs by Alon Zakai · 9 years ago
  20. 9a9cf23 Merge pull request #289 from WebAssembly/minor-fix by JF Bastien · 9 years ago
  21. 9c54974 Use local enum. by JF Bastien · 9 years ago
  22. 137f114 Use static const, and init in-line by JF Bastien · 9 years ago
  23. baac207 Merge pull request #288 from WebAssembly/more-vs-fixes by Alon Zakai · 9 years ago version_3
  24. ecca6d3 avoid constexpr since visual studio doesn't like it by Alon Zakai · 9 years ago
  25. fb0d950 Merge pull request #287 from WebAssembly/vs2015_fixes by Alon Zakai · 9 years ago version_2
  26. 5cc2c21 streampos may be signed on some platforms by Alon Zakai · 9 years ago
  27. 5c1d36f Merge branch 'vs2015_fixes' of https://github.com/juj/binaryen into vs2015_fixes by Alon Zakai · 9 years ago
  28. 97972db Merge pull request #285 from WebAssembly/safety-first by Alon Zakai · 9 years ago
  29. 1a09f6d use strncpy #283 by Alon Zakai · 9 years ago
  30. 68e15c4 Merge pull request #284 from WebAssembly/tighten-safe-int by Alon Zakai · 9 years ago
  31. e34634c Tighten safe integer by JF Bastien · 9 years ago
  32. cefb6b6 Add missing <cctype> include. by Jukka Jylänki · 9 years ago
  33. 246c589 Use std::numeric_limits<uint32_t>::max() instead of 0xFFFFFFFF. by Jukka Jylänki · 9 years ago
  34. 4b01979 Clean up unused variables warnings: by Jukka Jylänki · 9 years ago
  35. 6f2d0dc Cleanup redundant '> 0' check in src\binaryen-shell.cpp(251): warning C4804: '>': unsafe use of type 'bool' in operation by Jukka Jylänki · 9 years ago
  36. c685cc4 Clean up truncating cast warnings: by Jukka Jylänki · 9 years ago
  37. 6f7f028 Clean up src\wasm-interpreter.h(644): warning C4244: 'initializing': conversion from 'double' to 'int64_t', possible loss of data. by Jukka Jylänki · 9 years ago
  38. bce9c63 Clean up src\wasm-interpreter.h(307): warning C4244: 'argument': conversion from 'int64_t' to 'unsigned int', possible loss of data by Jukka Jylänki · 9 years ago
  39. a471455 Clean up src\wasm-interpreter.h(286): warning C4800: 'int64_t': forcing value to bool 'true' or 'false' (performance warning) by Jukka Jylänki · 9 years ago
  40. a6c00e1 Also clean up Visual Studio build warning in wasm::toSInteger32 for double->int32_t cast. by Jukka Jylänki · 9 years ago
  41. 5340abb Clean up build warning C4244: 'return': conversion from 'double' to 'uint32_t', possible loss of data in src\support\safe_integer.cpp(40). by Jukka Jylänki · 9 years ago
  42. 9da4e6e Fix wasm::read_file() to abort if input file is too big to read in when building a 32-bit executable and size_t is not 64-bit. by Jukka Jylänki · 9 years ago
  43. ef0d9f6 Clean unsigned long long -> size_t assignment build warnings on Visual Studio 2015. by Jukka Jylänki · 9 years ago
  44. 6dabb50 Avoid the use of CRT pow(2, n) function to generate integer bit patterns, since pow() returns a double. Cleans VS build warnings C4244: '=': conversion from 'double' to 'size_t', possible loss of data. by Jukka Jylänki · 9 years ago
  45. 432163d Clean Visual Studio build warning C4800: 'int64_t': forcing value to bool 'true' or 'false' (performance warning). by Jukka Jylänki · 9 years ago
  46. f5446df Ignore Visual Studio compiler "warning C4146: unary minus operator applied to unsigned type, result still unsigned", this is used commonly in bit manipulation. by Jukka Jylänki · 9 years ago
  47. 85f814e Fix function trapIfGt() to operate on 64-bit integers even when building a 32-bit executable. by Jukka Jylänki · 9 years ago
  48. 77b998f Hide Visual Studio build warning on casting 64-bit int to 32-bit when we know it is safe to do so. by Jukka Jylänki · 9 years ago
  49. 1c915b8 Visual Studio 2015 no longer has the /arch:SSE2 compiler flag, so only pass it for VS2013 and older. by Jukka Jylänki · 9 years ago
  50. b8d01b4 Merge pull request #282 from WebAssembly/safe-int-fixes by Alon Zakai · 9 years ago
  51. c9ebb2e remove bogus asserts from safe_integer casts by Alon Zakai · 9 years ago
  52. 696c76c Remove /Wall warning level when building with Visual Studio. It is counterproductive since it spams thousands of warnings from Visual Studio runtime headers themselves. by Jukka Jylänki · 9 years ago
  53. cb4322e Merge pull request #276 from WebAssembly/spec-update by Alon Zakai · 9 years ago version_1
  54. b0d4599 update spec tests, and new memory page size usage by Alon Zakai · 9 years ago
  55. cbbdaf7 if Module.asm is already set, use that by Alon Zakai · 9 years ago
  56. 1ad605a note when we are using wasm by Alon Zakai · 9 years ago
  57. 359c895 Merge pull request #275 from WebAssembly/closure-fix by Alon Zakai · 9 years ago
  58. 85959a4 update wasm.js by Alon Zakai · 9 years ago
  59. 10159a8 add function stack printing in interpreter by Alon Zakai · 9 years ago
  60. 4967e68 quote strings for closure compiler by Alon Zakai · 9 years ago
  61. a67434f Merge pull request #274 from WebAssembly/rotr-s2wasm by Derek Schuff · 9 years ago
  62. 6ae3a45 Update LLVM tests and waterfall to 4425 by Derek Schuff · 9 years ago
  63. 9a4d9f5 Add rotate support to s2wasm by Derek Schuff · 9 years ago
  64. c5a6210 Merge pull request #251 from mbebenita/opt-wasm-as by Alon Zakai · 9 years ago
  65. b4c0c71 Flip condition. by Michael Bebenita · 9 years ago
  66. 468e0dd Merge pull request #273 from WebAssembly/memory-growth by Alon Zakai · 9 years ago
  67. 3cde7ac add memory growth testcase by Alon Zakai · 9 years ago
  68. 98106a0 fix memory growth #270 by Alon Zakai · 9 years ago
  69. 94bf9d1 Merge pull request #272 from WebAssembly/asm2wasm-fix by Alon Zakai · 9 years ago
  70. 49a5fed update wasm.js by Alon Zakai · 9 years ago
  71. 996416c only reuse nameless blocks in blockify in asm2wasm - if they are named, they can be broken out of, which is bad for our loop constructs by Alon Zakai · 9 years ago
  72. 12a5d97 add an option to not optimize in asm2wasm by Alon Zakai · 9 years ago
  73. 232327c Remove useless forward by Derek Schuff · 9 years ago
  74. 59f3f63 Merge pull request #269 from WebAssembly/update-wasm-js by Alon Zakai · 9 years ago
  75. bfe7270 make --debug work by Alon Zakai · 9 years ago
  76. 8782986 update wasm.js by Alon Zakai · 9 years ago
  77. c46ef09 Merge pull request #268 from WebAssembly/eqz-type by Alon Zakai · 9 years ago
  78. 18ac67a Support --initial-size and --max-size to specify linear memory size by Derek Schuff · 9 years ago
  79. 83a7310 update emscripten submodule by Alon Zakai · 9 years ago
  80. b2489b8 Make type of EqZ unary operators always i32 by Derek Schuff · 9 years ago
  81. c34ed22 Merge pull request #267 from WebAssembly/asm2wasm-eqz by Alon Zakai · 9 years ago
  82. 7c6be8c use eqz in asm2wasm by Alon Zakai · 9 years ago
  83. ff45fb3 Merge pull request #266 from WebAssembly/growth by Alon Zakai · 9 years ago
  84. 3dd7f17 add memory growth asm2wasm test by Alon Zakai · 9 years ago
  85. c4c132b fix unit testcase by Alon Zakai · 9 years ago
  86. 3437e88 special case the asm.js memory growth function by Alon Zakai · 9 years ago
  87. c733dd2 use binary_format_check on asm2wasm outputs by Alon Zakai · 9 years ago
  88. b3f029d Merge pull request #265 from WebAssembly/asm2wasm-opts by Alon Zakai · 9 years ago
  89. c67c3b8 update emscripten by Alon Zakai · 9 years ago
  90. da80a33 add option for imprecise asm2wasm opts by Alon Zakai · 9 years ago
  91. 2fc279e fix float to int trap text by Alon Zakai · 9 years ago
  92. d802638 Merge pull request #261 from WebAssembly/eqz by Alon Zakai · 9 years ago
  93. ff79247 update wasm.js by Alon Zakai · 9 years ago
  94. eb13527 update spec tests and support eqz by Alon Zakai · 9 years ago
  95. c8faff5 improve docs by Alon Zakai · 9 years ago
  96. ae4d2f0 readme update by Alon Zakai · 9 years ago
  97. abc902c Merge pull request #255 from WebAssembly/leb-fixes by Alon Zakai · 9 years ago
  98. 45d4cb7 update wasm.js by Alon Zakai · 9 years ago
  99. 9d2ba77 proper signed LEB by Alon Zakai · 9 years ago
  100. c10391b Merge pull request #258 from WebAssembly/jfbastien-patch-1 by Alon Zakai · 9 years ago