├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── convertXML.py ├── facile.py ├── instructions.py ├── microArchConfigs.py ├── setup.cmd ├── setup.sh ├── traceTemplate.html ├── uiCA.py ├── utils.py └── x64_lib.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/README.md -------------------------------------------------------------------------------- /convertXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/convertXML.py -------------------------------------------------------------------------------- /facile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/facile.py -------------------------------------------------------------------------------- /instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/instructions.py -------------------------------------------------------------------------------- /microArchConfigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/microArchConfigs.py -------------------------------------------------------------------------------- /setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/setup.cmd -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/setup.sh -------------------------------------------------------------------------------- /traceTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/traceTemplate.html -------------------------------------------------------------------------------- /uiCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/uiCA.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/utils.py -------------------------------------------------------------------------------- /x64_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas-abel/uiCA/HEAD/x64_lib.py --------------------------------------------------------------------------------