summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-07add eliminator mode for asmAlon Zakai
2012-12-07ignore relooper in gitAlon Zakai
2012-12-07add asm.js eliminator testingAlon Zakai
2012-12-07move label definition and add initial valueAlon Zakai
2012-12-07define local vars asm.js styleAlon Zakai
2012-12-07asm.js function parameter preambleAlon Zakai
2012-12-07disable closure when ASM_JSAlon Zakai
2012-12-07remove text from overly-verbose assertionsAlon Zakai
2012-12-07send abort and assert to asmAlon Zakai
2012-12-07global vars in asm.js moduleAlon Zakai
2012-12-07explicit asm.js float-to-int conversionAlon Zakai
2012-12-07only do asm.js heap corrections/guards in funcs phase, to not confused ↵Alon Zakai
handwritten library code
2012-12-07default heap to 16MB, and make sure asm.js heaps are power-of-twoAlon Zakai
2012-12-07guard against heap read values in asm.jsAlon Zakai
2012-12-07asm.js memory maskingAlon Zakai
2012-12-07export function tablesAlon Zakai
2012-12-07clean up function table generating codeAlon Zakai
2012-12-07move asm.js function tables into asmAlon Zakai
2012-12-07put library signatures in separate storage instead of reusing libraryFunctionsAlon Zakai
2012-12-07export asm.js exports to outside scopeAlon Zakai
2012-12-07only use typed function tables in asm_js modeAlon Zakai
2012-12-07always forward library functionsAlon Zakai
2012-12-07ignore varargs in getSignatureAlon Zakai
2012-12-07add asm to ALLAlon Zakai
2012-12-07function table fixesAlon Zakai
2012-12-07do not allow memory growth in asm.jsAlon Zakai
2012-12-07generate separate type-specific function tablesAlon Zakai
2012-12-07add asm test suiteAlon Zakai
2012-12-07fix merge errorAlon Zakai
2012-12-07add asm imports and exports, hello world worksAlon Zakai
2012-12-07notice function indentation in js_optimizer.py so that we properly scan ↵Alon Zakai
indented code in asm.js
2012-12-07fix suffix in js optimizerAlon Zakai
2012-12-07export is reservedAlon Zakai
2012-12-07export implementedFunctions when necessary for asm.jsAlon Zakai
2012-12-07only export asm functions from asm, not library functionsAlon Zakai
2012-12-07work towards exportsAlon Zakai
2012-12-07remove irrelevant code from asm moduleAlon Zakai
2012-12-07set up asm.js 'module'Alon Zakai
2012-12-07properly implement uitofp/sitofp using our existing code for that; fixes #745Alon Zakai
2012-12-07add parts of system bitcode libraries when necessary, and refactor library ↵Alon Zakai
inclusion decision code
2012-12-04Ignore generated files src/relooper.js[.raw.js] for gitTobias Weibel
2012-12-04Merge pull request #735 from eclecticdave/emcc_so_fixAlon Zakai
Fixes to emcc to make autoconf enable shared objs
2012-12-04recursively traverse .a files until we have all we needAlon Zakai
2012-12-04only add in .o inside .a that are neededAlon Zakai
2012-12-03do not apply -l if not generating an executable or a libraryAlon Zakai
2012-12-03ignore argument after -I -L for purposes of input detection in emccAlon Zakai
2012-11-30Fixes to emcc to make autoconf enable shared objsDavid Claughton
When using emcc as a linker, autoconf disables shared object support. This is because it expects the text returned by the -v and --help options to match certain things that GNU ld prints. Specifically it expects the output of emcc -v to include the word 'GNU' and the output of emcc -v to match the regexp ': supported targets.* elf' Modified the messages returned by emcc for these options to make autoconf happy.
2012-11-30Merge pull request #734 from dinibu/incomingAlon Zakai
Fixed embind for non-void non-const class methods (with test). Fixes issue #605.
2012-11-30Fixed embind for non-void non-const class methods (with test).Dominic Wong
2012-11-28fix sprintfAlon Zakai