Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-17 | remove PROFILE option. It adds unacceptable overhead, and all browsers have ↵ | Alon Zakai | |
proper JS profilers these days - use those | |||
2013-02-17 | remove PGO option. It is only relevant for non-ta2 builds, which are on the ↵ | Alon Zakai | |
way to deprecation, and it in the best case is not a precise optimization but an optimistic one | |||
2013-02-17 | another gl workaround | Alon Zakai | |
2013-02-17 | remove no longer needed --closure 0 from some tests | Alon Zakai | |
2013-02-17 | default closure to off in all optimization levels - we rely on registerize ↵ | Alon Zakai | |
for much faster effects on runtime speed | |||
2013-02-15 | improve glIsProgram testing | Alon Zakai | |
2013-02-15 | memory checks for glReadPixels | Alon Zakai | |
2013-02-14 | set alpha to false in WebGL rendering - it represents the screen, so no ↵ | Alon Zakai | |
alpha is needed | |||
2013-02-14 | fix and test glIsProgram | Alon Zakai | |
2013-02-13 | prepare jpeg as well as jpg | Alon Zakai | |
2013-02-12 | Skip, or simulate success for the test_dlmalloc test that checks memory ↵ | Jukka Jylänki | |
allocation linearity/contiguity when compiling it natively to OSX. On that platform, this condition has been detected to not hold. Retain the check still for other platforms. | |||
2013-02-10 | force inputs to inttoptr to be i32 if they are i64; fixes #827 | Alon Zakai | |
2013-02-08 | gles workaround | Alon Zakai | |
2013-02-07 | commented out explicit_zext in benchmarks | Alon Zakai | |
2013-02-06 | Merge pull request #834 from caiiiycuk/test_memmove | Alon Zakai | |
Test for memmove | |||
2013-02-06 | support packed attributes in gl emulation code, perform restriding manually | Alon Zakai | |
2013-02-06 | use Math.imul in benchmarks | Alon Zakai | |
2013-02-06 | fix gluPerspective and add test | Alon Zakai | |
2013-02-06 | test for issue #838 | Alon Zakai | |
2013-02-06 | Test for memmove | Aleksander Guryanov | |
2013-02-05 | fix memmove bug and add testing | Alon Zakai | |
2013-02-04 | fix test_websockets_partial | Alon Zakai | |
2013-02-04 | Merge pull request #821 from caiiiycuk/recv_test | Alon Zakai | |
Test for recv (partial) | |||
2013-02-04 | remove test_pgo | Alon Zakai | |
2013-02-03 | Merge pull request #825 from juj/std | Alon Zakai | |
Std | |||
2013-02-03 | improve eliminator test flexibility, fixes #822 | Alon Zakai | |
2013-02-03 | fix reps printing in benchmarks | Alon Zakai | |
2013-02-02 | fix memcpy | Alon Zakai | |
2013-02-01 | Merge pull request #819 from waywardmonkeys/fix-test-longjmp | Alon Zakai | |
Variables live across a setjmp/lj must be volatile. | |||
2013-02-01 | Merge pull request #818 from waywardmonkeys/gc-improvements | Alon Zakai | |
Gc improvements | |||
2013-02-02 | In test runner, don't pass -std=c++03 when building .c files. | Jukka Jylänki | |
2013-02-01 | Add a unit test that checks that user is able to specify a custom -std= flag ↵ | Jukka Jylänki | |
on the command line. | |||
2013-02-01 | Compile with -std=c++03 consistently on all platforms. By default, Clang 3.2 ↵ | Jukka Jylänki | |
inconsistently uses C++11 for Windows and C++03 for Linux if user did not specify -std= on the command line. Fixes other.test_embind and *.test_llvmswitch. Add unit tests that confirm that .cpp files are compiled with C++03 std by default. | |||
2013-02-01 | Add a unit test that checks that all platforms are building C++03 code by ↵ | Jukka Jylänki | |
default. | |||
2013-02-01 | Fix test_llvmswitch to be valid C++11 code. Using an unsigned type would ↵ | Jukka Jylänki | |
cause an error: case value evaluates to 4294967281, which cannot be narrowed to type 'int' [-Wc++11-narrowing] when compiled as C++11. | |||
2013-02-01 | Test for recv (partial) | Aleksander Guryanov | |
2013-02-01 | Variables live across a setjmp/lj must be volatile. | Bruce Mitchener | |
According to http://pubs.opengroup.org/onlinepubs/7908799/xsh/setjmp.html among other places, the 'int x' here should be volatile so that it has the correct value. Otherwise, the behavior will be indeterminate. | |||
2013-02-01 | Support GC_get_heap_size(). | Bruce Mitchener | |
2013-02-01 | Add support for GC_REALLOC(). | Bruce Mitchener | |
2013-01-31 | fix glIsTexture from throwing a warning on null-ified textures, and add testing | Alon Zakai | |
2013-02-01 | Add GC support for GC_MALLOC_UNCOLLECTABLE. | Bruce Mitchener | |
2013-01-30 | Merge pull request #808 from caiiiycuk/palette_test | Alon Zakai | |
Add automation for sdl palette test | |||
2013-01-30 | Add automation for sdl palette test | Aleksander Guryanov | |
2013-01-30 | Fix '-1' problem in recv | Aleksander Guryanov | |
2013-01-28 | adjust life benchmark | Alon Zakai | |
2013-01-28 | add 'ok' in bullet benchmark | Alon Zakai | |
2013-01-26 | fix sockaddr_storage and sockaddr_in | Alon Zakai | |
2013-01-26 | fix stack rewinding bug, and add life test and benchmark | Alon Zakai | |
2013-01-25 | add bullet benchmark | Alon Zakai | |
2013-01-25 | switch benchmarks to asm.js by default and adjust parameters to standardize ↵ | Alon Zakai | |
as close as possible on 1 second for native in each one |