aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/JSBackend/JSBackend.cpp
AgeCommit message (Collapse)Author
2014-02-14emit bool constants as unsigned in a consistent mannerAlon Zakai
2014-02-12Revamp ExpandI64.Dan Gohman
By using a reverse-postorder traversal of the basic blocks, we can perform this transform in a single pass. This eliminates the need for tricky coordination between the passes.
2014-02-12Constify more things.Dan Gohman
2014-02-12Use the LLVM pass-manager infrastructure for DataLayout.Dan Gohman
2014-02-12Map optimizations.Dan Gohman
2014-02-12Use more LLVM-idiomatic debug and error facilities.Dan Gohman
2014-02-12Change some dyn_casts to casts.Dan Gohman
2014-02-12add missing |0s in unaligned accessesAlon Zakai
2014-02-07group together initial allocasAlon Zakai
2014-02-07refactor function printing into a functionAlon Zakai
2014-02-06optimize small constant memcpyAlon Zakai
2014-02-05handle double strings with an uneven number of charsAlon Zakai
2014-02-05better unaligned log outputAlon Zakai
2014-02-04option to warn about unaligned loads and storesAlon Zakai
2014-02-04refactor getLoad|getStore to receive an instructionAlon Zakai
2014-02-03ensure a + on large constants in Math_froundAlon Zakai
2014-02-03fix asm casts of float as ffi paramsAlon Zakai
2014-02-03generalize hardcoded HEAPF32 load castsAlon Zakai
2014-02-03function table support for floatsAlon Zakai
2014-02-03ffi call support for floatsAlon Zakai
2014-02-03precise float supportAlon Zakai
2014-02-02remove extra indentation on runPostSetsAlon Zakai
2014-02-02abort on loads from constant addresses in general, not just based on weird ↵Alon Zakai
alignment
2014-02-02support llvm.usedAlon Zakai
2014-02-02ignore fencesAlon Zakai
2014-01-31Fix a printf format warning.Dan Gohman
2014-01-31Eliminate more temporary std::strings.Dan Gohman
2014-01-31Use internal name linkage.Dan Gohman
2014-01-31Eliminate temporary std::strings.Dan Gohman
2014-01-31Use CmpInst::isUnsigned.Dan Gohman
2014-01-31Implement unordered comparisons.Dan Gohman
2014-01-31Implement FNeg operators.Dan Gohman
2014-01-29fix switch choice codeAlon Zakai
2014-01-29clean up some fixmesAlon Zakai
2014-01-27fix missing separator in unaligned read codeAlon Zakai
2014-01-24Merge pull request #6 from juj/win_build_fixesAlon Zakai
Win build fixes
2014-01-24Fix serialization of nans, infs and negative floats to JS. Fixes ↵Jukka Jylänki
test_float_literals in https://github.com/kripken/emscripten/pull/2052 .
2014-01-24Don't use the ambiguous pow symbol since it confuses Visual Studio, instead ↵Jukka Jylänki
generate bit masks with shifting.
2014-01-24Fix snprintf symbol name on Visual Studio.Jukka Jylänki
2014-01-17optimize ValueNames storageAlon Zakai
2014-01-16align non-constant allocasAlon Zakai
2014-01-13use flexible automatically managed buffer in relooperAlon Zakai
2014-01-12fix ZT* symbols we need to exportAlon Zakai
2014-01-12export select symbols for js libraries to be able to access by nameAlon Zakai
2014-01-10allow function signatures to be customized by the function nameAlon Zakai
2014-01-10handle some more odd constants that exception code can containAlon Zakai
2014-01-10handle some [bitcast x] constants that can show up in landingpad inputsAlon Zakai
2014-01-10fix call handler call with NULLAlon Zakai
2014-01-10lower resumeAlon Zakai
2014-01-10exceptions support in backend itselfAlon Zakai