├── .gitignore ├── .ycm_extra_conf.py ├── Makefile ├── README.md ├── docs ├── addr │ ├── annotated.ec2.txt │ ├── annotated.txt │ ├── ec2.txt │ ├── linux.gcc-4.9-retry.txt │ ├── linux.gcc-4.9.txt │ ├── linux.txt │ ├── osx.annotated.txt │ └── osx.txt └── paper │ ├── .gitignore │ ├── img │ ├── caches.png │ └── data │ │ ├── arch-graph-1.png │ │ ├── ec2-zoomed.png │ │ └── ec2.png │ ├── llncs.cls │ ├── paper.tex │ └── sources.bib ├── message.txt ├── run.sh └── src ├── analyze.py ├── args.c ├── graph.py ├── include └── args.h ├── measure_l1.c ├── probe.c └── timings.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/.gitignore -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/README.md -------------------------------------------------------------------------------- /docs/addr/annotated.ec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/annotated.ec2.txt -------------------------------------------------------------------------------- /docs/addr/annotated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/annotated.txt -------------------------------------------------------------------------------- /docs/addr/ec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/ec2.txt -------------------------------------------------------------------------------- /docs/addr/linux.gcc-4.9-retry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/linux.gcc-4.9-retry.txt -------------------------------------------------------------------------------- /docs/addr/linux.gcc-4.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/linux.gcc-4.9.txt -------------------------------------------------------------------------------- /docs/addr/linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/linux.txt -------------------------------------------------------------------------------- /docs/addr/osx.annotated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/osx.annotated.txt -------------------------------------------------------------------------------- /docs/addr/osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/addr/osx.txt -------------------------------------------------------------------------------- /docs/paper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/.gitignore -------------------------------------------------------------------------------- /docs/paper/img/caches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/img/caches.png -------------------------------------------------------------------------------- /docs/paper/img/data/arch-graph-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/img/data/arch-graph-1.png -------------------------------------------------------------------------------- /docs/paper/img/data/ec2-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/img/data/ec2-zoomed.png -------------------------------------------------------------------------------- /docs/paper/img/data/ec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/img/data/ec2.png -------------------------------------------------------------------------------- /docs/paper/llncs.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/llncs.cls -------------------------------------------------------------------------------- /docs/paper/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/paper.tex -------------------------------------------------------------------------------- /docs/paper/sources.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/docs/paper/sources.bib -------------------------------------------------------------------------------- /message.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/run.sh -------------------------------------------------------------------------------- /src/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/analyze.py -------------------------------------------------------------------------------- /src/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/args.c -------------------------------------------------------------------------------- /src/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/graph.py -------------------------------------------------------------------------------- /src/include/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/include/args.h -------------------------------------------------------------------------------- /src/measure_l1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/measure_l1.c -------------------------------------------------------------------------------- /src/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/probe.c -------------------------------------------------------------------------------- /src/timings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanGe42/flush-reload/HEAD/src/timings.c --------------------------------------------------------------------------------