aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
AgeCommit message (Collapse)Author
2014-01-07notice simd signal from fastcompAlon Zakai
2014-01-05correct annotation for closureLu Wang
2014-01-03clean extra arg of JSifyLu Wang
2014-01-02adjust TOTAL_MEMORY at runtime, to take into account last minute changes to ↵Alon Zakai
Module.TOTAL_MEMORY
2014-01-02minor cleanLu Wang
2014-01-01minor cleanLu Wang
2013-12-14do not add i64 support funcs more than onceAlon Zakai
2013-12-07fastcomp imports fixAlon Zakai
2013-12-07get glue phase to emit i64 stuff for fastcompAlon Zakai
2013-12-05handle return values for library calls using aliases with different return typesAlon Zakai
2013-11-29do not emit empty postsets from js compiler for fastcomp outputAlon Zakai
2013-11-26getting some initial set of x86 intrinsics mapped to JS SIMD ops; update ↵Heidi Pan
existing SIMD code to use updated JS SIMD API (SIMD.type.op instead of SIMD.op & SIMD.opu32; int32x4 instead of uint32x4); bug fix: right type of withX() for int32x4 initialization; bug fix: splat(0) instead of zero() for int32x4 initialization
2013-11-20memory initializer in fastcompAlon Zakai
2013-11-20hack up support for 'glue' phase in js compiler, to just generate glue for ↵Alon Zakai
backend output
2013-11-15do not kill asm library functions with DEAD_FUNCTIONS, as they perform ↵Alon Zakai
fundamental things we cannot easily remove, and there are not many of them anyhow; fixes asm1.test_asm_pgo
2013-11-13don't show both errors and warnings on undefined symbolsAlon Zakai
2013-11-13test for multiple undefined symbolsAlon Zakai
2013-11-12make DEAD_FUNCTIONS work on js library functions tooAlon Zakai
2013-11-01do not emit unnecessary coercions when calling a math builtin with a floatAlon Zakai
2013-11-01Merge branch 'incoming' into f32Alon Zakai
Conflicts: src/parseTools.js
2013-10-30remove finalizeParam and properly use finalizeLLVMParameter everywhereAlon Zakai
2013-10-30fix missing semicolons on simd load and storeAlon Zakai
2013-10-29clean up simd code, fix uint32x4 heap offsets, and add testingAlon Zakai
2013-10-29use asm ffi coercing for floats in load abort callsAlon Zakai
2013-10-25send and receive only doubles through ffis, not floatsAlon Zakai
2013-10-25support fround in function tables and asm module support functionsAlon Zakai
2013-10-25simplify auto-return adding code, and make it generic so it can handle ↵Alon Zakai
floats as well
2013-10-19commented-out compiler profiler supportAlon Zakai
2013-10-18avoid allocating huge lists for [BIGNUM x type] typesAlon Zakai
2013-10-18integrate the SIMD polyfill codeAlon Zakai
2013-10-18extractelementAlon Zakai
2013-10-18simd fixAlon Zakai
2013-10-18shufflevectorAlon Zakai
2013-10-18insertelementAlon Zakai
2013-10-18vector loads and storesAlon Zakai
2013-10-18vector loadAlon Zakai
2013-10-18stubs for insertelement and shufflevectorAlon Zakai
2013-10-17optimize globalVariableHandler a littleAlon Zakai
2013-10-16simplify bss handlingAlon Zakai
2013-10-14use proper separator in va_argHandler; fixes #1705Alon Zakai
2013-10-14do not show spurious warnings about missing library depsAlon Zakai
2013-10-13warn on missing library deps, remove an obsolete VFS dep, and add a ↵Alon Zakai
necessary glOrtho dep; fixes #1708
2013-10-10do not emit postSets for function indexing etc., bake them into the memory ↵Alon Zakai
initializer
2013-10-10do not assert on output of numeric 0 from a js handlerAlon Zakai
2013-10-08use ident in alloca intertypeAlon Zakai
2013-10-03remove unneeded EMIT_GENERATED_FUNCTIONSAlon Zakai
2013-10-03emit final missing returns in compiler itselfAlon Zakai
2013-10-02explicitly define setjmp helper varsAlon 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