├── .gitignore ├── .gitmodules ├── Defines.mk ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config_files ├── mmap.json ├── oram.json ├── oram_suvm.json └── suvm.json ├── include └── common.h ├── libs └── .gitignore ├── mstores ├── Makefile ├── common │ ├── Makefile │ ├── PageTable.h │ ├── StoragePageTable.h │ ├── SyncUtils.cpp │ ├── SyncUtils.h │ ├── mem_allocator.cpp │ ├── mem_allocator.h │ ├── mstore_common.h │ ├── page_cache.cpp │ ├── page_cache.h │ ├── slab_allocator.cpp │ └── slab_allocator.h ├── oram │ ├── Makefile │ ├── array_tree.h │ ├── gen_flame.sh │ ├── mem_oram.cpp │ ├── mem_oram.h │ ├── oram.cpp │ ├── oram.h │ ├── oram_prof.cpp │ ├── oram_tests.cpp │ ├── oram_tests.h │ └── test_cmov.cpp ├── storage │ ├── Makefile │ ├── storage_runtime.cpp │ └── storage_runtime.h └── suvm │ ├── Makefile │ ├── suvm_runtime.cpp │ └── suvm_runtime.h ├── pass ├── Makefile ├── cosmix.cpp ├── json │ ├── json-forwards.h │ └── json.h └── jsoncpp.cpp ├── runtime ├── Makefile └── cosmix_runtime.cpp ├── samples ├── declaration_annotations │ ├── Makefile │ ├── suvm.json │ └── test.c ├── global_annotation │ ├── Makefile │ ├── suvm.json │ └── test.c ├── mem_access_benchmark │ ├── Makefile │ ├── mmap.json │ ├── oram.json │ ├── oram_suvm.json │ ├── suvm.json │ └── test.c ├── memcached │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Cosmix.mk │ ├── Graphene.mk │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README.md │ ├── aclocal.m4 │ ├── assoc.c │ ├── assoc.h │ ├── cache.c │ ├── cache.h │ ├── compile │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── daemon.c │ ├── depcomp │ ├── doc │ │ ├── CONTRIBUTORS │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── memcached.1 │ │ ├── protocol-binary-range.xml │ │ ├── protocol-binary.xml │ │ └── xml2rfc │ │ │ ├── reference.RFC.0768.xml │ │ │ ├── reference.RFC.2119.xml │ │ │ ├── rfc2629-noinc.xsl │ │ │ ├── rfc2629-other.ent │ │ │ ├── rfc2629-refchk.xsl │ │ │ ├── rfc2629-xhtml.ent │ │ │ └── rfc2629.dtd │ ├── hash.c │ ├── hash.h │ ├── install-sh │ ├── items.c │ ├── items.h │ ├── jenkins_hash.c │ ├── jenkins_hash.h │ ├── m4 │ │ └── c99-backport.m4 │ ├── memcached.c │ ├── memcached.h │ ├── memcached.manifest.template │ ├── memcached.spec │ ├── memcached_combined_ir.bc │ ├── memcached_dtrace.d │ ├── missing │ ├── murmur3_hash.c │ ├── murmur3_hash.h │ ├── protocol_binary.h │ ├── sasl_defs.c │ ├── sasl_defs.h │ ├── scripts │ │ ├── README.damemtop │ │ ├── damemtop │ │ ├── damemtop.yaml │ │ ├── mc_slab_mover │ │ ├── memcached-init │ │ ├── memcached-server.upstart │ │ ├── memcached-tool │ │ ├── memcached-tool.1 │ │ ├── memcached.service │ │ ├── memcached.sysv │ │ ├── memcached.upstart │ │ └── start-memcached │ ├── sizes.c │ ├── slabs.c │ ├── slabs.h │ ├── solaris_priv.c │ ├── stamp-h1 │ ├── stats.c │ ├── stats.h │ ├── suvm.json │ ├── t │ │ ├── 00-startup.t │ │ ├── 64bit.t │ │ ├── binary-get.t │ │ ├── binary-sasl.t │ │ ├── binary.t │ │ ├── bogus-commands.t │ │ ├── cas.t │ │ ├── daemonize.t │ │ ├── dash-M.t │ │ ├── evictions.t │ │ ├── expirations.t │ │ ├── flags.t │ │ ├── flush-all.t │ │ ├── getset.t │ │ ├── incrdecr.t │ │ ├── issue_104.t │ │ ├── issue_108.t │ │ ├── issue_14.t │ │ ├── issue_140.t │ │ ├── issue_152.t │ │ ├── issue_163.t │ │ ├── issue_183.t │ │ ├── issue_192.t │ │ ├── issue_22.t │ │ ├── issue_260.t │ │ ├── issue_29.t │ │ ├── issue_3.t │ │ ├── issue_41.t │ │ ├── issue_42.t │ │ ├── issue_50.t │ │ ├── issue_61.t │ │ ├── issue_67.t │ │ ├── issue_68.t │ │ ├── issue_70.t │ │ ├── item_size_max.t │ │ ├── lib │ │ │ └── MemcachedTest.pm │ │ ├── line-lengths.t │ │ ├── lru-crawler.t │ │ ├── lru-maintainer.t │ │ ├── lru.t │ │ ├── maxconns.t │ │ ├── multiversioning.t │ │ ├── noreply.t │ │ ├── refhang.t │ │ ├── sasl │ │ │ └── memcached.conf │ │ ├── slabs-reassign2.t │ │ ├── slabs_reassign.t │ │ ├── stats-conns.t │ │ ├── stats-detail.t │ │ ├── stats.t │ │ ├── stress-memcached.pl │ │ ├── touch.t │ │ ├── udp.t │ │ ├── unixsocket.t │ │ └── whitespace.t │ ├── temp.c │ ├── testapp.c │ ├── thread.c │ ├── timedrun.c │ ├── trace.h │ ├── util.c │ ├── util.h │ └── version.m4 ├── mmap_test │ ├── Makefile │ ├── mmap.json │ ├── test.c │ └── test.dat ├── redis-5.0.7 │ ├── .gitignore │ ├── 00-RELEASENOTES │ ├── BUGS │ ├── CONTRIBUTING │ ├── COPYING │ ├── Graphene.mk │ ├── INSTALL │ ├── MANIFESTO │ ├── Makefile │ ├── README.md │ ├── deps │ │ ├── Makefile │ │ ├── README.md │ │ ├── hiredis │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ ├── ae.h │ │ │ │ ├── glib.h │ │ │ │ ├── ivykis.h │ │ │ │ ├── libev.h │ │ │ │ ├── libevent.h │ │ │ │ ├── libuv.h │ │ │ │ ├── macosx.h │ │ │ │ └── qt.h │ │ │ ├── appveyor.yml │ │ │ ├── async.c │ │ │ ├── async.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── examples │ │ │ │ ├── example-ae.c │ │ │ │ ├── example-glib.c │ │ │ │ ├── example-ivykis.c │ │ │ │ ├── example-libev.c │ │ │ │ ├── example-libevent.c │ │ │ │ ├── example-libuv.c │ │ │ │ ├── example-macosx.c │ │ │ │ ├── example-qt.cpp │ │ │ │ ├── example-qt.h │ │ │ │ └── example.c │ │ │ ├── fmacros.h │ │ │ ├── hiredis.c │ │ │ ├── hiredis.h │ │ │ ├── net.c │ │ │ ├── net.h │ │ │ ├── read.c │ │ │ ├── read.h │ │ │ ├── sds.c │ │ │ ├── sds.h │ │ │ ├── sdsalloc.h │ │ │ ├── test.c │ │ │ └── win32.h │ │ ├── jemalloc │ │ │ ├── .appveyor.yml │ │ │ ├── .autom4te.cfg │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL.md │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── TUNING.md │ │ │ ├── autogen.sh │ │ │ ├── build-aux │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ └── install-sh │ │ │ ├── config.stamp.in │ │ │ ├── configure.ac │ │ │ ├── doc │ │ │ │ ├── html.xsl.in │ │ │ │ ├── jemalloc.xml.in │ │ │ │ ├── manpages.xsl.in │ │ │ │ └── stylesheet.xsl │ │ │ ├── include │ │ │ │ ├── jemalloc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── arena_externs.h │ │ │ │ │ │ ├── arena_inlines_a.h │ │ │ │ │ │ ├── arena_inlines_b.h │ │ │ │ │ │ ├── arena_stats.h │ │ │ │ │ │ ├── arena_structs_a.h │ │ │ │ │ │ ├── arena_structs_b.h │ │ │ │ │ │ ├── arena_types.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── atomic_c11.h │ │ │ │ │ │ ├── atomic_gcc_atomic.h │ │ │ │ │ │ ├── atomic_gcc_sync.h │ │ │ │ │ │ ├── atomic_msvc.h │ │ │ │ │ │ ├── background_thread_externs.h │ │ │ │ │ │ ├── background_thread_inlines.h │ │ │ │ │ │ ├── background_thread_structs.h │ │ │ │ │ │ ├── base_externs.h │ │ │ │ │ │ ├── base_inlines.h │ │ │ │ │ │ ├── base_structs.h │ │ │ │ │ │ ├── base_types.h │ │ │ │ │ │ ├── bin.h │ │ │ │ │ │ ├── bin_stats.h │ │ │ │ │ │ ├── bit_util.h │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ ├── cache_bin.h │ │ │ │ │ │ ├── ckh.h │ │ │ │ │ │ ├── ctl.h │ │ │ │ │ │ ├── div.h │ │ │ │ │ │ ├── emitter.h │ │ │ │ │ │ ├── extent_dss.h │ │ │ │ │ │ ├── extent_externs.h │ │ │ │ │ │ ├── extent_inlines.h │ │ │ │ │ │ ├── extent_mmap.h │ │ │ │ │ │ ├── extent_structs.h │ │ │ │ │ │ ├── extent_types.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── hooks.h │ │ │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ │ ├── jemalloc_internal_externs.h │ │ │ │ │ │ ├── jemalloc_internal_includes.h │ │ │ │ │ │ ├── jemalloc_internal_inlines_a.h │ │ │ │ │ │ ├── jemalloc_internal_inlines_b.h │ │ │ │ │ │ ├── jemalloc_internal_inlines_c.h │ │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ │ ├── jemalloc_internal_types.h │ │ │ │ │ │ ├── jemalloc_preamble.h.in │ │ │ │ │ │ ├── large_externs.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── malloc_io.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── mutex_pool.h │ │ │ │ │ │ ├── mutex_prof.h │ │ │ │ │ │ ├── nstime.h │ │ │ │ │ │ ├── pages.h │ │ │ │ │ │ ├── ph.h │ │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ │ ├── private_symbols.sh │ │ │ │ │ │ ├── prng.h │ │ │ │ │ │ ├── prof_externs.h │ │ │ │ │ │ ├── prof_inlines_a.h │ │ │ │ │ │ ├── prof_inlines_b.h │ │ │ │ │ │ ├── prof_structs.h │ │ │ │ │ │ ├── prof_types.h │ │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ │ ├── ql.h │ │ │ │ │ │ ├── qr.h │ │ │ │ │ │ ├── rb.h │ │ │ │ │ │ ├── rtree.h │ │ │ │ │ │ ├── rtree_tsd.h │ │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ │ ├── smoothstep.h │ │ │ │ │ │ ├── smoothstep.sh │ │ │ │ │ │ ├── spin.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── sz.h │ │ │ │ │ │ ├── tcache_externs.h │ │ │ │ │ │ ├── tcache_inlines.h │ │ │ │ │ │ ├── tcache_structs.h │ │ │ │ │ │ ├── tcache_types.h │ │ │ │ │ │ ├── ticker.h │ │ │ │ │ │ ├── tsd.h │ │ │ │ │ │ ├── tsd_generic.h │ │ │ │ │ │ ├── tsd_malloc_thread_cleanup.h │ │ │ │ │ │ ├── tsd_tls.h │ │ │ │ │ │ ├── tsd_types.h │ │ │ │ │ │ ├── tsd_win.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ └── witness.h │ │ │ │ │ ├── jemalloc.sh │ │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ │ ├── jemalloc_rename.sh │ │ │ │ │ └── jemalloc_typedefs.h.in │ │ │ │ └── msvc_compat │ │ │ │ │ ├── C99 │ │ │ │ │ ├── stdbool.h │ │ │ │ │ └── stdint.h │ │ │ │ │ ├── strings.h │ │ │ │ │ └── windows_extra.h │ │ │ ├── jemalloc.pc.in │ │ │ ├── m4 │ │ │ │ └── ax_cxx_compile_stdcxx.m4 │ │ │ ├── msvc │ │ │ │ ├── jemalloc_vc2015.sln │ │ │ │ ├── jemalloc_vc2017.sln │ │ │ │ ├── projects │ │ │ │ │ ├── vc2015 │ │ │ │ │ │ ├── jemalloc │ │ │ │ │ │ │ ├── jemalloc.vcxproj │ │ │ │ │ │ │ └── jemalloc.vcxproj.filters │ │ │ │ │ │ └── test_threads │ │ │ │ │ │ │ ├── test_threads.vcxproj │ │ │ │ │ │ │ └── test_threads.vcxproj.filters │ │ │ │ │ └── vc2017 │ │ │ │ │ │ ├── jemalloc │ │ │ │ │ │ ├── jemalloc.vcxproj │ │ │ │ │ │ └── jemalloc.vcxproj.filters │ │ │ │ │ │ └── test_threads │ │ │ │ │ │ ├── test_threads.vcxproj │ │ │ │ │ │ └── test_threads.vcxproj.filters │ │ │ │ └── test_threads │ │ │ │ │ ├── test_threads.cpp │ │ │ │ │ ├── test_threads.h │ │ │ │ │ └── test_threads_main.cpp │ │ │ ├── run_tests.sh │ │ │ ├── scripts │ │ │ │ ├── gen_run_tests.py │ │ │ │ └── gen_travis.py │ │ │ ├── src │ │ │ │ ├── arena.c │ │ │ │ ├── background_thread.c │ │ │ │ ├── base.c │ │ │ │ ├── bin.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── ckh.c │ │ │ │ ├── ctl.c │ │ │ │ ├── div.c │ │ │ │ ├── extent.c │ │ │ │ ├── extent_dss.c │ │ │ │ ├── extent_mmap.c │ │ │ │ ├── hash.c │ │ │ │ ├── hooks.c │ │ │ │ ├── jemalloc.c │ │ │ │ ├── jemalloc_cpp.cpp │ │ │ │ ├── large.c │ │ │ │ ├── log.c │ │ │ │ ├── malloc_io.c │ │ │ │ ├── mutex.c │ │ │ │ ├── mutex_pool.c │ │ │ │ ├── nstime.c │ │ │ │ ├── pages.c │ │ │ │ ├── prng.c │ │ │ │ ├── prof.c │ │ │ │ ├── rtree.c │ │ │ │ ├── stats.c │ │ │ │ ├── sz.c │ │ │ │ ├── tcache.c │ │ │ │ ├── ticker.c │ │ │ │ ├── tsd.c │ │ │ │ ├── witness.c │ │ │ │ └── zone.c │ │ │ └── test │ │ │ │ ├── include │ │ │ │ └── test │ │ │ │ │ ├── SFMT-alti.h │ │ │ │ │ ├── SFMT-params.h │ │ │ │ │ ├── SFMT-params11213.h │ │ │ │ │ ├── SFMT-params1279.h │ │ │ │ │ ├── SFMT-params132049.h │ │ │ │ │ ├── SFMT-params19937.h │ │ │ │ │ ├── SFMT-params216091.h │ │ │ │ │ ├── SFMT-params2281.h │ │ │ │ │ ├── SFMT-params4253.h │ │ │ │ │ ├── SFMT-params44497.h │ │ │ │ │ ├── SFMT-params607.h │ │ │ │ │ ├── SFMT-params86243.h │ │ │ │ │ ├── SFMT-sse2.h │ │ │ │ │ ├── SFMT.h │ │ │ │ │ ├── btalloc.h │ │ │ │ │ ├── extent_hooks.h │ │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ │ ├── math.h │ │ │ │ │ ├── mq.h │ │ │ │ │ ├── mtx.h │ │ │ │ │ ├── test.h │ │ │ │ │ ├── thd.h │ │ │ │ │ └── timer.h │ │ │ │ ├── integration │ │ │ │ ├── MALLOCX_ARENA.c │ │ │ │ ├── aligned_alloc.c │ │ │ │ ├── allocated.c │ │ │ │ ├── extent.c │ │ │ │ ├── extent.sh │ │ │ │ ├── mallocx.c │ │ │ │ ├── mallocx.sh │ │ │ │ ├── overflow.c │ │ │ │ ├── posix_memalign.c │ │ │ │ ├── rallocx.c │ │ │ │ ├── sdallocx.c │ │ │ │ ├── thread_arena.c │ │ │ │ ├── thread_tcache_enabled.c │ │ │ │ ├── xallocx.c │ │ │ │ └── xallocx.sh │ │ │ │ ├── src │ │ │ │ ├── SFMT.c │ │ │ │ ├── btalloc.c │ │ │ │ ├── btalloc_0.c │ │ │ │ ├── btalloc_1.c │ │ │ │ ├── math.c │ │ │ │ ├── mq.c │ │ │ │ ├── mtx.c │ │ │ │ ├── test.c │ │ │ │ ├── thd.c │ │ │ │ └── timer.c │ │ │ │ ├── stress │ │ │ │ └── microbench.c │ │ │ │ ├── test.sh.in │ │ │ │ └── unit │ │ │ │ ├── SFMT.c │ │ │ │ ├── a0.c │ │ │ │ ├── arena_reset.c │ │ │ │ ├── arena_reset_prof.c │ │ │ │ ├── arena_reset_prof.sh │ │ │ │ ├── atomic.c │ │ │ │ ├── background_thread.c │ │ │ │ ├── background_thread_enable.c │ │ │ │ ├── base.c │ │ │ │ ├── bit_util.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── ckh.c │ │ │ │ ├── decay.c │ │ │ │ ├── decay.sh │ │ │ │ ├── div.c │ │ │ │ ├── emitter.c │ │ │ │ ├── extent_quantize.c │ │ │ │ ├── fork.c │ │ │ │ ├── hash.c │ │ │ │ ├── hooks.c │ │ │ │ ├── junk.c │ │ │ │ ├── junk.sh │ │ │ │ ├── junk_alloc.c │ │ │ │ ├── junk_alloc.sh │ │ │ │ ├── junk_free.c │ │ │ │ ├── junk_free.sh │ │ │ │ ├── log.c │ │ │ │ ├── mallctl.c │ │ │ │ ├── malloc_io.c │ │ │ │ ├── math.c │ │ │ │ ├── mq.c │ │ │ │ ├── mtx.c │ │ │ │ ├── nstime.c │ │ │ │ ├── pack.c │ │ │ │ ├── pack.sh │ │ │ │ ├── pages.c │ │ │ │ ├── ph.c │ │ │ │ ├── prng.c │ │ │ │ ├── prof_accum.c │ │ │ │ ├── prof_accum.sh │ │ │ │ ├── prof_active.c │ │ │ │ ├── prof_active.sh │ │ │ │ ├── prof_gdump.c │ │ │ │ ├── prof_gdump.sh │ │ │ │ ├── prof_idump.c │ │ │ │ ├── prof_idump.sh │ │ │ │ ├── prof_reset.c │ │ │ │ ├── prof_reset.sh │ │ │ │ ├── prof_tctx.c │ │ │ │ ├── prof_tctx.sh │ │ │ │ ├── prof_thread_name.c │ │ │ │ ├── prof_thread_name.sh │ │ │ │ ├── ql.c │ │ │ │ ├── qr.c │ │ │ │ ├── rb.c │ │ │ │ ├── retained.c │ │ │ │ ├── rtree.c │ │ │ │ ├── size_classes.c │ │ │ │ ├── slab.c │ │ │ │ ├── smoothstep.c │ │ │ │ ├── spin.c │ │ │ │ ├── stats.c │ │ │ │ ├── stats_print.c │ │ │ │ ├── ticker.c │ │ │ │ ├── tsd.c │ │ │ │ ├── witness.c │ │ │ │ ├── zero.c │ │ │ │ └── zero.sh │ │ ├── linenoise │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── example.c │ │ │ ├── linenoise.c │ │ │ └── linenoise.h │ │ ├── lua │ │ │ ├── COPYRIGHT │ │ │ ├── HISTORY │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── contents.html │ │ │ │ ├── cover.png │ │ │ │ ├── logo.gif │ │ │ │ ├── lua.1 │ │ │ │ ├── lua.css │ │ │ │ ├── lua.html │ │ │ │ ├── luac.1 │ │ │ │ ├── luac.html │ │ │ │ ├── manual.css │ │ │ │ ├── manual.html │ │ │ │ └── readme.html │ │ │ ├── etc │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── all.c │ │ │ │ ├── lua.hpp │ │ │ │ ├── lua.ico │ │ │ │ ├── lua.pc │ │ │ │ ├── luavs.bat │ │ │ │ ├── min.c │ │ │ │ ├── noparser.c │ │ │ │ └── strict.lua │ │ │ ├── src │ │ │ │ ├── Makefile │ │ │ │ ├── fpconv.c │ │ │ │ ├── fpconv.h │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua_bit.c │ │ │ │ ├── lua_cjson.c │ │ │ │ ├── lua_cmsgpack.c │ │ │ │ ├── lua_struct.c │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ ├── lzio.h │ │ │ │ ├── print.c │ │ │ │ ├── strbuf.c │ │ │ │ └── strbuf.h │ │ │ └── test │ │ │ │ ├── README │ │ │ │ ├── bisect.lua │ │ │ │ ├── cf.lua │ │ │ │ ├── echo.lua │ │ │ │ ├── env.lua │ │ │ │ ├── factorial.lua │ │ │ │ ├── fib.lua │ │ │ │ ├── fibfor.lua │ │ │ │ ├── globals.lua │ │ │ │ ├── hello.lua │ │ │ │ ├── life.lua │ │ │ │ ├── luac.lua │ │ │ │ ├── printf.lua │ │ │ │ ├── readonly.lua │ │ │ │ ├── sieve.lua │ │ │ │ ├── sort.lua │ │ │ │ ├── table.lua │ │ │ │ ├── trace-calls.lua │ │ │ │ ├── trace-globals.lua │ │ │ │ └── xd.lua │ │ └── update-jemalloc.sh │ ├── redis-server_suvm.manifest.template │ ├── redis.conf │ ├── runtest │ ├── runtest-cluster │ ├── runtest-moduleapi │ ├── runtest-sentinel │ ├── sentinel.conf │ ├── src │ │ ├── .gitignore │ │ ├── Cosmix.mk │ │ ├── Makefile │ │ ├── adlist.c │ │ ├── adlist.h │ │ ├── ae.c │ │ ├── ae.h │ │ ├── ae_epoll.c │ │ ├── ae_evport.c │ │ ├── ae_kqueue.c │ │ ├── ae_select.c │ │ ├── anet.c │ │ ├── anet.h │ │ ├── aof.c │ │ ├── asciilogo.h │ │ ├── atomicvar.h │ │ ├── bio.c │ │ ├── bio.h │ │ ├── bitops.c │ │ ├── blocked.c │ │ ├── childinfo.c │ │ ├── cluster.c │ │ ├── cluster.h │ │ ├── config.c │ │ ├── config.h │ │ ├── crc16.c │ │ ├── crc64.c │ │ ├── crc64.h │ │ ├── db.c │ │ ├── debug.c │ │ ├── debugmacro.h │ │ ├── defrag.c │ │ ├── dict.c │ │ ├── dict.h │ │ ├── endianconv.c │ │ ├── endianconv.h │ │ ├── evict.c │ │ ├── expire.c │ │ ├── fmacros.h │ │ ├── geo.c │ │ ├── geo.h │ │ ├── geohash.c │ │ ├── geohash.h │ │ ├── geohash_helper.c │ │ ├── geohash_helper.h │ │ ├── help.h │ │ ├── hyperloglog.c │ │ ├── intset.c │ │ ├── intset.h │ │ ├── latency.c │ │ ├── latency.h │ │ ├── lazyfree.c │ │ ├── listpack.c │ │ ├── listpack.h │ │ ├── listpack_malloc.h │ │ ├── localtime.c │ │ ├── lolwut.c │ │ ├── lolwut5.c │ │ ├── lzf.h │ │ ├── lzfP.h │ │ ├── lzf_c.c │ │ ├── lzf_d.c │ │ ├── memtest.c │ │ ├── mkreleasehdr.sh │ │ ├── module.c │ │ ├── modules │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── gendoc.rb │ │ │ ├── helloblock.c │ │ │ ├── hellocluster.c │ │ │ ├── hellodict.c │ │ │ ├── hellotimer.c │ │ │ ├── hellotype.c │ │ │ ├── helloworld.c │ │ │ └── testmodule.c │ │ ├── multi.c │ │ ├── networking.c │ │ ├── notify.c │ │ ├── object.c │ │ ├── pqsort.c │ │ ├── pqsort.h │ │ ├── pubsub.c │ │ ├── quicklist.c │ │ ├── quicklist.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── rax.c │ │ ├── rax.h │ │ ├── rax_malloc.h │ │ ├── rdb.c │ │ ├── rdb.h │ │ ├── redis-benchmark.c │ │ ├── redis-check-aof.c │ │ ├── redis-check-rdb.c │ │ ├── redis-cli.c │ │ ├── redis-server_blob.bc │ │ ├── redis-trib.rb │ │ ├── redisassert.h │ │ ├── redismodule.h │ │ ├── release.c │ │ ├── replication.c │ │ ├── rio.c │ │ ├── rio.h │ │ ├── scripting.c │ │ ├── sds.c │ │ ├── sds.h │ │ ├── sdsalloc.h │ │ ├── sentinel.c │ │ ├── server.c │ │ ├── server.h │ │ ├── setproctitle.c │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── siphash.c │ │ ├── slowlog.c │ │ ├── slowlog.h │ │ ├── solarisfixes.h │ │ ├── sort.c │ │ ├── sparkline.c │ │ ├── sparkline.h │ │ ├── stream.h │ │ ├── suvm.json │ │ ├── syncio.c │ │ ├── t_hash.c │ │ ├── t_list.c │ │ ├── t_set.c │ │ ├── t_stream.c │ │ ├── t_string.c │ │ ├── t_zset.c │ │ ├── testhelp.h │ │ ├── util.c │ │ ├── util.h │ │ ├── valgrind.sup │ │ ├── version.h │ │ ├── ziplist.c │ │ ├── ziplist.h │ │ ├── zipmap.c │ │ ├── zipmap.h │ │ ├── zmalloc.c │ │ └── zmalloc.h │ ├── tests │ │ ├── assets │ │ │ └── default.conf │ │ ├── cluster │ │ │ ├── cluster.tcl │ │ │ ├── run.tcl │ │ │ ├── tests │ │ │ │ ├── 00-base.tcl │ │ │ │ ├── 01-faildet.tcl │ │ │ │ ├── 02-failover.tcl │ │ │ │ ├── 03-failover-loop.tcl │ │ │ │ ├── 04-resharding.tcl │ │ │ │ ├── 05-slave-selection.tcl │ │ │ │ ├── 06-slave-stop-cond.tcl │ │ │ │ ├── 07-replica-migration.tcl │ │ │ │ ├── 08-update-msg.tcl │ │ │ │ ├── 09-pubsub.tcl │ │ │ │ ├── 10-manual-failover.tcl │ │ │ │ ├── 11-manual-takeover.tcl │ │ │ │ ├── 12-replica-migration-2.tcl │ │ │ │ ├── 13-no-failover-option.tcl │ │ │ │ ├── helpers │ │ │ │ │ └── onlydots.tcl │ │ │ │ └── includes │ │ │ │ │ └── init-tests.tcl │ │ │ └── tmp │ │ │ │ └── .gitignore │ │ ├── helpers │ │ │ ├── bg_block_op.tcl │ │ │ ├── bg_complex_data.tcl │ │ │ └── gen_write_load.tcl │ │ ├── instances.tcl │ │ ├── integration │ │ │ ├── aof-race.tcl │ │ │ ├── aof.tcl │ │ │ ├── block-repl.tcl │ │ │ ├── convert-zipmap-hash-on-load.tcl │ │ │ ├── logging.tcl │ │ │ ├── psync2-reg.tcl │ │ │ ├── psync2.tcl │ │ │ ├── rdb.tcl │ │ │ ├── redis-cli.tcl │ │ │ ├── replication-2.tcl │ │ │ ├── replication-3.tcl │ │ │ ├── replication-4.tcl │ │ │ ├── replication-psync.tcl │ │ │ └── replication.tcl │ │ ├── modules │ │ │ ├── Makefile │ │ │ ├── commandfilter.c │ │ │ └── testrdb.c │ │ ├── sentinel │ │ │ ├── run.tcl │ │ │ ├── tests │ │ │ │ ├── 00-base.tcl │ │ │ │ ├── 01-conf-update.tcl │ │ │ │ ├── 02-slaves-reconf.tcl │ │ │ │ ├── 03-runtime-reconf.tcl │ │ │ │ ├── 04-slave-selection.tcl │ │ │ │ ├── 05-manual.tcl │ │ │ │ ├── 06-ckquorum.tcl │ │ │ │ ├── 07-down-conditions.tcl │ │ │ │ └── includes │ │ │ │ │ └── init-tests.tcl │ │ │ └── tmp │ │ │ │ └── .gitignore │ │ ├── support │ │ │ ├── cluster.tcl │ │ │ ├── redis.tcl │ │ │ ├── server.tcl │ │ │ ├── test.tcl │ │ │ ├── tmpfile.tcl │ │ │ └── util.tcl │ │ ├── test_helper.tcl │ │ └── unit │ │ │ ├── aofrw.tcl │ │ │ ├── auth.tcl │ │ │ ├── bitfield.tcl │ │ │ ├── bitops.tcl │ │ │ ├── dump.tcl │ │ │ ├── expire.tcl │ │ │ ├── geo.tcl │ │ │ ├── hyperloglog.tcl │ │ │ ├── introspection-2.tcl │ │ │ ├── introspection.tcl │ │ │ ├── keyspace.tcl │ │ │ ├── latency-monitor.tcl │ │ │ ├── lazyfree.tcl │ │ │ ├── limits.tcl │ │ │ ├── maxmemory.tcl │ │ │ ├── memefficiency.tcl │ │ │ ├── moduleapi │ │ │ ├── commandfilter.tcl │ │ │ └── testrdb.tcl │ │ │ ├── multi.tcl │ │ │ ├── obuf-limits.tcl │ │ │ ├── other.tcl │ │ │ ├── pendingquerybuf.tcl │ │ │ ├── printver.tcl │ │ │ ├── protocol.tcl │ │ │ ├── pubsub.tcl │ │ │ ├── quit.tcl │ │ │ ├── scan.tcl │ │ │ ├── scripting.tcl │ │ │ ├── slowlog.tcl │ │ │ ├── sort.tcl │ │ │ ├── type │ │ │ ├── hash.tcl │ │ │ ├── incr.tcl │ │ │ ├── list-2.tcl │ │ │ ├── list-3.tcl │ │ │ ├── list-common.tcl │ │ │ ├── list.tcl │ │ │ ├── set.tcl │ │ │ ├── stream-cgroups.tcl │ │ │ ├── stream.tcl │ │ │ ├── string.tcl │ │ │ └── zset.tcl │ │ │ └── wait.tcl │ └── utils │ │ ├── build-static-symbols.tcl │ │ ├── cluster_fail_time.tcl │ │ ├── corrupt_rdb.c │ │ ├── create-cluster │ │ ├── .gitignore │ │ ├── README │ │ └── create-cluster │ │ ├── generate-command-help.rb │ │ ├── graphs │ │ └── commits-over-time │ │ │ ├── README.md │ │ │ └── genhtml.tcl │ │ ├── hashtable │ │ ├── README │ │ └── rehashing.c │ │ ├── hyperloglog │ │ ├── .gitignore │ │ ├── hll-err.rb │ │ └── hll-gnuplot-graph.rb │ │ ├── install_server.sh │ │ ├── lru │ │ ├── README │ │ ├── lfu-simulation.c │ │ └── test-lru.rb │ │ ├── redis-copy.rb │ │ ├── redis-sha1.rb │ │ ├── redis_init_script │ │ ├── redis_init_script.tpl │ │ ├── releasetools │ │ ├── 01_create_tarball.sh │ │ ├── 02_upload_tarball.sh │ │ ├── 03_test_release.sh │ │ ├── 04_release_hash.sh │ │ └── changelog.tcl │ │ ├── speed-regression.tcl │ │ └── whatisdoing.sh └── regression │ ├── Linpack │ ├── Makefile │ ├── linpack-pc.c │ └── linpack-pc.reference_output │ ├── Makefile │ ├── Misc │ ├── LICENSE.TXT │ ├── Makefile │ ├── ReedSolomon.c │ ├── ReedSolomon.reference_output │ ├── dt.c │ ├── dt.reference_output │ ├── evalloop.c │ ├── evalloop.reference_output │ ├── fbench.c │ ├── fbench.reference_output │ ├── ffbench.c │ ├── ffbench.reference_output │ ├── flops-1.c │ ├── flops-1.reference_output │ ├── flops-1.reference_output.small │ ├── flops-2.c │ ├── flops-2.reference_output │ ├── flops-3.c │ ├── flops-3.reference_output │ ├── flops-4.c │ ├── flops-4.reference_output │ ├── flops-5.c │ ├── flops-5.reference_output │ ├── flops-6.c │ ├── flops-6.reference_output │ ├── flops-7.c │ ├── flops-7.reference_output │ ├── flops-8.c │ ├── flops-8.reference_output │ ├── flops.c │ ├── flops.reference_output │ ├── flops.reference_output.small │ ├── fp-convert.c │ ├── fp-convert.reference_output │ ├── fp-convert.reference_output.small │ ├── himenobmtxpa.c │ ├── himenobmtxpa.reference_output │ ├── lowercase.c │ ├── lowercase.reference_output │ ├── matmul_f64_4x4.c │ ├── matmul_f64_4x4.reference_output │ ├── oourafft.c │ ├── oourafft.reference_output │ ├── perlin.c │ ├── perlin.reference_output │ ├── perlin.reference_output.small │ ├── pi.c │ ├── pi.reference_output │ ├── pi.reference_output.small │ ├── revertBits.c │ ├── revertBits.reference_output │ ├── richards_benchmark.c │ ├── richards_benchmark.reference_output │ ├── richards_benchmark.reference_output.small │ ├── salsa20.c │ ├── salsa20.reference_output │ ├── whetstone.c │ ├── whetstone.reference_output │ └── whetstone.reference_output.small │ ├── SignlessTypes │ ├── cast-bug.c │ ├── cast-bug.reference_output │ ├── cast.reference_output │ ├── cast.reference_output.big-endian │ ├── cast2.c │ ├── cast2.reference_output │ ├── ccc.c │ ├── ccc.reference_output │ ├── div.c │ ├── div.reference_output │ ├── factor.c │ ├── factor.reference_output │ ├── shr.c │ └── shr.reference_output │ ├── Threads │ ├── 2010-12-08-tls.c │ └── 2010-12-08-tls.reference_output │ ├── Vectorizer │ ├── Makefile │ ├── gcc-loops.cpp │ ├── gcc-loops.reference_output.big-endian │ └── gcc-loops.reference_output.little-endian │ ├── regression │ ├── 2003-05-14-initialize-string.c │ ├── 2003-05-14-initialize-string.reference_output │ ├── 2003-05-21-BitfieldHandling.c │ ├── 2003-05-21-BitfieldHandling.reference_output │ ├── 2003-05-21-UnionBitfields.c │ ├── 2003-05-21-UnionBitfields.reference_output │ ├── 2003-05-21-UnionBitfields.reference_output.big-endian │ ├── 2003-05-21-UnionTest.c │ ├── 2003-05-21-UnionTest.reference_output │ ├── 2003-05-21-UnionTest.reference_output.big-endian │ ├── 2003-05-22-LocalTypeTest.c │ ├── 2003-05-22-LocalTypeTest.reference_output │ ├── 2003-05-22-VarSizeArray.c │ ├── 2003-05-22-VarSizeArray.reference_output │ ├── 2003-05-23-TransparentUnion.c │ ├── 2003-05-23-TransparentUnion.reference_output │ ├── 2003-06-16-InvalidInitializer.c │ ├── 2003-06-16-InvalidInitializer.reference_output │ ├── 2003-06-16-VolatileError.c │ ├── 2003-06-16-VolatileError.reference_output │ ├── 2003-10-12-GlobalVarInitializers.c │ ├── 2003-10-12-GlobalVarInitializers.reference_output │ ├── 2004-02-03-AggregateCopy.c │ ├── 2004-02-03-AggregateCopy.reference_output │ ├── 2004-03-15-IndirectGoto.c │ ├── 2004-03-15-IndirectGoto.reference_output │ ├── 2004-08-12-InlinerAndAllocas.c │ ├── 2004-08-12-InlinerAndAllocas.reference_output │ ├── 2005-05-06-LongLongSignedShift.c │ ├── 2005-05-06-LongLongSignedShift.reference_output │ ├── 2008-01-07-LongDouble.c │ ├── 2008-01-07-LongDouble.reference_output │ ├── ConstructorDestructorAttributes.c │ ├── ConstructorDestructorAttributes.reference_output │ ├── DuffsDevice.c │ ├── DuffsDevice.reference_output │ ├── Makefile │ ├── PR10189.c │ ├── PR10189.reference_output │ ├── PR1386.c │ ├── PR1386.reference_output │ ├── PR491.c │ ├── PR491.reference_output │ ├── PR640.c │ ├── PR640.reference_output │ ├── SSE │ │ ├── Makefile │ │ └── packssdw-1.c │ ├── badidx.c │ ├── badidx.reference_output │ ├── bigstack.c │ ├── bigstack.reference_output │ ├── callargs.c │ ├── callargs.reference_output │ ├── casts.c │ ├── casts.reference_output │ ├── compare.c │ ├── compare.reference_output │ ├── globalrefs.c │ ├── globalrefs.reference_output │ ├── matrixTranspose.c │ ├── matrixTranspose.reference_output │ ├── pointer_arithmetic.c │ ├── pointer_arithmetic.reference_output │ ├── sumarray.c │ ├── sumarray.reference_output │ ├── sumarray2d.c │ ├── sumarray2d.reference_output │ ├── sumarraymalloc.c │ ├── sumarraymalloc.reference_output │ ├── test_indvars.c │ ├── test_indvars.reference_output │ ├── testtrace.c │ ├── testtrace.reference_output │ └── uint64_to_float.reference_output │ ├── run_validation_suite.sh │ ├── single_source_tests │ ├── 2002-04-17-PrintfChar.c │ ├── 2002-04-17-PrintfChar.reference_output │ ├── 2002-05-02-ArgumentTest.c │ ├── 2002-05-02-ArgumentTest.reference_output │ ├── 2002-05-02-CastTest.c │ ├── 2002-05-02-CastTest.reference_output │ ├── 2002-05-02-CastTest1.c │ ├── 2002-05-02-CastTest1.reference_output │ ├── 2002-05-02-CastTest2.c │ ├── 2002-05-02-CastTest2.reference_output │ ├── 2002-05-02-CastTest3.c │ ├── 2002-05-02-CastTest3.reference_output │ ├── 2002-05-02-ManyArguments.c │ ├── 2002-05-02-ManyArguments.reference_output │ ├── 2002-05-03-NotTest.c │ ├── 2002-05-03-NotTest.reference_output │ ├── 2002-05-19-DivTest.c │ ├── 2002-05-19-DivTest.reference_output │ ├── 2002-08-02-CastTest.c │ ├── 2002-08-02-CastTest.reference_output │ ├── 2002-08-02-CastTest2.c │ ├── 2002-08-02-CastTest2.reference_output │ ├── 2002-08-19-CodegenBug.c │ ├── 2002-08-19-CodegenBug.reference_output │ ├── 2002-10-09-ArrayResolution.c │ ├── 2002-10-09-ArrayResolution.reference_output │ ├── 2002-10-12-StructureArgs.c │ ├── 2002-10-12-StructureArgs.reference_output │ ├── 2002-10-12-StructureArgsSimple.c │ ├── 2002-10-12-StructureArgsSimple.reference_output │ ├── 2002-10-13-BadLoad.c │ ├── 2002-10-13-BadLoad.reference_output │ ├── 2002-12-13-MishaTest.c │ ├── 2002-12-13-MishaTest.reference_output │ ├── 2003-04-22-Switch.c │ ├── 2003-04-22-Switch.reference_output │ ├── 2003-05-02-DependentPHI.c │ ├── 2003-05-02-DependentPHI.reference_output │ ├── 2003-05-07-VarArgs.c │ ├── 2003-05-07-VarArgs.reference_output │ ├── 2003-05-12-MinIntProblem.c │ ├── 2003-05-12-MinIntProblem.reference_output │ ├── 2003-05-14-initialize-string.c │ ├── 2003-05-14-initialize-string.reference_output │ ├── 2003-05-21-BitfieldHandling.c │ ├── 2003-05-21-BitfieldHandling.reference_output │ ├── 2003-05-21-UnionBitfields.c │ ├── 2003-05-21-UnionBitfields.reference_output │ ├── 2003-05-21-UnionBitfields.reference_output.big-endian │ ├── 2003-05-21-UnionTest.c │ ├── 2003-05-21-UnionTest.reference_output │ ├── 2003-05-21-UnionTest.reference_output.big-endian │ ├── 2003-05-22-LocalTypeTest.c │ ├── 2003-05-22-LocalTypeTest.reference_output │ ├── 2003-05-22-VarSizeArray.c │ ├── 2003-05-22-VarSizeArray.reference_output │ ├── 2003-05-23-TransparentUnion.c │ ├── 2003-05-23-TransparentUnion.reference_output │ ├── 2003-05-26-Shorts.c │ ├── 2003-05-26-Shorts.reference_output │ ├── 2003-05-31-CastToBool.c │ ├── 2003-05-31-CastToBool.reference_output │ ├── 2003-05-31-LongShifts.c │ ├── 2003-05-31-LongShifts.reference_output │ ├── 2003-06-16-InvalidInitializer.c │ ├── 2003-06-16-InvalidInitializer.reference_output │ ├── 2003-06-16-VolatileError.c │ ├── 2003-06-16-VolatileError.reference_output │ ├── 2003-07-06-IntOverflow.c │ ├── 2003-07-06-IntOverflow.reference_output │ ├── 2003-07-08-BitOpsTest.c │ ├── 2003-07-08-BitOpsTest.reference_output │ ├── 2003-07-09-LoadShorts.c │ ├── 2003-07-09-LoadShorts.reference_output │ ├── 2003-07-09-SignedArgs.c │ ├── 2003-07-09-SignedArgs.reference_output │ ├── 2003-07-10-SignConversions.c │ ├── 2003-07-10-SignConversions.reference_output │ ├── 2003-08-05-CastFPToUint.c │ ├── 2003-08-05-CastFPToUint.reference_output │ ├── 2003-08-11-VaListArg.c │ ├── 2003-08-11-VaListArg.reference_output │ ├── 2003-08-20-FoldBug.c │ ├── 2003-08-20-FoldBug.reference_output │ ├── 2003-09-18-BitFieldTest.c │ ├── 2003-09-18-BitFieldTest.reference_output │ ├── 2003-10-12-GlobalVarInitializers.c │ ├── 2003-10-12-GlobalVarInitializers.reference_output │ ├── 2003-10-13-SwitchTest.c │ ├── 2003-10-13-SwitchTest.reference_output │ ├── 2003-10-29-ScalarReplBug.c │ ├── 2003-10-29-ScalarReplBug.reference_output │ ├── 2004-02-02-NegativeZero.c │ ├── 2004-02-02-NegativeZero.reference_output │ ├── 2004-02-03-AggregateCopy.c │ ├── 2004-02-03-AggregateCopy.reference_output │ ├── 2004-03-15-IndirectGoto.c │ ├── 2004-03-15-IndirectGoto.reference_output │ ├── 2004-06-20-StaticBitfieldInit.c │ ├── 2004-06-20-StaticBitfieldInit.reference_output │ ├── 2004-08-12-InlinerAndAllocas.c │ ├── 2004-08-12-InlinerAndAllocas.reference_output │ ├── 2005-05-06-LongLongSignedShift.c │ ├── 2005-05-06-LongLongSignedShift.reference_output │ ├── 2005-05-11-Popcount-ffs-fls.c │ ├── 2005-05-11-Popcount-ffs-fls.reference_output │ ├── 2005-05-12-Int64ToFP.c │ ├── 2005-05-12-Int64ToFP.reference_output │ ├── 2005-05-13-SDivTwo.c │ ├── 2005-05-13-SDivTwo.reference_output │ ├── 2005-07-15-Bitfield-ABI.c │ ├── 2005-07-15-Bitfield-ABI.reference_output │ ├── 2005-07-17-INT-To-FP.c │ ├── 2005-07-17-INT-To-FP.reference_output │ ├── 2005-11-29-LongSwitch.c │ ├── 2005-11-29-LongSwitch.reference_output │ ├── 2006-01-23-UnionInit.c │ ├── 2006-01-23-UnionInit.reference_output │ ├── 2006-01-29-SimpleIndirectCall.c │ ├── 2006-01-29-SimpleIndirectCall.reference_output │ ├── 2006-02-04-DivRem.c │ ├── 2006-02-04-DivRem.reference_output │ ├── 2006-12-01-float_varg.c │ ├── 2006-12-01-float_varg.reference_output │ ├── 2006-12-04-DynAllocAndRestore.reference_output │ ├── 2006-12-07-Compare64BitConstant.c │ ├── 2006-12-07-Compare64BitConstant.reference_output │ ├── 2006-12-11-LoadConstants.c │ ├── 2006-12-11-LoadConstants.reference_output │ ├── 2007-01-04-KNR-Args.c │ ├── 2007-01-04-KNR-Args.reference_output │ ├── 2007-03-02-VaCopy.c │ ├── 2007-03-02-VaCopy.reference_output │ ├── 2007-04-10-BitfieldTest.c │ ├── 2007-04-10-BitfieldTest.reference_output │ ├── 2007-04-25-weak.c │ ├── 2007-04-25-weak.reference_output │ ├── 2008-01-07-LongDouble.c │ ├── 2008-01-07-LongDouble.reference_output │ ├── 2008-04-18-LoopBug.c │ ├── 2008-04-18-LoopBug.reference_output │ ├── 2008-04-20-LoopBug2.c │ ├── 2008-04-20-LoopBug2.reference_output │ ├── 2009-04-16-BitfieldInitialization.c │ ├── 2009-04-16-BitfieldInitialization.reference_output │ ├── 2009-12-07-StructReturn.c │ ├── 2009-12-07-StructReturn.reference_output │ ├── 2010-05-24-BitfieldTest.c │ ├── 2010-05-24-BitfieldTest.reference_output │ ├── AtomicOps.c │ ├── AtomicOps.reference_output │ ├── DefaultInitDynArrays.reference_output │ ├── DuffsDevice.c │ ├── DuffsDevice.reference_output │ ├── FloatPrecision.c │ ├── FloatPrecision.reference_output │ ├── Makefile │ ├── PR10189.c │ ├── PR10189.reference_output │ ├── PR1386.c │ ├── PR1386.reference_output │ ├── PR491.c │ ├── PR491.reference_output │ ├── PR640.c │ ├── PR640.reference_output │ ├── StructModifyTest.c │ ├── StructModifyTest.reference_output │ ├── TestLoop.c │ ├── TestLoop.reference_output │ ├── badidx.c │ ├── badidx.reference_output │ ├── bigstack.c │ ├── bigstack.reference_output │ ├── bit_concat_cpp.reference_output │ ├── bit_select_cpp.reference_output │ ├── bit_set_cpp.reference_output │ ├── black-copied-in-cxxobj.reference_output │ ├── block-byref-cxxobj-test.cpp │ ├── block-byref-cxxobj-test.reference_output │ ├── block-byref-test.c │ ├── block-byref-test.reference_output │ ├── block-call-r7674133.reference_output │ ├── block-copied-in-cxxobj-1.reference_output │ ├── block-copied-in-cxxobj.reference_output │ ├── blockstret.c │ ├── blockstret.reference_output │ ├── byval-alignment.c │ ├── byval-alignment.reference_output │ ├── callargs.c │ ├── callargs.reference_output │ ├── casts.c │ ├── casts.reference_output │ ├── compare.c │ ├── compare.reference_output │ ├── conditional-gnu-ext-cxx.reference_output │ ├── conditional-gnu-ext.c │ ├── conditional-gnu-ext.reference_output │ ├── constval.reference_output │ ├── cppfield.reference_output │ ├── cppfield2.reference_output │ ├── enum.reference_output │ ├── exception.reference_output │ ├── globalrefs.c │ ├── globalrefs.reference_output │ ├── initp1.reference_output │ ├── matrixTranspose.c │ ├── matrixTranspose.reference_output │ ├── member-function-pointers.reference_output │ ├── ms_struct-bitfield-1.c │ ├── ms_struct-bitfield-1.reference_output │ ├── ms_struct-bitfield-init-1.c │ ├── ms_struct-bitfield-init-1.reference_output │ ├── ms_struct-bitfield-init.c │ ├── ms_struct-bitfield-init.reference_output │ ├── ms_struct-bitfield.c │ ├── ms_struct-bitfield.reference_output │ ├── ms_struct_pack_layout-1.c │ ├── ms_struct_pack_layout-1.reference_output │ ├── ms_struct_pack_layout.c │ ├── ms_struct_pack_layout.reference_output │ ├── override.reference_output │ ├── part_select_cpp.reference_output │ ├── pointer_arithmetic.c │ ├── pointer_arithmetic.reference_output │ ├── printargs.c │ ├── printargs.reference_output │ ├── sign2.reference_output │ ├── stmtexpr.reference_output │ ├── sumarray.c │ ├── sumarray.reference_output │ ├── sumarray2d.c │ ├── sumarray2d.reference_output │ ├── sumarraymalloc.c │ ├── sumarraymalloc.reference_output │ ├── template.reference_output │ ├── template2.reference_output │ ├── template3.reference_output │ ├── test_indvars.c │ ├── test_indvars.reference_output │ ├── testtrace.c │ ├── testtrace.reference_output │ ├── vla.c │ └── vla.reference_output │ ├── suvm.json │ └── unit_tests │ ├── annotate_suvm.c │ ├── annotate_suvm.reference_output │ ├── annotate_suvm_casting.c │ ├── annotate_suvm_casting.reference_output │ ├── global_native.c │ ├── global_native.reference_output │ ├── global_suvm.c │ ├── global_suvm.reference_output │ ├── loop.c │ ├── loop.reference_output │ ├── over_threshold_suvm.c │ ├── over_threshold_suvm.reference_output │ ├── under_threshold_native.c │ ├── under_threshold_native.reference_output │ ├── unlink_suvm.c │ └── unlink_suvm.reference_output └── sgxsdk_samples └── SampleEnclave ├── .cproject ├── .project ├── .settings └── language.settings.xml ├── App ├── App.cpp └── App.h ├── Enclave ├── Enclave.config.xml ├── Enclave.cpp ├── Enclave.edl ├── Enclave.h ├── Enclave.lds └── Enclave_private.pem ├── Makefile └── suvm.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/.gitmodules -------------------------------------------------------------------------------- /Defines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/Defines.mk -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/README.md -------------------------------------------------------------------------------- /config_files/mmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/config_files/mmap.json -------------------------------------------------------------------------------- /config_files/oram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/config_files/oram.json -------------------------------------------------------------------------------- /config_files/oram_suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/config_files/oram_suvm.json -------------------------------------------------------------------------------- /config_files/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/config_files/suvm.json -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/include/common.h -------------------------------------------------------------------------------- /libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/libs/.gitignore -------------------------------------------------------------------------------- /mstores/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/Makefile -------------------------------------------------------------------------------- /mstores/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/Makefile -------------------------------------------------------------------------------- /mstores/common/PageTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/PageTable.h -------------------------------------------------------------------------------- /mstores/common/StoragePageTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/StoragePageTable.h -------------------------------------------------------------------------------- /mstores/common/SyncUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/SyncUtils.cpp -------------------------------------------------------------------------------- /mstores/common/SyncUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/SyncUtils.h -------------------------------------------------------------------------------- /mstores/common/mem_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/mem_allocator.cpp -------------------------------------------------------------------------------- /mstores/common/mem_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/mem_allocator.h -------------------------------------------------------------------------------- /mstores/common/mstore_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/mstore_common.h -------------------------------------------------------------------------------- /mstores/common/page_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/page_cache.cpp -------------------------------------------------------------------------------- /mstores/common/page_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/page_cache.h -------------------------------------------------------------------------------- /mstores/common/slab_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/slab_allocator.cpp -------------------------------------------------------------------------------- /mstores/common/slab_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/common/slab_allocator.h -------------------------------------------------------------------------------- /mstores/oram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/Makefile -------------------------------------------------------------------------------- /mstores/oram/array_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/array_tree.h -------------------------------------------------------------------------------- /mstores/oram/gen_flame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/gen_flame.sh -------------------------------------------------------------------------------- /mstores/oram/mem_oram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/mem_oram.cpp -------------------------------------------------------------------------------- /mstores/oram/mem_oram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/mem_oram.h -------------------------------------------------------------------------------- /mstores/oram/oram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/oram.cpp -------------------------------------------------------------------------------- /mstores/oram/oram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/oram.h -------------------------------------------------------------------------------- /mstores/oram/oram_prof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/oram_prof.cpp -------------------------------------------------------------------------------- /mstores/oram/oram_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/oram_tests.cpp -------------------------------------------------------------------------------- /mstores/oram/oram_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/oram_tests.h -------------------------------------------------------------------------------- /mstores/oram/test_cmov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/oram/test_cmov.cpp -------------------------------------------------------------------------------- /mstores/storage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/storage/Makefile -------------------------------------------------------------------------------- /mstores/storage/storage_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/storage/storage_runtime.cpp -------------------------------------------------------------------------------- /mstores/storage/storage_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/storage/storage_runtime.h -------------------------------------------------------------------------------- /mstores/suvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/suvm/Makefile -------------------------------------------------------------------------------- /mstores/suvm/suvm_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/suvm/suvm_runtime.cpp -------------------------------------------------------------------------------- /mstores/suvm/suvm_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/mstores/suvm/suvm_runtime.h -------------------------------------------------------------------------------- /pass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/pass/Makefile -------------------------------------------------------------------------------- /pass/cosmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/pass/cosmix.cpp -------------------------------------------------------------------------------- /pass/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/pass/json/json-forwards.h -------------------------------------------------------------------------------- /pass/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/pass/json/json.h -------------------------------------------------------------------------------- /pass/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/pass/jsoncpp.cpp -------------------------------------------------------------------------------- /runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/runtime/Makefile -------------------------------------------------------------------------------- /runtime/cosmix_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/runtime/cosmix_runtime.cpp -------------------------------------------------------------------------------- /samples/declaration_annotations/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/declaration_annotations/Makefile -------------------------------------------------------------------------------- /samples/declaration_annotations/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/declaration_annotations/suvm.json -------------------------------------------------------------------------------- /samples/declaration_annotations/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/declaration_annotations/test.c -------------------------------------------------------------------------------- /samples/global_annotation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/global_annotation/Makefile -------------------------------------------------------------------------------- /samples/global_annotation/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/global_annotation/suvm.json -------------------------------------------------------------------------------- /samples/global_annotation/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/global_annotation/test.c -------------------------------------------------------------------------------- /samples/mem_access_benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mem_access_benchmark/Makefile -------------------------------------------------------------------------------- /samples/mem_access_benchmark/mmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mem_access_benchmark/mmap.json -------------------------------------------------------------------------------- /samples/mem_access_benchmark/oram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mem_access_benchmark/oram.json -------------------------------------------------------------------------------- /samples/mem_access_benchmark/oram_suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mem_access_benchmark/oram_suvm.json -------------------------------------------------------------------------------- /samples/mem_access_benchmark/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mem_access_benchmark/suvm.json -------------------------------------------------------------------------------- /samples/mem_access_benchmark/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mem_access_benchmark/test.c -------------------------------------------------------------------------------- /samples/memcached/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/AUTHORS -------------------------------------------------------------------------------- /samples/memcached/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/COPYING -------------------------------------------------------------------------------- /samples/memcached/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/ChangeLog -------------------------------------------------------------------------------- /samples/memcached/Cosmix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/Cosmix.mk -------------------------------------------------------------------------------- /samples/memcached/Graphene.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/Graphene.mk -------------------------------------------------------------------------------- /samples/memcached/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/Makefile -------------------------------------------------------------------------------- /samples/memcached/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/Makefile.am -------------------------------------------------------------------------------- /samples/memcached/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/Makefile.in -------------------------------------------------------------------------------- /samples/memcached/NEWS: -------------------------------------------------------------------------------- 1 | http://memcached.org/ 2 | -------------------------------------------------------------------------------- /samples/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/README.md -------------------------------------------------------------------------------- /samples/memcached/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/aclocal.m4 -------------------------------------------------------------------------------- /samples/memcached/assoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/assoc.c -------------------------------------------------------------------------------- /samples/memcached/assoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/assoc.h -------------------------------------------------------------------------------- /samples/memcached/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/cache.c -------------------------------------------------------------------------------- /samples/memcached/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/cache.h -------------------------------------------------------------------------------- /samples/memcached/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/compile -------------------------------------------------------------------------------- /samples/memcached/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/config.guess -------------------------------------------------------------------------------- /samples/memcached/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/config.h -------------------------------------------------------------------------------- /samples/memcached/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/config.h.in -------------------------------------------------------------------------------- /samples/memcached/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/config.status -------------------------------------------------------------------------------- /samples/memcached/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/config.sub -------------------------------------------------------------------------------- /samples/memcached/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/configure -------------------------------------------------------------------------------- /samples/memcached/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/configure.ac -------------------------------------------------------------------------------- /samples/memcached/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/daemon.c -------------------------------------------------------------------------------- /samples/memcached/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/depcomp -------------------------------------------------------------------------------- /samples/memcached/doc/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/CONTRIBUTORS -------------------------------------------------------------------------------- /samples/memcached/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/Doxyfile -------------------------------------------------------------------------------- /samples/memcached/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/Makefile -------------------------------------------------------------------------------- /samples/memcached/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/Makefile.am -------------------------------------------------------------------------------- /samples/memcached/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/Makefile.in -------------------------------------------------------------------------------- /samples/memcached/doc/memcached.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/memcached.1 -------------------------------------------------------------------------------- /samples/memcached/doc/protocol-binary-range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/protocol-binary-range.xml -------------------------------------------------------------------------------- /samples/memcached/doc/protocol-binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/protocol-binary.xml -------------------------------------------------------------------------------- /samples/memcached/doc/xml2rfc/rfc2629-noinc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/xml2rfc/rfc2629-noinc.xsl -------------------------------------------------------------------------------- /samples/memcached/doc/xml2rfc/rfc2629-other.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/xml2rfc/rfc2629-other.ent -------------------------------------------------------------------------------- /samples/memcached/doc/xml2rfc/rfc2629-refchk.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/xml2rfc/rfc2629-refchk.xsl -------------------------------------------------------------------------------- /samples/memcached/doc/xml2rfc/rfc2629-xhtml.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/xml2rfc/rfc2629-xhtml.ent -------------------------------------------------------------------------------- /samples/memcached/doc/xml2rfc/rfc2629.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/doc/xml2rfc/rfc2629.dtd -------------------------------------------------------------------------------- /samples/memcached/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/hash.c -------------------------------------------------------------------------------- /samples/memcached/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/hash.h -------------------------------------------------------------------------------- /samples/memcached/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/install-sh -------------------------------------------------------------------------------- /samples/memcached/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/items.c -------------------------------------------------------------------------------- /samples/memcached/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/items.h -------------------------------------------------------------------------------- /samples/memcached/jenkins_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/jenkins_hash.c -------------------------------------------------------------------------------- /samples/memcached/jenkins_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/jenkins_hash.h -------------------------------------------------------------------------------- /samples/memcached/m4/c99-backport.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/m4/c99-backport.m4 -------------------------------------------------------------------------------- /samples/memcached/memcached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/memcached.c -------------------------------------------------------------------------------- /samples/memcached/memcached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/memcached.h -------------------------------------------------------------------------------- /samples/memcached/memcached.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/memcached.manifest.template -------------------------------------------------------------------------------- /samples/memcached/memcached.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/memcached.spec -------------------------------------------------------------------------------- /samples/memcached/memcached_combined_ir.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/memcached_combined_ir.bc -------------------------------------------------------------------------------- /samples/memcached/memcached_dtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/memcached_dtrace.d -------------------------------------------------------------------------------- /samples/memcached/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/missing -------------------------------------------------------------------------------- /samples/memcached/murmur3_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/murmur3_hash.c -------------------------------------------------------------------------------- /samples/memcached/murmur3_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/murmur3_hash.h -------------------------------------------------------------------------------- /samples/memcached/protocol_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/protocol_binary.h -------------------------------------------------------------------------------- /samples/memcached/sasl_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/sasl_defs.c -------------------------------------------------------------------------------- /samples/memcached/sasl_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/sasl_defs.h -------------------------------------------------------------------------------- /samples/memcached/scripts/README.damemtop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/README.damemtop -------------------------------------------------------------------------------- /samples/memcached/scripts/damemtop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/damemtop -------------------------------------------------------------------------------- /samples/memcached/scripts/damemtop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/damemtop.yaml -------------------------------------------------------------------------------- /samples/memcached/scripts/mc_slab_mover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/mc_slab_mover -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached-init -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached-server.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached-server.upstart -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached-tool -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached-tool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached-tool.1 -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached.service -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached.sysv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached.sysv -------------------------------------------------------------------------------- /samples/memcached/scripts/memcached.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/memcached.upstart -------------------------------------------------------------------------------- /samples/memcached/scripts/start-memcached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/scripts/start-memcached -------------------------------------------------------------------------------- /samples/memcached/sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/sizes.c -------------------------------------------------------------------------------- /samples/memcached/slabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/slabs.c -------------------------------------------------------------------------------- /samples/memcached/slabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/slabs.h -------------------------------------------------------------------------------- /samples/memcached/solaris_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/solaris_priv.c -------------------------------------------------------------------------------- /samples/memcached/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /samples/memcached/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/stats.c -------------------------------------------------------------------------------- /samples/memcached/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/stats.h -------------------------------------------------------------------------------- /samples/memcached/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/suvm.json -------------------------------------------------------------------------------- /samples/memcached/t/00-startup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/00-startup.t -------------------------------------------------------------------------------- /samples/memcached/t/64bit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/64bit.t -------------------------------------------------------------------------------- /samples/memcached/t/binary-get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/binary-get.t -------------------------------------------------------------------------------- /samples/memcached/t/binary-sasl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/binary-sasl.t -------------------------------------------------------------------------------- /samples/memcached/t/binary.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/binary.t -------------------------------------------------------------------------------- /samples/memcached/t/bogus-commands.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/bogus-commands.t -------------------------------------------------------------------------------- /samples/memcached/t/cas.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/cas.t -------------------------------------------------------------------------------- /samples/memcached/t/daemonize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/daemonize.t -------------------------------------------------------------------------------- /samples/memcached/t/dash-M.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/dash-M.t -------------------------------------------------------------------------------- /samples/memcached/t/evictions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/evictions.t -------------------------------------------------------------------------------- /samples/memcached/t/expirations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/expirations.t -------------------------------------------------------------------------------- /samples/memcached/t/flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/flags.t -------------------------------------------------------------------------------- /samples/memcached/t/flush-all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/flush-all.t -------------------------------------------------------------------------------- /samples/memcached/t/getset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/getset.t -------------------------------------------------------------------------------- /samples/memcached/t/incrdecr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/incrdecr.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_104.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_104.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_108.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_108.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_14.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_14.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_140.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_140.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_152.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_152.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_163.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_163.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_183.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_183.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_192.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_192.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_22.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_22.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_260.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_260.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_29.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_29.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_3.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_41.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_41.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_42.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_42.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_50.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_50.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_61.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_61.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_67.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_67.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_68.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_68.t -------------------------------------------------------------------------------- /samples/memcached/t/issue_70.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/issue_70.t -------------------------------------------------------------------------------- /samples/memcached/t/item_size_max.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/item_size_max.t -------------------------------------------------------------------------------- /samples/memcached/t/lib/MemcachedTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/lib/MemcachedTest.pm -------------------------------------------------------------------------------- /samples/memcached/t/line-lengths.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/line-lengths.t -------------------------------------------------------------------------------- /samples/memcached/t/lru-crawler.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/lru-crawler.t -------------------------------------------------------------------------------- /samples/memcached/t/lru-maintainer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/lru-maintainer.t -------------------------------------------------------------------------------- /samples/memcached/t/lru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/lru.t -------------------------------------------------------------------------------- /samples/memcached/t/maxconns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/maxconns.t -------------------------------------------------------------------------------- /samples/memcached/t/multiversioning.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/multiversioning.t -------------------------------------------------------------------------------- /samples/memcached/t/noreply.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/noreply.t -------------------------------------------------------------------------------- /samples/memcached/t/refhang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/refhang.t -------------------------------------------------------------------------------- /samples/memcached/t/sasl/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/sasl/memcached.conf -------------------------------------------------------------------------------- /samples/memcached/t/slabs-reassign2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/slabs-reassign2.t -------------------------------------------------------------------------------- /samples/memcached/t/slabs_reassign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/slabs_reassign.t -------------------------------------------------------------------------------- /samples/memcached/t/stats-conns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/stats-conns.t -------------------------------------------------------------------------------- /samples/memcached/t/stats-detail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/stats-detail.t -------------------------------------------------------------------------------- /samples/memcached/t/stats.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/stats.t -------------------------------------------------------------------------------- /samples/memcached/t/stress-memcached.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/stress-memcached.pl -------------------------------------------------------------------------------- /samples/memcached/t/touch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/touch.t -------------------------------------------------------------------------------- /samples/memcached/t/udp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/udp.t -------------------------------------------------------------------------------- /samples/memcached/t/unixsocket.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/unixsocket.t -------------------------------------------------------------------------------- /samples/memcached/t/whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/t/whitespace.t -------------------------------------------------------------------------------- /samples/memcached/temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/temp.c -------------------------------------------------------------------------------- /samples/memcached/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/testapp.c -------------------------------------------------------------------------------- /samples/memcached/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/thread.c -------------------------------------------------------------------------------- /samples/memcached/timedrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/timedrun.c -------------------------------------------------------------------------------- /samples/memcached/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/trace.h -------------------------------------------------------------------------------- /samples/memcached/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/util.c -------------------------------------------------------------------------------- /samples/memcached/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/memcached/util.h -------------------------------------------------------------------------------- /samples/memcached/version.m4: -------------------------------------------------------------------------------- 1 | m4_define([VERSION_NUMBER], [1.4.25]) 2 | -------------------------------------------------------------------------------- /samples/mmap_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mmap_test/Makefile -------------------------------------------------------------------------------- /samples/mmap_test/mmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mmap_test/mmap.json -------------------------------------------------------------------------------- /samples/mmap_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mmap_test/test.c -------------------------------------------------------------------------------- /samples/mmap_test/test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/mmap_test/test.dat -------------------------------------------------------------------------------- /samples/redis-5.0.7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/.gitignore -------------------------------------------------------------------------------- /samples/redis-5.0.7/00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/00-RELEASENOTES -------------------------------------------------------------------------------- /samples/redis-5.0.7/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/CONTRIBUTING -------------------------------------------------------------------------------- /samples/redis-5.0.7/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/COPYING -------------------------------------------------------------------------------- /samples/redis-5.0.7/Graphene.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/Graphene.mk -------------------------------------------------------------------------------- /samples/redis-5.0.7/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/MANIFESTO -------------------------------------------------------------------------------- /samples/redis-5.0.7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/README.md -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/README.md -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/COPYING -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/README.md -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/adapters/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/adapters/glib.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/adapters/ivykis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/adapters/ivykis.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/adapters/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/adapters/qt.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/appveyor.yml -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/async.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/async.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/dict.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/dict.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/net.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/net.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/read.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/read.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/sds.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/sds.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/test.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/hiredis/win32.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/.appveyor.yml -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/.autom4te.cfg -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/.travis.yml -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/INSTALL.md -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/TUNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/TUNING.md -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/jemalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/jemalloc.pc.in -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/msvc/test_threads/test_threads.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_threads(); 4 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/run_tests.sh: -------------------------------------------------------------------------------- 1 | $(dirname "$)")/scripts/gen_run_tests.py | bash 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/bin.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/div.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/hooks.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/large.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/log.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/nstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/nstime.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/pages.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/prng.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/sz.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/ticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/ticker.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/witness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/witness.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/src/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/src/mq.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/src/mtx.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/src/thd.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/a0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/unit/a0.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/junk_alloc.c: -------------------------------------------------------------------------------- 1 | #include "junk.c" 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/junk_free.c: -------------------------------------------------------------------------------- 1 | #include "junk.c" 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/unit/mq.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/ph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/unit/ph.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/unit/ql.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/unit/qr.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/jemalloc/test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/jemalloc/test/unit/rb.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/linenoise/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/linenoise/example.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/HISTORY -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/INSTALL -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/all.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/min.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/linit.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/llex.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/llex.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lua.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lua.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lua_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lua_bit.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lua_cjson.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lua_cmsgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lua_cmsgpack.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lua_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lua_struct.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/luac.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/print.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/env.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/life.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/readonly.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/table.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /samples/redis-5.0.7/deps/update-jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/deps/update-jemalloc.sh -------------------------------------------------------------------------------- /samples/redis-5.0.7/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/redis.conf -------------------------------------------------------------------------------- /samples/redis-5.0.7/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/runtest -------------------------------------------------------------------------------- /samples/redis-5.0.7/runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/runtest-cluster -------------------------------------------------------------------------------- /samples/redis-5.0.7/runtest-moduleapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/runtest-moduleapi -------------------------------------------------------------------------------- /samples/redis-5.0.7/runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/runtest-sentinel -------------------------------------------------------------------------------- /samples/redis-5.0.7/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/sentinel.conf -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/.gitignore -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/Cosmix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/Cosmix.mk -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/adlist.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/adlist.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ae.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ae.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ae_epoll.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ae_evport.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ae_kqueue.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ae_select.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/anet.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/anet.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/aof.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/asciilogo.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/atomicvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/atomicvar.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/bio.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/bio.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/bitops.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/blocked.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/childinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/childinfo.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/cluster.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/cluster.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/config.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/config.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/crc16.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/crc64.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/crc64.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/db.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/debug.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/debugmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/debugmacro.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/defrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/defrag.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/dict.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/dict.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/endianconv.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/endianconv.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/evict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/evict.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/expire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/expire.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/fmacros.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/geo.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/geo.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/geohash.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/geohash.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/geohash_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/geohash_helper.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/geohash_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/geohash_helper.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/help.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/hyperloglog.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/intset.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/intset.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/latency.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/latency.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lazyfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lazyfree.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/listpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/listpack.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/listpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/listpack.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/listpack_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/listpack_malloc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/localtime.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lolwut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lolwut.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lolwut5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lolwut5.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lzf.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lzfP.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lzf_c.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/lzf_d.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/memtest.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/module.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.xo 3 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/gendoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/gendoc.rb -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/helloblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/helloblock.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/hellocluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/hellocluster.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/hellodict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/hellodict.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/hellotimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/hellotimer.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/hellotype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/hellotype.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/helloworld.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/modules/testmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/modules/testmodule.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/multi.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/networking.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/notify.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/object.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/pqsort.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/pqsort.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/pubsub.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/quicklist.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/quicklist.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rand.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rand.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rax.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rax.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rax_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rax_malloc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rdb.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rdb.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redis-benchmark.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redis-check-aof.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redis-check-rdb.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redis-cli.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redis-server_blob.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redis-server_blob.bc -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redis-trib.rb -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redisassert.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/redismodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/redismodule.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/release.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/replication.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rio.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/rio.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/scripting.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sds.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sds.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sdsalloc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sentinel.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/server.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/server.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/setproctitle.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sha1.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sha1.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/siphash.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/slowlog.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/slowlog.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/solarisfixes.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sort.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sparkline.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/sparkline.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/stream.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/suvm.json -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/syncio.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/t_hash.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/t_list.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/t_set.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/t_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/t_stream.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/t_string.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/t_zset.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/testhelp.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/util.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/util.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/valgrind.sup -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "5.0.7" 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ziplist.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/ziplist.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/zipmap.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/zipmap.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/zmalloc.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/src/zmalloc.h -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/assets/default.conf -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/cluster/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/cluster/cluster.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/cluster/run.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/instances.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/integration/aof.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/integration/psync2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/integration/psync2.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/integration/rdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/integration/rdb.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/modules/Makefile -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/modules/testrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/modules/testrdb.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/sentinel/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/sentinel/run.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/support/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/support/cluster.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/support/redis.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/support/server.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/support/test.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/support/util.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/test_helper.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/auth.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/bitfield.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/bitfield.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/dump.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/expire.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/geo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/geo.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/hyperloglog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/hyperloglog.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/keyspace.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/keyspace.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/lazyfree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/lazyfree.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/limits.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/memefficiency.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/memefficiency.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/multi.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/obuf-limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/obuf-limits.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/other.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/printver.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/quit.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/scan.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/sort.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/stream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/stream.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/tests/unit/wait.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/tests/unit/wait.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/cluster_fail_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/cluster_fail_time.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/corrupt_rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/corrupt_rdb.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/create-cluster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/create-cluster/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/hashtable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/hashtable/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/hashtable/rehashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/hashtable/rehashing.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/hyperloglog/hll-err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/hyperloglog/hll-err.rb -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/install_server.sh -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/lru/README -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/lru/lfu-simulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/lru/lfu-simulation.c -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/redis-copy.rb -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/redis-sha1.rb -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/redis_init_script -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/redis_init_script.tpl -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/speed-regression.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/speed-regression.tcl -------------------------------------------------------------------------------- /samples/redis-5.0.7/utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/redis-5.0.7/utils/whatisdoing.sh -------------------------------------------------------------------------------- /samples/regression/Linpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Linpack/Makefile -------------------------------------------------------------------------------- /samples/regression/Linpack/linpack-pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Linpack/linpack-pc.c -------------------------------------------------------------------------------- /samples/regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Makefile -------------------------------------------------------------------------------- /samples/regression/Misc/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/LICENSE.TXT -------------------------------------------------------------------------------- /samples/regression/Misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/Makefile -------------------------------------------------------------------------------- /samples/regression/Misc/ReedSolomon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/ReedSolomon.c -------------------------------------------------------------------------------- /samples/regression/Misc/ReedSolomon.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/Misc/dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/dt.c -------------------------------------------------------------------------------- /samples/regression/Misc/dt.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/dt.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/evalloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/evalloop.c -------------------------------------------------------------------------------- /samples/regression/Misc/fbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/fbench.c -------------------------------------------------------------------------------- /samples/regression/Misc/fbench.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/fbench.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/ffbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/ffbench.c -------------------------------------------------------------------------------- /samples/regression/Misc/ffbench.reference_output: -------------------------------------------------------------------------------- 1 | 63 passes. No errors in results. 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/Misc/flops-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-1.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-1.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-1.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-2.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-2.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-2.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-3.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-3.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-3.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-4.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-4.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-4.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-5.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-5.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-5.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-6.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-6.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-6.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-7.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-7.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-7.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-8.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops-8.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops-8.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/flops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops.c -------------------------------------------------------------------------------- /samples/regression/Misc/flops.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/flops.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/fp-convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/fp-convert.c -------------------------------------------------------------------------------- /samples/regression/Misc/fp-convert.reference_output: -------------------------------------------------------------------------------- 1 | Total is 1.43169e+15 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/Misc/fp-convert.reference_output.small: -------------------------------------------------------------------------------- 1 | Total is 2.86337e+14 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/Misc/himenobmtxpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/himenobmtxpa.c -------------------------------------------------------------------------------- /samples/regression/Misc/lowercase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/lowercase.c -------------------------------------------------------------------------------- /samples/regression/Misc/matmul_f64_4x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/matmul_f64_4x4.c -------------------------------------------------------------------------------- /samples/regression/Misc/oourafft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/oourafft.c -------------------------------------------------------------------------------- /samples/regression/Misc/perlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/perlin.c -------------------------------------------------------------------------------- /samples/regression/Misc/perlin.reference_output: -------------------------------------------------------------------------------- 1 | 1.755618e+02 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/Misc/perlin.reference_output.small: -------------------------------------------------------------------------------- 1 | 2.748063e+01 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/Misc/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/pi.c -------------------------------------------------------------------------------- /samples/regression/Misc/pi.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/pi.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/revertBits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/revertBits.c -------------------------------------------------------------------------------- /samples/regression/Misc/richards_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/richards_benchmark.c -------------------------------------------------------------------------------- /samples/regression/Misc/salsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/salsa20.c -------------------------------------------------------------------------------- /samples/regression/Misc/salsa20.reference_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/salsa20.reference_output -------------------------------------------------------------------------------- /samples/regression/Misc/whetstone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Misc/whetstone.c -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/cast-bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/SignlessTypes/cast-bug.c -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/cast-bug.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/cast.reference_output: -------------------------------------------------------------------------------- 1 | 27ee04c09078ac1088a30aaf6bc5f456 2 | -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/cast.reference_output.big-endian: -------------------------------------------------------------------------------- 1 | a1ac06e608a5b372cb7d3e5242e839b8 2 | -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/cast2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/SignlessTypes/cast2.c -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/cast2.reference_output: -------------------------------------------------------------------------------- 1 | 17 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/ccc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/SignlessTypes/ccc.c -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/ccc.reference_output: -------------------------------------------------------------------------------- 1 | 31415926 -1 65535 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/SignlessTypes/div.c -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/SignlessTypes/factor.c -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/factor.reference_output: -------------------------------------------------------------------------------- 1 | 0 7 14 21 28 35 42 49 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/SignlessTypes/shr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/SignlessTypes/shr.c -------------------------------------------------------------------------------- /samples/regression/Threads/2010-12-08-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Threads/2010-12-08-tls.c -------------------------------------------------------------------------------- /samples/regression/Threads/2010-12-08-tls.reference_output: -------------------------------------------------------------------------------- 1 | a is 4 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/Vectorizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Vectorizer/Makefile -------------------------------------------------------------------------------- /samples/regression/Vectorizer/gcc-loops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/Vectorizer/gcc-loops.cpp -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-14-initialize-string.reference_output: -------------------------------------------------------------------------------- 1 | foo and stuff 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-21-UnionBitfields.reference_output: -------------------------------------------------------------------------------- 1 | 0 1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-21-UnionBitfields.reference_output.big-endian: -------------------------------------------------------------------------------- 1 | 0 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-21-UnionTest.reference_output: -------------------------------------------------------------------------------- 1 | 1 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-21-UnionTest.reference_output.big-endian: -------------------------------------------------------------------------------- 1 | 0 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-22-LocalTypeTest.reference_output: -------------------------------------------------------------------------------- 1 | Result is 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-22-VarSizeArray.reference_output: -------------------------------------------------------------------------------- 1 | 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-05-23-TransparentUnion.reference_output: -------------------------------------------------------------------------------- 1 | okexit 0 2 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-06-16-InvalidInitializer.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/regression/2003-06-16-VolatileError.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/regression/2004-08-12-InlinerAndAllocas.reference_output: -------------------------------------------------------------------------------- 1 | 529947 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/2005-05-06-LongLongSignedShift.reference_output: -------------------------------------------------------------------------------- 1 | -1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/DuffsDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/DuffsDevice.c -------------------------------------------------------------------------------- /samples/regression/regression/DuffsDevice.reference_output: -------------------------------------------------------------------------------- 1 | Sum is 4950 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/Makefile -------------------------------------------------------------------------------- /samples/regression/regression/PR10189.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/PR10189.c -------------------------------------------------------------------------------- /samples/regression/regression/PR10189.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/regression/PR1386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/PR1386.c -------------------------------------------------------------------------------- /samples/regression/regression/PR1386.reference_output: -------------------------------------------------------------------------------- 1 | bad bits: 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/PR491.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/PR491.c -------------------------------------------------------------------------------- /samples/regression/regression/PR491.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/regression/PR640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/PR640.c -------------------------------------------------------------------------------- /samples/regression/regression/PR640.reference_output: -------------------------------------------------------------------------------- 1 | All done. 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/SSE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/SSE/Makefile -------------------------------------------------------------------------------- /samples/regression/regression/SSE/packssdw-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/SSE/packssdw-1.c -------------------------------------------------------------------------------- /samples/regression/regression/badidx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/badidx.c -------------------------------------------------------------------------------- /samples/regression/regression/badidx.reference_output: -------------------------------------------------------------------------------- 1 | 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/bigstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/bigstack.c -------------------------------------------------------------------------------- /samples/regression/regression/callargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/callargs.c -------------------------------------------------------------------------------- /samples/regression/regression/casts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/casts.c -------------------------------------------------------------------------------- /samples/regression/regression/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/compare.c -------------------------------------------------------------------------------- /samples/regression/regression/globalrefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/globalrefs.c -------------------------------------------------------------------------------- /samples/regression/regression/matrixTranspose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/matrixTranspose.c -------------------------------------------------------------------------------- /samples/regression/regression/pointer_arithmetic.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/regression/sumarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/sumarray.c -------------------------------------------------------------------------------- /samples/regression/regression/sumarray.reference_output: -------------------------------------------------------------------------------- 1 | Produced: 15898 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/sumarray2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/sumarray2d.c -------------------------------------------------------------------------------- /samples/regression/regression/sumarray2d.reference_output: -------------------------------------------------------------------------------- 1 | Sum(Array[100,100] = 975150 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/sumarraymalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/sumarraymalloc.c -------------------------------------------------------------------------------- /samples/regression/regression/test_indvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/test_indvars.c -------------------------------------------------------------------------------- /samples/regression/regression/test_indvars.reference_output: -------------------------------------------------------------------------------- 1 | Checksum = 17997 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/regression/testtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/regression/testtrace.c -------------------------------------------------------------------------------- /samples/regression/run_validation_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/run_validation_suite.sh -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-04-17-PrintfChar.reference_output: -------------------------------------------------------------------------------- 1 | 'c' 'e' 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-05-02-CastTest1.reference_output: -------------------------------------------------------------------------------- 1 | bs0 = -1 255 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-05-02-CastTest2.reference_output: -------------------------------------------------------------------------------- 1 | us2 = 64767 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-08-02-CastTest.reference_output: -------------------------------------------------------------------------------- 1 | 64 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-08-19-CodegenBug.reference_output: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-10-09-ArrayResolution.reference_output: -------------------------------------------------------------------------------- 1 | 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-10-13-BadLoad.reference_output: -------------------------------------------------------------------------------- 1 | 65536 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2002-12-13-MishaTest.reference_output: -------------------------------------------------------------------------------- 1 | Sum is 1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-02-DependentPHI.reference_output: -------------------------------------------------------------------------------- 1 | 0 -1 2 | 1 0 3 | 2 1 4 | 3 2 5 | 4 3 6 | 5 4 7 | exit 0 8 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-12-MinIntProblem.reference_output: -------------------------------------------------------------------------------- 1 | success 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-14-initialize-string.reference_output: -------------------------------------------------------------------------------- 1 | foo and stuff 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-21-UnionBitfields.reference_output: -------------------------------------------------------------------------------- 1 | 0 1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-21-UnionBitfields.reference_output.big-endian: -------------------------------------------------------------------------------- 1 | 0 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-21-UnionTest.reference_output: -------------------------------------------------------------------------------- 1 | 1 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-21-UnionTest.reference_output.big-endian: -------------------------------------------------------------------------------- 1 | 0 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-22-LocalTypeTest.reference_output: -------------------------------------------------------------------------------- 1 | Result is 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-22-VarSizeArray.reference_output: -------------------------------------------------------------------------------- 1 | 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-05-23-TransparentUnion.reference_output: -------------------------------------------------------------------------------- 1 | okexit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-06-16-InvalidInitializer.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-06-16-VolatileError.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-07-08-BitOpsTest.reference_output: -------------------------------------------------------------------------------- 1 | -15 -1 0 -3 12 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-08-20-FoldBug.reference_output: -------------------------------------------------------------------------------- 1 | All ok 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-09-18-BitFieldTest.reference_output: -------------------------------------------------------------------------------- 1 | 0 1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-10-13-SwitchTest.reference_output: -------------------------------------------------------------------------------- 1 | GOOD 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2003-10-29-ScalarReplBug.reference_output: -------------------------------------------------------------------------------- 1 | 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2004-06-20-StaticBitfieldInit.reference_output: -------------------------------------------------------------------------------- 1 | 1 5 1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2004-08-12-InlinerAndAllocas.reference_output: -------------------------------------------------------------------------------- 1 | 529947 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2005-05-06-LongLongSignedShift.reference_output: -------------------------------------------------------------------------------- 1 | -1 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2005-07-15-Bitfield-ABI.reference_output: -------------------------------------------------------------------------------- 1 | fffffc3f 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2005-11-29-LongSwitch.reference_output: -------------------------------------------------------------------------------- 1 | foo = 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2006-01-29-SimpleIndirectCall.reference_output: -------------------------------------------------------------------------------- 1 | Goodbye, world! 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2006-12-04-DynAllocAndRestore.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2006-12-07-Compare64BitConstant.reference_output: -------------------------------------------------------------------------------- 1 | Works. 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2007-03-02-VaCopy.reference_output: -------------------------------------------------------------------------------- 1 | string abc 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2007-04-10-BitfieldTest.reference_output: -------------------------------------------------------------------------------- 1 | p = 0x24 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2007-04-25-weak.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2009-12-07-StructReturn.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/2010-05-24-BitfieldTest.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/DefaultInitDynArrays.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/DuffsDevice.reference_output: -------------------------------------------------------------------------------- 1 | Sum is 4950 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/Makefile -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR10189.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/PR10189.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR10189.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR1386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/PR1386.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR1386.reference_output: -------------------------------------------------------------------------------- 1 | bad bits: 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR491.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/PR491.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR491.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/PR640.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/PR640.reference_output: -------------------------------------------------------------------------------- 1 | All done. 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/badidx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/badidx.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/badidx.reference_output: -------------------------------------------------------------------------------- 1 | 0 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/black-copied-in-cxxobj.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/block-byref-cxxobj-test.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/block-byref-test.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/block-call-r7674133.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/block-copied-in-cxxobj-1.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/block-copied-in-cxxobj.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/blockstret.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/casts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/casts.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/compare.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/conditional-gnu-ext-cxx.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/conditional-gnu-ext.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/enum.reference_output: -------------------------------------------------------------------------------- 1 | 2ff 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/exception.reference_output: -------------------------------------------------------------------------------- 1 | int17 branch 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/initp1.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/ms_struct-bitfield-1.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/ms_struct-bitfield-init-1.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/ms_struct-bitfield-init.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/ms_struct-bitfield.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/ms_struct_pack_layout-1.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/ms_struct_pack_layout.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/pointer_arithmetic.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/printargs.reference_output: -------------------------------------------------------------------------------- 1 | #Args = 0. They are: 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/stmtexpr.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/sumarray.reference_output: -------------------------------------------------------------------------------- 1 | Produced: 15898 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/sumarray2d.reference_output: -------------------------------------------------------------------------------- 1 | Sum(Array[100,100] = 975150 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/template2.reference_output: -------------------------------------------------------------------------------- 1 | -1, 2, 2 | -1, 3 | exit 0 4 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/test_indvars.reference_output: -------------------------------------------------------------------------------- 1 | Checksum = 17997 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/single_source_tests/vla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/single_source_tests/vla.c -------------------------------------------------------------------------------- /samples/regression/single_source_tests/vla.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/suvm.json -------------------------------------------------------------------------------- /samples/regression/unit_tests/annotate_suvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/unit_tests/annotate_suvm.c -------------------------------------------------------------------------------- /samples/regression/unit_tests/annotate_suvm_casting.reference_output: -------------------------------------------------------------------------------- 1 | 2 2 | exit 0 3 | -------------------------------------------------------------------------------- /samples/regression/unit_tests/global_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/unit_tests/global_native.c -------------------------------------------------------------------------------- /samples/regression/unit_tests/global_native.reference_output: -------------------------------------------------------------------------------- 1 | y1=1 y2=2 2 | g_test2=1 3 | exit 0 4 | -------------------------------------------------------------------------------- /samples/regression/unit_tests/global_suvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/unit_tests/global_suvm.c -------------------------------------------------------------------------------- /samples/regression/unit_tests/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/unit_tests/loop.c -------------------------------------------------------------------------------- /samples/regression/unit_tests/loop.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/unit_tests/over_threshold_suvm.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/unit_tests/under_threshold_native.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /samples/regression/unit_tests/unlink_suvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/samples/regression/unit_tests/unlink_suvm.c -------------------------------------------------------------------------------- /samples/regression/unit_tests/unlink_suvm.reference_output: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/.cproject -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/.project -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/App/App.cpp -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/App/App.h -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/Enclave/Enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/Enclave/Enclave.cpp -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/Enclave/Enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/Enclave/Enclave.edl -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/Enclave/Enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/Enclave/Enclave.h -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/Enclave/Enclave.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/Enclave/Enclave.lds -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/Makefile -------------------------------------------------------------------------------- /sgxsdk_samples/SampleEnclave/suvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsl-technion/cosmix/HEAD/sgxsdk_samples/SampleEnclave/suvm.json --------------------------------------------------------------------------------