aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-02assert on vars being in front of functions straight out of the js compilerAlon Zakai
2013-10-02when function is actually void, do not capture it's output even if llvm ↵Alon Zakai
mistakenly bitcasts that way
2013-10-02optimize Math.x to Math_xAlon Zakai
2013-10-02if not running js opts, ensure a . in asmEnsureFloat immediatelyAlon Zakai
2013-10-02define legalized bitshift vars explicitlyAlon Zakai
2013-10-02add explicit var to indirectbrAlon Zakai
2013-10-02add explicit variable for invoke chunksAlon Zakai
2013-10-02add explicit vars for phi dependency breaksAlon Zakai
2013-10-02add explicit vars for illegal mathops and landingpadAlon Zakai
2013-10-02assert in normalizeAsmAlon Zakai
2013-10-02register phi variables in functionAlon Zakai
2013-10-02chunk label init with the restAlon Zakai
2013-10-02todoAlon Zakai
2013-10-02add final return in non-relooped asm.js outputAlon Zakai
2013-10-02run 'last' js optimization phase if asm.js, even if nothing else to runAlon Zakai
2013-10-02remove newlines from function line results, simplify joining themAlon Zakai
2013-10-02remove inter-function indentationAlon Zakai
2013-10-02remove whitespace after switch loopAlon Zakai
2013-10-02remove whitespace in call argsAlon Zakai
2013-10-02remove unnecessary function param coercion parensAlon Zakai
2013-10-02remove whitespace in stack opsAlon Zakai
2013-10-02bigger var chunksAlon Zakai
2013-10-02remove whitespace in misc function stuffAlon Zakai
2013-10-02remove whitespace in assignmentsAlon Zakai
2013-10-02remove whitespace in switchAlon Zakai
2013-10-02remove whitespace in mathopsAlon Zakai
2013-10-02remove unnecessary whitespace in while(1)Alon Zakai
2013-10-02remove unnecessary whitespace in branchesAlon Zakai
2013-10-02COMPILER_FASTPATHS optionAlon Zakai
2013-10-02debugging aidAlon Zakai
2013-10-02fast-path simple icmpAlon Zakai
2013-10-02fix intertype of comparisons' last parameterAlon Zakai
2013-10-02align function tables in non-asm modeAlon Zakai
2013-10-02Merge pull request #1693 from sunfishcode/incomingAlon Zakai
Optimize alignment rounding.
2013-10-02error on linkable modules without asmAlon Zakai
2013-10-02Merge pull request #1666 from waywardmonkeys/add-mktempAlon Zakai
Add mktemp
2013-10-02Optimize alignment rounding.Dan Gohman
Replace x>>2<<2 and x>>3<<3 with x&-4 and x&-8, respectively, since an and is cheaper than two shifts.
2013-10-02comment on FUNCTION_POINTER_ALIGNMENTAlon Zakai
2013-10-02link in files in autodebuggerAlon Zakai
2013-10-02make function pointer aliasing configurableAlon Zakai
2013-10-02Merge pull request #1686 from juj/icase_vfsAlon Zakai
Icase vfs
2013-10-02Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ↵Jukka Jylänki
case-insensitive mode.
2013-10-01make function table emitting nicerAlon Zakai
2013-10-01optimize indexize/blockaddrsize in emscripten.pyAlon Zakai
2013-10-01optimize asm function table emittingAlon Zakai
2013-10-01fix C_STRUCT usage in sdlAlon Zakai
2013-10-01disable some recently-changed tests in modes where they need inline js or emccAlon Zakai
2013-10-01test runner commentAlon Zakai
2013-10-01Break up mkstemp impl to provide mktemp impl.Bruce Mitchener
The libcxx test suite wants mktemp(), so provide it by pulling out some of the internals of mkstemp().
2013-09-30update unistd tests to run only on nodeAlon Zakai