aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-06-21reduce indentation in relooper1.5.1Alon Zakai
2013-06-21decrease indentation in jsifierAlon Zakai
2013-06-20Merge pull request #1312 from juj/win_test_statics_fixAlon Zakai
In metadata, store paths parsed from .ll files using forward slashes on Windows.
2013-06-20ensure a coercion on invoke callsAlon Zakai
2013-06-19fix CHECK_ALIGNAlon Zakai
2013-06-19update fastLong.jsAlon Zakai
2013-06-19Fixed error where SDL_Mixer would run out of channels because soundMichael J. Bishop
instances weren't removed when they were finished playing.
2013-06-19fix memmoveAlon Zakai
2013-06-19properly coerce imprecise i64 math callsAlon Zakai
2013-06-19keep |0 on function calls, allow other bitwise ops on heap accesses etc.Alon Zakai
2013-06-20In metadata, store paths parsed from .ll files using forward slashes on ↵Jukka Jylänki
Windows. Fixes safe heap line detection on Windows (the code splits on '/' only as path delimiter), closes issue #1233.
2013-06-19IMPROVED: removed empty line and white-space at EOLmanny/MADE
2013-06-19CHANGED: removed "MADE"-tag from commentsmanny/MADE
2013-06-19ADDED: GLUT_SCREEN_WIDTH + GLUT_SCREEN_HEIGHT in glutGetmanny/MADE
2013-06-19BUGFIX: several SDL related bugfixesmanny/MADE
2013-06-19IMPROVED: ADDED resizeListener that invokes the GLUT.reshapeFunc if specifiedmanny/MADE
2013-06-19Ensure line numbers are the same in HTML.Jez Ng
Chrome and FF seem to be able to handle the extra empty lines, but no harm making things more accurate. One thing less to worry about when debugging.
2013-06-18Merge pull request #1304 from int3/sdlAlon Zakai
Fix SDL color encoding
2013-06-18Merge pull request #1301 from Manny-MADE/va_lists_fixAlon Zakai
BUGFIX: lists cannot be copied as "llvm_va_copy" was broken, didn't copy list offset
2013-06-18do not do full Browser.init() in workers, just the minimum we needAlon Zakai
2013-06-18IMPROVED: va_list offset is not hardcoded, added commentsmanny/MADE
2013-06-18BUGFIX: lists cannot be llvm_va_copy was broken, didn't copy list offsetmanny/MADE
2013-06-17Fix SDL color encoding.Jez Ng
Little-endian + RGBA means that red is located at the lowest-order bits, not the highest. The hello_world_sdl test is now portable, because we no longer write to individual bytes. We also add a test for a completely blank screen, which should be black, not red. Closes #1287, #761, #765.
2013-06-17Implement strnlen.David Barksdale
2013-06-17Merge pull request #1283 from juj/SDL_CreateRGBSurfaceFromAlon Zakai
Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give a...
2013-06-17assert on Root being non-NULL in the relooperAlon Zakai
2013-06-16Merge pull request #1282 from juj/sdl_addtimerAlon Zakai
Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typed...
2013-06-16Merge pull request #1284 from juj/SDL_WM_SetIconAlon Zakai
Add no-op SDL_WM_SetIcon.
2013-06-13do not eliminate dead code in EXPORT_ALLAlon Zakai
2013-06-13Add no-op SDL_WM_SetIcon.Jukka Jylänki
2013-06-13Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give an ↵Jukka Jylänki
uninitialized surface.
2013-06-13Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typedef ↵Jukka Jylänki
Uint32 (SDLCALL * SDL_TimerCallback) (Uint32 interval, void *param);'.
2013-06-10coerce output of integer modulus, since x%0 is NaN, which is not an integerAlon Zakai
2013-06-10rename int because closure hates itAlon Zakai
2013-06-10comment on not inlining for setjmpAlon Zakai
2013-06-10add event listening to headlessAlon Zakai
2013-06-10warn if setjmp is used as a function pointerAlon Zakai
2013-06-08comment on EXPORT_ALLAlon Zakai
2013-06-08 - Fix for mod property of SDL key eventsAnthony Pesch
- Added misc SDL functions (SDL_GetKeyName, SDL_GetAppState, SDL_SetGammaRamp) - Added modifiers to test_sdl_key
2013-06-07refactor to potentially enable shadow flip on 32-bit valuesAlon Zakai
2013-06-07fix multiplications in setjmp codeAlon Zakai
2013-06-07remove break labels more aggresively, with a refined natural flow analysis1.4.9Alon Zakai
2013-06-07add missing return values in ↵Alon Zakai
safeRequestAnimationFrame,safeSetTimeout,safeSetInterval
2013-06-07Make lrint more correct. Closes #1265.Jez Ng
2013-06-07better erroring in SDL_Delay; issue #1255Alon Zakai
2013-06-05disabled support for hoisting back into loops in relooper1.4.8Alon Zakai
2013-06-05remove unneeded parameter to FindIndependentGroupsAlon Zakai
2013-06-05Merge pull request #1260 from modeswitch/fix-missing-constant-definitionAlon Zakai
INCOMING_QUEUE_LENGTH was not found by CircularBuffer constructor.
2013-06-05Merge pull request #1259 from modeswitch/fix-syntax-errorAlon Zakai
Missed closing parenthesis.
2013-06-05sdl fixes; fixes #1251Alon Zakai