aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-04refactor sockets codeAlon Zakai
2013-02-04Merge pull request #821 from caiiiycuk/recv_testAlon Zakai
Test for recv (partial)
2013-02-04Merge pull request #832 from waywardmonkeys/typo-fixesAlon Zakai
Fix typos.
2013-02-04remove test_pgoAlon Zakai
2013-02-04GLES 1.1 headersAlon Zakai
2013-02-04EXPLICIT_ZEXT optionAlon Zakai
2013-02-04revert 73313a7ef6ab384a3130e50f4904b8ae232cf4a5 - stop labeling ifs in ↵Alon Zakai
relooper due to speed concerns
2013-02-04emit simple multiply in asm if the values are small enough to avoid double ↵Alon Zakai
rounding concerns
2013-02-04optimize num >> num in js optimizer, necessary for asm now that we do not do ↵Alon Zakai
shift optimization there
2013-02-04Fix typos.Bruce Mitchener
2013-02-03Merge pull request #830 from waywardmonkeys/dlfcn-include-guardsAlon Zakai
Missing include guards.
2013-02-04gc.h: Missing include guards.Bruce Mitchener
2013-02-03Merge pull request #825 from juj/stdAlon Zakai
Std
2013-02-04dlfcn.h: Missing include guards.Bruce Mitchener
2013-02-03improve eliminator test flexibility, fixes #822Alon Zakai
2013-02-03do not run unnecessary optimizeShiftsAggressive+eliminate steps in asm mode, ↵Alon Zakai
it is pointless and just wastes compilation time
2013-02-03fix reps printing in benchmarksAlon Zakai
2013-02-02eliminate into labelsAlon Zakai
2013-02-02always use labels in multiple blocks; emit no more one-time loops but rather ↵1.2.4Alon Zakai
labeled ifs
2013-02-02update relooper testsAlon Zakai
2013-02-02fix memcpyAlon Zakai
2013-02-02do not build musl memcpyAlon Zakai
2013-02-01semi polyfill for Math.imulAlon Zakai
2013-02-01Merge pull request #819 from waywardmonkeys/fix-test-longjmpAlon Zakai
Variables live across a setjmp/lj must be volatile.
2013-02-01Merge pull request #820 from waywardmonkeys/sys-featuresAlon Zakai
Move some definitions to sys/features.
2013-02-01Merge pull request #818 from waywardmonkeys/gc-improvementsAlon Zakai
Gc improvements
2013-02-02In test runner, don't pass -std=c++03 when building .c files.Jukka Jylänki
2013-02-01docs for file packagerAlon Zakai
2013-02-01Add a unit test that checks that user is able to specify a custom -std= flag ↵Jukka Jylänki
on the command line.
2013-02-01Compile 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-01Add a unit test that checks that all platforms are building C++03 code by ↵Jukka Jylänki
default.
2013-02-01Fix 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-01Test for recv (partial)Aleksander Guryanov
2013-02-01Move some definitions to sys/features.Bruce Mitchener
This moves some feature flags to sys/features.h where they belong and gives them the same values that are established in the settings file. Fixes #812.
2013-02-01Variables 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-01Add _realloc to EXPORTED_FUNCTIONS.Bruce Mitchener
2013-02-01Support GC_get_heap_size().Bruce Mitchener
2013-02-01Don't corrupt GC.totalAllocations.Bruce Mitchener
2013-02-01Add support for GC_REALLOC().Bruce Mitchener
2013-01-31fix glIsTexture from throwing a warning on null-ified textures, and add testingAlon Zakai
2013-01-31fix memcpy comparison order of operations bugsAlon Zakai
2013-01-31hand-optimize memcpy/asmAlon Zakai
2013-01-31fix bootstrap memset safe heap accessAlon Zakai
2013-01-31hide some warnings when not in debug mode; helps in #811Alon Zakai
2013-01-31Merge pull request #813 from waywardmonkeys/typo-fixesAlon Zakai
fix typos in paper.
2013-01-31Merge pull request #816 from juj/EGL_deinitAlon Zakai
Implemented eglTerminate and eglDestroyContext.
2013-01-31Implemented eglTerminate and eglDestroyContext.Jukka Jylänki
2013-02-01Add myself to AUTHORS.Bruce Mitchener
2013-02-01Add GC support for GC_MALLOC_UNCOLLECTABLE.Bruce Mitchener
2013-01-31fix typos in paper.Bruce Mitchener