浏览代码

Merge #128

128: Add FENCE instruction r=almindor a=rmsyn



Co-authored-by: rmsyn <rmsynchls@gmail.com>
bors[bot] 2 年之前
父节点
当前提交
7b87638f61
共有 2 个文件被更改,包括 18 次插入0 次删除
  1. 4 0
      CHANGELOG.md
  2. 14 0
      src/asm.rs

+ 4 - 0
CHANGELOG.md

@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+### Added
+
+- Add `asm::fence()`, a wrapper for implementing a `fence` instruction
+
 ## [v0.10.1] - 2023-01-18
 
 ### Fixed

+ 14 - 0
src/asm.rs

@@ -41,6 +41,20 @@ instruction!(
     /// Executing an `SFENCE.VMA` instruction guarantees that any stores in the instruction stream prior to the
     /// `SFENCE.VMA` are ordered before all implicit references subsequent to the `SFENCE.VMA`.
     , sfence_vma_all, "sfence.vma");
+instruction!(
+    /// `FENCE` instruction wrapper
+    ///
+    /// The FENCE instruction is used to order device I/O and memory accesses as viewed by other RISC-V
+    /// harts and external devices or coprocessors. Any combination of device input (I), device output
+    /// (O), memory reads (R), and memory writes (W) may be ordered with respect to any combination
+    /// of the same. Informally, no other RISC-V hart or external device can observe any operation in the
+    /// successor set following a FENCE before any operation in the predecessor set preceding the FENCE.
+    /// Chapter 17 provides a precise description of the RISC-V memory consistency model.
+    ///
+    /// The FENCE instruction also orders memory reads and writes made by the hart as observed by
+    /// memory reads and writes made by an external device. However, FENCE does not order observations
+    /// of events made by an external device using any other signaling mechanism.
+    , fence, "fence");
 
 /// `SFENCE.VMA` instruction wrapper
 ///