Skip to content

sca-research/thumb-sim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thumb Timing Simulator

This repository contains a timing approximate simulator of a subset of the Thumb instruction set in the ARMv7-M architecture. It is "approximate" in the sense that I tried to accurately model the timing of each instruction according to the publicly and freely available documentation for an ARM Cortex-M0 processor. However, I have never seen the actual microarchitecture of the processor and in many cases the behavior simulated by this tool is my "best guess" of what the hardware does.

The simulator implements most instructions in Thumb (NOT Thumb-2) with the exception of those related to I/O and multithreading (e.g. WFE, WFI, SEV, etc). Some important facts about the simulator are:

  • Runs under both Linux and Mac OS X with GCC and Clang
  • There is no I/O, so the CPS instruction was repurposed to output the character in the least signigicant 8 bits of R0
  • Technically the Cortex-M0 implements the ARMv6-M architecture, so I only said Cortex-M0 above in the sense that the simulator implements a similar 3 stage pipeline

I use this tool as part of my research in hard real-time hardware garbage collection, so I only add features to the simulator as I need them. I have developed this tool to be easily extensible (to suit the future needs of my project), so there are places in the code with unfinished features or without clear purpose. Also, I have taken shortcuts where possible, for example by not freeing memory when an error occurs or when the simulation terminates.

Getting Started

CMake is required.

  1. Create an empty build directory.

  2. From the build directory run this command:

cmake /path/to/source/directory/

This will generate native build files for your platform. A specific generator can be specified using the-G *generator* flag. A [list of generators is available here.] (https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html)

  1. Run this command to compile the code.
cmake --build .

This will compile the program using your chosen generator e.g. make. Alternatively the native build system can be used manually from this point on.

Running a Program

The simulator can run programs compiled with either arm-none-eabi-gcc or clang. I have included a simple example that prints "hello world!" using arm-none-eabi-gcc. It can be compiled and run using the following commands:

make -C example
./simulator -b example/example.bin

License - MIT (Expat)

This project is licensed under the MIT (Expat) License - see the LICENSE file for details.

All contributions are welcome. Please let me know if you find any bugs, especially inaccuracies in the timing of an operation.

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.2%
  • CMake 2.1%
  • C 1.6%
  • Makefile 1.1%
  • Assembly 1.0%