├── .gitignore ├── LICENSE.txt ├── README.md ├── make_jemallocs.rb ├── make_mimalloc.rb ├── make_rpmalloc.rb ├── make_tcmallocs.rb ├── stress_mem.rb └── test_all.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/README.md -------------------------------------------------------------------------------- /make_jemallocs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/make_jemallocs.rb -------------------------------------------------------------------------------- /make_mimalloc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/make_mimalloc.rb -------------------------------------------------------------------------------- /make_rpmalloc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/make_rpmalloc.rb -------------------------------------------------------------------------------- /make_tcmallocs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/make_tcmallocs.rb -------------------------------------------------------------------------------- /stress_mem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/stress_mem.rb -------------------------------------------------------------------------------- /test_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamSaffron/allocator_bench/HEAD/test_all.rb --------------------------------------------------------------------------------