Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is meant by the FENCE instruction in the RISC-V instruction set?

While going through the RISC-V ISA, I have seen an instruction in the memory model section (FENCE instruction). What does it mean exactly?

like image 262
Aneesh Raveendran Avatar asked Oct 15 '14 04:10

Aneesh Raveendran


1 Answers

The RISC-V ISA uses a relaxed memory model where the order of loads and stores performed by one thread may be different when seen by another. This is done to enable techniques to increase memory system performance.

For example, Thread 1 may execute:

  • Load A
  • Store B
  • Store C

But Thread 2 could see the loads and the stores out of order with regard to the first thread:

  • Store C
  • Load A
  • Store B

The FENCE ensures that all operations before the fence are observed before any operation after the fence. So if the above changed to:

Thread 1:

  • Load A
  • Store B
  • FENCE
  • Store C

Then Thread 2 would be guaranteed to see the load to A and the store to B before the store to C, but still could see the store to B before the load of A.

Thread 2:

  • Store B
  • Load A
  • Store C

Source: RISC-V ISA (Section 2.7 page 20)

like image 90
Craig S. Anderson Avatar answered Dec 06 '22 21:12

Craig S. Anderson