50 stable releases (17 major)

new 20.0.0 Apr 22, 2024
19.0.2 Apr 11, 2024
19.0.0 Mar 20, 2024
18.0.4 Apr 11, 2024
2.0.0 Nov 21, 2022

#451 in WebAssembly

Download history 49611/week @ 2024-01-01 64108/week @ 2024-01-08 81079/week @ 2024-01-15 74665/week @ 2024-01-22 75210/week @ 2024-01-29 78358/week @ 2024-02-05 77181/week @ 2024-02-12 85444/week @ 2024-02-19 88573/week @ 2024-02-26 81786/week @ 2024-03-04 87628/week @ 2024-03-11 93796/week @ 2024-03-18 80143/week @ 2024-03-25 104155/week @ 2024-04-01 99281/week @ 2024-04-08 89001/week @ 2024-04-15

377,528 downloads per month
Used in 455 crates (6 directly)

Apache-2.0 WITH LLVM-exception

16KB
142 lines

This crate provides utilities for instruction cache maintenance for JIT authors.

In self modifying codes such as when writing a JIT, special care must be taken when marking the code as ready for execution. On fully coherent architectures (X86, S390X) the data cache (D-Cache) and the instruction cache (I-Cache) are always in sync. However this is not guaranteed for all architectures such as AArch64 where these caches are not coherent with each other.

When writing new code there may be a I-cache entry for that same address which causes the processor to execute whatever was in the cache instead of the new code.

See the ARM Community - Caches and Self-Modifying Code blog post that contains a great explanation of the above. (It references AArch32 but it has a high level overview of this problem).

Usage

You should call [clear_cache] on any pages that you write with the new code that you're intending to execute. You can do this at any point in the code from the moment that you write the page up to the moment where the code is executed.

You also need to call [pipeline_flush_mt] to ensure that there isn't any invalid instruction currently in the pipeline if you are running in a multi threaded environment.

For single threaded programs you are free to omit [pipeline_flush_mt], otherwise you need to call both [clear_cache] and [pipeline_flush_mt] in that order.

Example:

#
#
#
// Invalidate the cache for all the newly written pages where we wrote our new code.
for page in newly_written_pages {
    clear_cache(page.addr, page.len)?;
}

// Once those are invalidated we also need to flush the pipeline
pipeline_flush_mt()?;

// We can now safely execute our new code.
run_code();

Warning: In order to correctly use this interface you should always call [clear_cache]. A followup call to [pipeline_flush_mt] is required if you are running in a multi-threaded environment.

Dependencies

~0–11MB
~76K SLoC