Crates.io | count_instructions |
lib.rs | count_instructions |
version | 0.1.4 |
source | src |
created_at | 2023-06-08 23:19:09.165337 |
updated_at | 2023-07-03 23:32:41.572481 |
description | Counts the instructions executed within a single function |
homepage | |
repository | https://github.com/cesarb/count_instructions |
max_upload_size | |
id | 885814 |
size | 35,746 |
Counts the instructions executed within a single function.
When developing constant-time code, it can be helpful to validate that several executions of a given function have the same number of instructions, and that the same instructions were used.
The approach used by this crate is to single-step the function using the operating system debug API, optionally recording the address of each instruction. This is currently implemented only for Linux; for other operating systems, it will fail with an error.
Using the debug API to single-step the function has several drawbacks:
On the other hand, using the debug API has the advantage of tracing the real code executed by the CPU, as generated by the compiler, instead of symbolic execution of the source code, or emulation on another architecture.
Licensed under either of
at your option.