https://github.com/kripken/emscripten

sort by:
Revision Author Date Message Commit Date
c7a91c4 cleanup 25 July 2013, 03:37:41 UTC
7ae3a4b fix whitespace 25 July 2013, 03:34:44 UTC
482e5d0 Relocate GL procs so that they can be implemented in C but the library version still be accessed through a function pointer, and always expose symbols through egl/glGetProcAddress even if GL emulation is disabled. 25 July 2013, 03:31:00 UTC
86a7a94 add primitive support for touch events to SDL 25 July 2013, 03:31:00 UTC
9aa1c31 flatten if chains in outliner, and be more careful to avoid outlining through an outline call 25 July 2013, 03:06:54 UTC
d1bf010 fix EXPORT_ALL in asm mode 24 July 2013, 22:23:30 UTC
5dce7ff Merge pull request #1428 from juj/gl_num_compressed_formats Implement glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS). 24 July 2013, 21:25:36 UTC
3733841 Merge pull request #1386 from michaeljbishop/sdl_rwops Add support for `SDL_RWFromConstMem()` for .ogg files. 24 July 2013, 21:21:45 UTC
3fba5db link to file packaging docs 24 July 2013, 20:53:37 UTC
6b819b6 do invoke_* on LLVM invokes using function pointers; fixes #1423 24 July 2013, 20:39:25 UTC
e6e2249 Merge pull request #1394 from inolen/stat_tests added lchmod, new tests, fixed for mknod return values 24 July 2013, 18:44:53 UTC
f4cff48 properly handle loads of i24s and similar illegal values 24 July 2013, 17:22:38 UTC
099f970 properly handle generation of instances of structures ending in [0 x ..] 24 July 2013, 03:26:44 UTC
eb9e6cb better error message 24 July 2013, 01:12:29 UTC
ef6c5c2 fix test_sscanf_6, which was reading uninitialized memory 24 July 2013, 01:11:35 UTC
34e2dfe fix scanString hardcoded HEAP32 reference 24 July 2013, 01:08:17 UTC
1ce927b do not outline through an outline call 24 July 2013, 00:29:02 UTC
61e16a2 fix test_glgetattachedshaders 23 July 2013, 23:54:25 UTC
233270d Merge branch 'master' of github.com:ToadKing/emscripten into incoming 23 July 2013, 23:51:50 UTC
c101558 Implement glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS). 23 July 2013, 23:02:15 UTC
8989e12 update test 23 July 2013, 22:29:27 UTC
fe6cf45 use a separate stack location for control variable information for each outlined function, to avoid problems when outlining right through the support code for a previous outlining 23 July 2013, 21:36:51 UTC
95cde8a fix Math.imul closuring 23 July 2013, 21:07:31 UTC
b68e1f8 fix test_files* after the changes to stderr 23 July 2013, 19:29:22 UTC
2980ce7 fix structure size when it has a [0 x ..] at the end - that should add nothing 23 July 2013, 19:18:02 UTC
63dec7d change error message to assert add testcase for glGetAttachedShaders 22 July 2013, 23:15:43 UTC
3fcbc44 clean up outlinings limit code 22 July 2013, 22:13:19 UTC
8d99bd8 Merge pull request #1424 from sbalko/strftime-impl Implement strftime 22 July 2013, 22:08:14 UTC
0f01868 have a fixed limit for the number of outlinings we perform on a single function 22 July 2013, 22:00:23 UTC
e61ca30 Made getMimetype() a public method of the Browser module and used it inside the SDL module. 22 July 2013, 18:42:13 UTC
f5d05aa Merge pull request #1406 from inolen/printerr_fixes fixed stderr output to use printErr 22 July 2013, 18:10:40 UTC
67b321c no need to closure-guard Math.imul definitions (only used internally anyhow, and need to be consistent with later Math.imul uses 22 July 2013, 16:59:35 UTC
79cf7e8 allow closure with -g1 (only preserve whitespace) 22 July 2013, 16:34:59 UTC
1e9762f fix regression of double-counting varargs 22 July 2013, 15:50:56 UTC
a9aa509 Added mime type information to SDL_rwops in `SDL_RWFromFile` as a hint to processing down the line. Changed the `Pointer_stringify()` call to occur in `SDL_RWFromFile` instead of downstream which makes more sense. Cleaned up formatting. 22 July 2013, 15:49:45 UTC
2fa6655 notice varargs when creating library function wrappers 22 July 2013, 06:23:04 UTC
fcac1ed Formatting changes as requested for pull request 22 July 2013, 01:17:00 UTC
4d7894a Implement strftime (incl. tests) 22 July 2013, 01:17:00 UTC
eca3f4f add browser audio option for test runner 21 July 2013, 19:58:19 UTC
847b24e Merge branch 'isgraph' of github.com:ToadKing/emscripten into incoming 21 July 2013, 19:12:14 UTC
944142e Merge pull request #1412 from michaeljbishop/pread-fix Fixes in pread() 21 July 2013, 19:11:06 UTC
cba8693 add self to AUTHORS 21 July 2013, 19:05:42 UTC
00ba7f5 abort outlining if it leads to the new function or old function exceeding the original function in size 21 July 2013, 17:55:08 UTC
5b49264 clean up test code 21 July 2013, 17:38:00 UTC
da282e9 add more outline testing 21 July 2013, 17:37:19 UTC
b11c3d7 fix semantics of control variable handling in outlining: zero out when calling outlined funcitons, and right after using the value, so that we can handle nested outlined calls 21 July 2013, 17:33:44 UTC
0902d6c save all versions in test_outline 21 July 2013, 05:45:26 UTC
66171f5 simplify heuristics for restarting in outliner 21 July 2013, 05:43:01 UTC
f099024 stop trying to outline in outlined code, appears to not be necessary anymore 21 July 2013, 05:32:32 UTC
dd81be6 add more outliner testing 21 July 2013, 04:49:44 UTC
91e447b use blocks in switch cases in outliner 21 July 2013, 04:48:49 UTC
94c3b3c allow sp to be modified in outlined code, by changing the model to where outlined code returns sp (which also parallels that we sent it as the single parameter) 21 July 2013, 04:15:29 UTC
a5bb34b adjust outlining heuristics to fully outline even big functions 21 July 2013, 03:47:28 UTC
e258efc do a restart in the outliner only if the total cost is not too high 21 July 2013, 03:01:07 UTC
1830d2c recursively outline when the total cost is not too high, and adjust outlining parameters 21 July 2013, 02:34:58 UTC
1cb5216 do not try another outlining pass if there is not that much left anyhow 20 July 2013, 20:22:13 UTC
9c52c8a - added lchmod - fixed up errno values for mknod - split up stat tests into test_stat, test_stat_chmod, test_stat_mknod 20 July 2013, 18:19:15 UTC
d0133d2 fix isgraph 20 July 2013, 07:16:01 UTC
90c9c76 Formatting cleanup. 20 July 2013, 03:24:59 UTC
f2b2116 Touched up formatting. No functional change. 20 July 2013, 02:51:56 UTC
de54e94 fix glGetAttachedShaders 20 July 2013, 02:39:58 UTC
ba6b57f attempt a final outline from the start after any outlining, not just a recursive one 20 July 2013, 01:50:00 UTC
a7b87c4 after outlining recursively, try to outline once more from the beginning 20 July 2013, 01:44:47 UTC
d9d0118 handle %Nc in sscanf; fixes #1407 20 July 2013, 01:12:16 UTC
e59bfd4 simplify and correct the logic for falling back to the entry ident when an invalid label id shows up; fixes #1399 19 July 2013, 23:01:09 UTC
b5550f0 handle out param in SDL_GetKeyboardState; fixes #1404 19 July 2013, 21:43:17 UTC
95ff3a2 Merge pull request #1402 from imvu/embind-updates-pull-request Embind updates pull request 19 July 2013, 21:31:38 UTC
eee051b Merge pull request #1414 from inolen/dlclose_refcount_fix fix for dlclose refcount cleanup 19 July 2013, 21:27:56 UTC
93a3268 ensure a final return after inlining, if necessary 19 July 2013, 17:47:22 UTC
e24923c remove variables owned by outlined code from the parent 19 July 2013, 17:19:57 UTC
19a9e53 enable first working zlib outlining test 19 July 2013, 17:16:15 UTC
f3b2e09 fix for refcount cleanup 19 July 2013, 06:08:57 UTC
528ff4b preparations for outline test on zlib 19 July 2013, 02:14:07 UTC
b8e7b66 improve find_bigfuncs 19 July 2013, 01:58:27 UTC
6e6807b wipe out control flow variable before calling outlined code 19 July 2013, 01:44:33 UTC
9f8c0f7 do not miss returns that are statements 19 July 2013, 01:02:43 UTC
c04260c do not emit spills in outlined code for variables that only appear in the outlines code 19 July 2013, 00:28:12 UTC
c99739b do not outline into outlined code for now, and refactor code analysis a little 19 July 2013, 00:01:13 UTC
2ffa3a8 add coercions on return proxying in outliner 18 July 2013, 23:26:26 UTC
698b0c5 emit only necessary return proxying code when outlining 18 July 2013, 23:20:40 UTC
a1a7cb6 send variables to outlines code even if just written; they may not be written to, and we would write a zero incorrectly 18 July 2013, 23:08:26 UTC
4962ed9 Fixes in pread() The bug occurs when pread() doesn't return 0 when asked to read an offset beyond its buffer. This behavior is explicitly documented at: http://pubs.opengroup.org/onlinepubs/000095399/functions/read.html > If the starting position is at or after the end-of-file, 0 > shall be returned 18 July 2013, 18:57:57 UTC
188ec73 fixed stderr output to use printErr 18 July 2013, 07:12:02 UTC
646e5af consolidate simplifyExpressions to one pass that happens before closure, where simplifyNotComps is guaranteed to be valid 18 July 2013, 03:58:16 UTC
d45e687 add asm coercions to switches for outlining 18 July 2013, 01:18:53 UTC
30a3631 add asm coercions to ifs for outlining 18 July 2013, 01:16:06 UTC
7e8bd8b add asm coercion when outlining 18 July 2013, 00:27:35 UTC
3a1a48b outlining integration in compiler 17 July 2013, 23:47:47 UTC
5955301 do not emit illegal breaks in seqs when outlining 17 July 2013, 23:45:32 UTC
bb84428 infrastructure for passing extra info to js optimizer passes from emcc 17 July 2013, 22:44:41 UTC
82f0925 do not overlap the normal C stack with outliner-spilled variables 17 July 2013, 20:43:14 UTC
f02de71 refactor stack bump node search 17 July 2013, 20:38:12 UTC
3eba3ac rename variable 17 July 2013, 20:31:30 UTC
07d5aca enable larger outline test 17 July 2013, 20:23:13 UTC
50914ed update existing stack if there is one when outlining 17 July 2013, 19:42:48 UTC
9eaf060 stack support in outlining 17 July 2013, 19:11:00 UTC
b911d5d Add a test that shows JS objects can be modified if passed by reference into a C++ function 17 July 2013, 18:50:17 UTC
3952582 Fix a bunch of things that break under closure advanced optimizations. Now, to my knowledge, embind fully supports closure advanced mode. 17 July 2013, 18:28:59 UTC
c86809e Rename value_tuple to value_array and value_struct to value_object 17 July 2013, 18:28:42 UTC
4556824 more testing 17 July 2013, 18:10:35 UTC
back to top