Write adaptive counter bits for instruction at `index`. Uses Relaxed atomic store. # Safety - `index` must be in bounds.
(&self, index: usize, value: u16)
| 779 | /// # Safety |
| 780 | /// - `index` must be in bounds. |
| 781 | pub unsafe fn write_adaptive_counter(&self, index: usize, value: u16) { |
| 782 | self.adaptive_counters[index].store(value, Ordering::Relaxed); |
| 783 | } |
| 784 | |
| 785 | /// Produce a clean copy of the bytecode suitable for serialization |
| 786 | /// (marshal) and `co_code`. Specialized opcodes are mapped back to their |
no test coverage detected