Read adaptive counter bits for instruction at `index`. Uses Relaxed atomic load.
(&self, index: usize)
| 770 | /// Read adaptive counter bits for instruction at `index`. |
| 771 | /// Uses Relaxed atomic load. |
| 772 | pub fn read_adaptive_counter(&self, index: usize) -> u16 { |
| 773 | self.adaptive_counters[index].load(Ordering::Relaxed) |
| 774 | } |
| 775 | |
| 776 | /// Write adaptive counter bits for instruction at `index`. |
| 777 | /// Uses Relaxed atomic store. |
no test coverage detected