├── .clang-format ├── .gitmodules ├── Adding_Models_and_Simulators.md ├── BUILDING.md ├── CMakeLists.txt ├── COPYING ├── LOGO_ERC-FLAG_EU.jpg ├── OPTIONS.md ├── README.md ├── cmake └── External.cmake ├── coeffs.json ├── doc ├── CMakeLists.txt └── Doxyfile.in ├── external └── CMakeLists.txt ├── src ├── Assembly_Instruction.hpp ├── CMakeLists.txt ├── Coefficients.cpp ├── Coefficients.hpp ├── Error.hpp ├── Execution.hpp ├── Factory │ ├── Abstract_Factory.hpp │ └── Abstract_Factory_Register.hpp ├── GILES.cpp ├── IO.cpp ├── IO.hpp ├── Main.cpp ├── Models │ ├── Hamming_Weight │ │ ├── Model_Hamming_Weight.cpp │ │ └── Model_Hamming_Weight.hpp │ ├── Model.hpp │ ├── Model_Math.hpp │ ├── Power │ │ ├── Model_Power.cpp │ │ └── Model_Power.hpp │ └── TEMPLATE │ │ ├── Model_TEMPLATE.cpp │ │ └── Model_TEMPLATE.hpp ├── Simulators │ ├── Emulator.hpp │ ├── TEMPLATE │ │ ├── Emulator_TEMPLATE.cpp │ │ └── Emulator_TEMPLATE.hpp │ └── Thumb_Sim │ │ ├── Emulator_Thumb_Sim.cpp │ │ └── Emulator_Thumb_Sim.hpp ├── Utility.hpp ├── Validator_Coefficients.cpp └── Validator_Coefficients.hpp ├── test ├── CMakeLists.txt ├── Test_Coefficients.cpp ├── Test_Execution.cpp ├── Test_Factory.cpp ├── Test_Validator_Coefficients.cpp └── Tests.cpp └── uml ├── Class.plantuml ├── Sequence.plantuml └── UseCase.plantuml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/.gitmodules -------------------------------------------------------------------------------- /Adding_Models_and_Simulators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/Adding_Models_and_Simulators.md -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/COPYING -------------------------------------------------------------------------------- /LOGO_ERC-FLAG_EU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/LOGO_ERC-FLAG_EU.jpg -------------------------------------------------------------------------------- /OPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/OPTIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/README.md -------------------------------------------------------------------------------- /cmake/External.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/cmake/External.cmake -------------------------------------------------------------------------------- /coeffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/coeffs.json -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /src/Assembly_Instruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Assembly_Instruction.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Coefficients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Coefficients.cpp -------------------------------------------------------------------------------- /src/Coefficients.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Coefficients.hpp -------------------------------------------------------------------------------- /src/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Error.hpp -------------------------------------------------------------------------------- /src/Execution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Execution.hpp -------------------------------------------------------------------------------- /src/Factory/Abstract_Factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Factory/Abstract_Factory.hpp -------------------------------------------------------------------------------- /src/Factory/Abstract_Factory_Register.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Factory/Abstract_Factory_Register.hpp -------------------------------------------------------------------------------- /src/GILES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/GILES.cpp -------------------------------------------------------------------------------- /src/IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/IO.cpp -------------------------------------------------------------------------------- /src/IO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/IO.hpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Models/Hamming_Weight/Model_Hamming_Weight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/Hamming_Weight/Model_Hamming_Weight.cpp -------------------------------------------------------------------------------- /src/Models/Hamming_Weight/Model_Hamming_Weight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/Hamming_Weight/Model_Hamming_Weight.hpp -------------------------------------------------------------------------------- /src/Models/Model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/Model.hpp -------------------------------------------------------------------------------- /src/Models/Model_Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/Model_Math.hpp -------------------------------------------------------------------------------- /src/Models/Power/Model_Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/Power/Model_Power.cpp -------------------------------------------------------------------------------- /src/Models/Power/Model_Power.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/Power/Model_Power.hpp -------------------------------------------------------------------------------- /src/Models/TEMPLATE/Model_TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/TEMPLATE/Model_TEMPLATE.cpp -------------------------------------------------------------------------------- /src/Models/TEMPLATE/Model_TEMPLATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Models/TEMPLATE/Model_TEMPLATE.hpp -------------------------------------------------------------------------------- /src/Simulators/Emulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Simulators/Emulator.hpp -------------------------------------------------------------------------------- /src/Simulators/TEMPLATE/Emulator_TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Simulators/TEMPLATE/Emulator_TEMPLATE.cpp -------------------------------------------------------------------------------- /src/Simulators/TEMPLATE/Emulator_TEMPLATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Simulators/TEMPLATE/Emulator_TEMPLATE.hpp -------------------------------------------------------------------------------- /src/Simulators/Thumb_Sim/Emulator_Thumb_Sim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Simulators/Thumb_Sim/Emulator_Thumb_Sim.cpp -------------------------------------------------------------------------------- /src/Simulators/Thumb_Sim/Emulator_Thumb_Sim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Simulators/Thumb_Sim/Emulator_Thumb_Sim.hpp -------------------------------------------------------------------------------- /src/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Utility.hpp -------------------------------------------------------------------------------- /src/Validator_Coefficients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Validator_Coefficients.cpp -------------------------------------------------------------------------------- /src/Validator_Coefficients.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/src/Validator_Coefficients.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Test_Coefficients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/test/Test_Coefficients.cpp -------------------------------------------------------------------------------- /test/Test_Execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/test/Test_Execution.cpp -------------------------------------------------------------------------------- /test/Test_Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/test/Test_Factory.cpp -------------------------------------------------------------------------------- /test/Test_Validator_Coefficients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/test/Test_Validator_Coefficients.cpp -------------------------------------------------------------------------------- /test/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/test/Tests.cpp -------------------------------------------------------------------------------- /uml/Class.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/uml/Class.plantuml -------------------------------------------------------------------------------- /uml/Sequence.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/uml/Sequence.plantuml -------------------------------------------------------------------------------- /uml/UseCase.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sca-research/GILES/HEAD/uml/UseCase.plantuml --------------------------------------------------------------------------------