aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-05do not add compiler opts to CFLAGS, we add them in emcc anyhow (which is safer)Alon Zakai
2012-01-05fix bug with emcc not respecting absolute paths and always placing outputs ↵Alon Zakai
in the current directory
2012-01-05add some GL headersAlon Zakai
2012-01-05properly handle implicit entry labels + phi also in the unoptimized phi caseAlon Zakai
2012-01-05handle various possible namings for an implicitly named entryAlon Zakai
2012-01-05Merge pull request #162 from jterrace/incomingAlon Zakai
Endianness, cross-compiling, and missing headers
2012-01-05handle the case where there is no explicit label for the entry, and the name ↵Alon Zakai
of the entry is important for phi purposes
2012-01-05add missing semaphore.hAlon Zakai
2012-01-05add debug output of which functions are being processed in side passesAlon Zakai
2012-01-05Changed emscripten comment to XXX formatJeff Terrace
2012-01-05Merge branch 'master' of git://github.com/jterrace/emscripten into incomingJeff Terrace
2012-01-05fix test_emccAlon Zakai
2012-01-04fix test_cases/gepoverflowAlon Zakai
2012-01-04enlarge stack size default to 5MBAlon Zakai
2012-01-04better error when running out of stackAlon Zakai
2012-01-04fix bug with not creating proper bitcode output with proper file name when ↵Alon Zakai
emcc is given -o js
2012-01-04Merge branch 'master' into incomingAlon Zakai
2012-01-04Merge branch 'incoming'Alon Zakai
2012-01-04fix bug with investigating types in the main pass, and in rare cases ↵Alon Zakai
defining types with incorrect data because of that
2012-01-04fix tests that have js transforms that rely on being able to import from the ↵Alon Zakai
emscripten dir
2012-01-04properly remove all local system include dirsAlon Zakai
2012-01-04fix suffix of saved .ll file in emcc debug modeAlon Zakai
2012-01-04--js-transform option for emccAlon Zakai
2012-01-04support empty strings in llvm metadata for namespacesAlon Zakai
2012-01-04Add missing pthread function, missing termios.h and missing ttydefaults.hJeff Terrace
2012-01-04Set HOST_* variables for cross-compilingJeff Terrace
2012-01-04Add additional defines to endian.hJeff Terrace
2012-01-04Merge branch 'incoming' of github.com:kripken/emscripten into incomingAlon Zakai
2012-01-04Merge branch 'incoming'Alon Zakai
2012-01-04misc header improvements for building llvmAlon Zakai
2012-01-03make emmake executableAlon Zakai
2012-01-03todo commentAlon Zakai
2012-01-03Merge pull request #155 from FishingCactus/osx_darwin_fixAlon Zakai
Fix bit code detection when llvm is compiled with darwin as a target
2012-01-03force a target of i386-pc-linux-gnuAlon Zakai
2012-01-03tweak loop hoistingAlon Zakai
2012-01-03Adding myself to the list of authorsjulien.hamaide
2012-01-03Add comment for Osx specific treatment of bitcode filesjulien.hamaide
2012-01-03Fix bitcode support when llvm is compiled for darwin targetjulien.hamaide
2012-01-03hoist even large entries into loopsAlon Zakai
2012-01-03remove label setting when we get to a single entry, even if the label ↵Alon Zakai
setting is not in a block by itself
2012-01-02make it easy to set whether stderr is silent or noisy in the test runnerAlon Zakai
2012-01-02do not set label when continue-ing to a loop with one entryAlon Zakai
2012-01-02use -idirafter instead of -I for our system dirs, to allow overridingAlon Zakai
2012-01-02use BRNOL in loops tooAlon Zakai
2012-01-02do not set label when leaving a multiple with one post-entry, and properly ↵Alon Zakai
optimize the case of not setting label with new BRNOL branch signature
2012-01-02load default settings into Settings on resetAlon Zakai
2012-01-01remove __label__ settings in hoisted blocks and if we are sure the label ↵Alon Zakai
setting is unimportant because the next code after us is not a check for the label
2012-01-01additional emcc debugging outputAlon Zakai
2012-01-01fix bug in loopOptimizer with not removing all unneeded labelsAlon Zakai
2012-01-01improve loop hoisting and add testAlon Zakai