├── .gitignore ├── LICENCE ├── README.md ├── lib ├── bench.h ├── cpuid.h ├── duty_cycle.h ├── init.h ├── intel_rdt.h ├── mem_contention_iso.h ├── rdt_manager.h ├── split_lock_iso.h ├── utility.h └── vm_status.h ├── splitlock.c ├── test_cpuid.cpp ├── test_duty_cycle.cpp ├── test_intel_rdt.cpp ├── test_mem_contention_iso.cpp ├── test_power_iso.cpp ├── test_power_iso_beta.cpp ├── test_split_lock_iso.cpp ├── test_utility.cpp └── vm_info.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .vscode -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/README.md -------------------------------------------------------------------------------- /lib/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/bench.h -------------------------------------------------------------------------------- /lib/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/cpuid.h -------------------------------------------------------------------------------- /lib/duty_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/duty_cycle.h -------------------------------------------------------------------------------- /lib/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/init.h -------------------------------------------------------------------------------- /lib/intel_rdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/intel_rdt.h -------------------------------------------------------------------------------- /lib/mem_contention_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/mem_contention_iso.h -------------------------------------------------------------------------------- /lib/rdt_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/rdt_manager.h -------------------------------------------------------------------------------- /lib/split_lock_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/split_lock_iso.h -------------------------------------------------------------------------------- /lib/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/utility.h -------------------------------------------------------------------------------- /lib/vm_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/lib/vm_status.h -------------------------------------------------------------------------------- /splitlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/splitlock.c -------------------------------------------------------------------------------- /test_cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_cpuid.cpp -------------------------------------------------------------------------------- /test_duty_cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_duty_cycle.cpp -------------------------------------------------------------------------------- /test_intel_rdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_intel_rdt.cpp -------------------------------------------------------------------------------- /test_mem_contention_iso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_mem_contention_iso.cpp -------------------------------------------------------------------------------- /test_power_iso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_power_iso.cpp -------------------------------------------------------------------------------- /test_power_iso_beta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_power_iso_beta.cpp -------------------------------------------------------------------------------- /test_split_lock_iso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_split_lock_iso.cpp -------------------------------------------------------------------------------- /test_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-edu/Alita/HEAD/test_utility.cpp -------------------------------------------------------------------------------- /vm_info.cpp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------