aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-12networking header additionsAlon Zakai
2012-01-12some inet.h additionsAlon Zakai
2012-01-12header fixesAlon Zakai
2012-01-11do not blow up the stack with lots of varargsAlon Zakai
2012-01-11better workaround for v8 bug 1895Alon Zakai
2012-01-11fix bindings generator bug with static return values, and do not create ↵Alon Zakai
EmscriptenEnsurer by default (it turns into a very large amount of code after closure, causing errors in large projects)
2012-01-11tweak fix_closure outputAlon Zakai
2012-01-11fix fix_closure bug with newlinesAlon Zakai
2012-01-10option for NODE_JS_SAFE as a workaround for intermittent failures due to ↵Alon Zakai
node issue 2476
2012-01-10commentAlon Zakai
2012-01-10refactor js optimizer to not use fs.* as much as possibleAlon Zakai
2012-01-10fix fix_closure bug with the relevant line being split over several linesAlon Zakai
2012-01-10fix fix_closure bugAlon Zakai
2012-01-10experimental tool to fix closure's over-inlining into FUNCTION_TABLEAlon Zakai
2012-01-10Merge pull request #169 from jterrace/mmap_malloc_dlmalloc_fixesAlon Zakai
malloc and mmap fixes
2012-01-10compress pointer type names in constant globals, if not using SAFE_HEAPAlon Zakai
2012-01-10use NODE_JS when calling coffee and eliminator, to avoid problems with ↵Alon Zakai
missing system node
2012-01-10align stack to QUANTUM_SIZE in ta2 properly, avoiding unnecessary checks and ↵Alon Zakai
corrections
2012-01-10Update stub malloc to byte-align by 8, update dlmalloc not to use mmap, and ↵Jeff Terrace
update mmap to use malloc when MAP_ANONYMOUS
2012-01-10optimize varargs calls by avoiding calling allocate thereAlon Zakai
2012-01-09fix crash bug in processing a mathop with a param2 without an identAlon Zakai
2012-01-09tweak unrolling parameters and add copy benchmark that uses ta2Alon Zakai
2012-01-09notice alignment in byval paramsAlon Zakai
2012-01-09optimize memcpy/memset in ta0/1Alon Zakai
2012-01-08fix safe heap usage in memcpy for ta0Alon Zakai
2012-01-08improve test_cases printoutsAlon Zakai
2012-01-08optimize ta2 memset/memcpy loopsAlon Zakai
2012-01-08fix ta1 breakageAlon Zakai
2012-01-08fix breakage in ta0 and ta1Alon Zakai
2012-01-08fix bugs with aligned memcpy/memset with an unaligned number of bytes ↵Alon Zakai
operated on
2012-01-08support alignment in memset and memcpy in ta2Alon Zakai
2012-01-08fix and optimize cached header handling in test runnerAlon Zakai
2012-01-07tweak memory growth parameter to 2Alon Zakai
2012-01-07do not do redundant llvm optimizations on bitcode; do them only when ↵Alon Zakai
actually generating js
2012-01-07automatic malloc need detection for newAlon Zakai
2012-01-07postfix temp vars in makeCopyValues for ta2Alon Zakai
2012-01-07fix safe heap bug with memmoveAlon Zakai
2012-01-07optimize guard_acquire and guard_release and note that llvm violates ↵Alon Zakai
SAFE_HEAP when using it
2012-01-06fix PGO breakageAlon Zakai
2012-01-06restore some PGO code to investigate a speed regression in skinningAlon Zakai
2012-01-06optimize memmoveAlon Zakai
2012-01-06disable handling of -1 in mmap, fixes breakage of test_dlmallocAlon Zakai
2012-01-06fix some spacingAlon Zakai
2012-01-06Merge pull request #166 from jterrace/pthread_pagesize_prAlon Zakai
Allow stream to be -1 in mmap
2012-01-06move copy benchmark to ta2Alon Zakai
2012-01-06add disabled copying benchmarkAlon Zakai
2012-01-06put some PGO code behind and ifdefAlon Zakai
2012-01-06prevent stack from being exhausted due to allocas and byval argumentsAlon Zakai
2012-01-06additional spaceAlon Zakai
2012-01-06Allow stream to be -1 in mmapJeff Terrace