├── .gitignore ├── CMakeLists.txt ├── README.md ├── conf_stress_tests.py ├── fillFlush.cpp ├── memsetVsMadvise.cpp ├── stress_test ├── Allocation.cpp ├── Allocation.h ├── Distribution.cpp ├── Distribution.h ├── Main.cpp ├── Mixer.cpp ├── Mixer.h ├── Producers.cpp ├── Producers.h ├── SizeConstants.h ├── ThreadObject.cpp ├── ThreadObject.h └── distributions │ ├── adfinder.txt │ ├── adindexer.txt │ └── multifeed.txt ├── summarize-internal-frag.py ├── summarize.py └── util.h /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/README.md -------------------------------------------------------------------------------- /conf_stress_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/conf_stress_tests.py -------------------------------------------------------------------------------- /fillFlush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/fillFlush.cpp -------------------------------------------------------------------------------- /memsetVsMadvise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/memsetVsMadvise.cpp -------------------------------------------------------------------------------- /stress_test/Allocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Allocation.cpp -------------------------------------------------------------------------------- /stress_test/Allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Allocation.h -------------------------------------------------------------------------------- /stress_test/Distribution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Distribution.cpp -------------------------------------------------------------------------------- /stress_test/Distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Distribution.h -------------------------------------------------------------------------------- /stress_test/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Main.cpp -------------------------------------------------------------------------------- /stress_test/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Mixer.cpp -------------------------------------------------------------------------------- /stress_test/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Mixer.h -------------------------------------------------------------------------------- /stress_test/Producers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Producers.cpp -------------------------------------------------------------------------------- /stress_test/Producers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/Producers.h -------------------------------------------------------------------------------- /stress_test/SizeConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/SizeConstants.h -------------------------------------------------------------------------------- /stress_test/ThreadObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/ThreadObject.cpp -------------------------------------------------------------------------------- /stress_test/ThreadObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/ThreadObject.h -------------------------------------------------------------------------------- /stress_test/distributions/adfinder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/distributions/adfinder.txt -------------------------------------------------------------------------------- /stress_test/distributions/adindexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/distributions/adindexer.txt -------------------------------------------------------------------------------- /stress_test/distributions/multifeed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/stress_test/distributions/multifeed.txt -------------------------------------------------------------------------------- /summarize-internal-frag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/summarize-internal-frag.py -------------------------------------------------------------------------------- /summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/summarize.py -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jemalloc/jemalloc-experiments/HEAD/util.h --------------------------------------------------------------------------------