├── .gitignore ├── COPYING ├── Makefile ├── README ├── doc └── i7z.man ├── scripts ├── MAKEDEV-cpuid-msr ├── cpuinfo.c ├── i7z_rw_registers.rb └── test_cpuid_issue.cpp └── src ├── GUI ├── Makefile ├── README_GUI.txt ├── compile_me.sh ├── i7z_GUI.cpp ├── i7z_GUI.moc └── i7z_GUI.pro ├── helper_functions.c ├── i7z.c ├── i7z.h ├── i7z_Dual_Socket.c ├── i7z_Single_Socket.c ├── intel.c ├── intel.h ├── log.c └── perfmon-i7z ├── Makefile ├── README.txt ├── helper_functions.cpp ├── perfmon-i7z.cpp └── perfmon-i7z.h /.gitignore: -------------------------------------------------------------------------------- 1 | GUI/i7z_GUI 2 | i7z -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/README -------------------------------------------------------------------------------- /doc/i7z.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/doc/i7z.man -------------------------------------------------------------------------------- /scripts/MAKEDEV-cpuid-msr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/scripts/MAKEDEV-cpuid-msr -------------------------------------------------------------------------------- /scripts/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/scripts/cpuinfo.c -------------------------------------------------------------------------------- /scripts/i7z_rw_registers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/scripts/i7z_rw_registers.rb -------------------------------------------------------------------------------- /scripts/test_cpuid_issue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/scripts/test_cpuid_issue.cpp -------------------------------------------------------------------------------- /src/GUI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/GUI/Makefile -------------------------------------------------------------------------------- /src/GUI/README_GUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/GUI/README_GUI.txt -------------------------------------------------------------------------------- /src/GUI/compile_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/GUI/compile_me.sh -------------------------------------------------------------------------------- /src/GUI/i7z_GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/GUI/i7z_GUI.cpp -------------------------------------------------------------------------------- /src/GUI/i7z_GUI.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/GUI/i7z_GUI.moc -------------------------------------------------------------------------------- /src/GUI/i7z_GUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/GUI/i7z_GUI.pro -------------------------------------------------------------------------------- /src/helper_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/helper_functions.c -------------------------------------------------------------------------------- /src/i7z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/i7z.c -------------------------------------------------------------------------------- /src/i7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/i7z.h -------------------------------------------------------------------------------- /src/i7z_Dual_Socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/i7z_Dual_Socket.c -------------------------------------------------------------------------------- /src/i7z_Single_Socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/i7z_Single_Socket.c -------------------------------------------------------------------------------- /src/intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/intel.c -------------------------------------------------------------------------------- /src/intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/intel.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/log.c -------------------------------------------------------------------------------- /src/perfmon-i7z/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/perfmon-i7z/Makefile -------------------------------------------------------------------------------- /src/perfmon-i7z/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/perfmon-i7z/README.txt -------------------------------------------------------------------------------- /src/perfmon-i7z/helper_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/perfmon-i7z/helper_functions.cpp -------------------------------------------------------------------------------- /src/perfmon-i7z/perfmon-i7z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/perfmon-i7z/perfmon-i7z.cpp -------------------------------------------------------------------------------- /src/perfmon-i7z/perfmon-i7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afontenot/i7z/HEAD/src/perfmon-i7z/perfmon-i7z.h --------------------------------------------------------------------------------