Просмотр исходного кода

spec: add inline hint for HartMaskIter::next

Signed-off-by: Woshiluo Luo <woshiluo.luo@outlook.com>
Woshiluo Luo 4 месяцев назад
Родитель
Сommit
94538522f7
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      sbi-spec/src/binary.rs

+ 1 - 0
sbi-spec/src/binary.rs

@@ -900,6 +900,7 @@ impl HartMask {
 impl Iterator for HartMaskIter {
     type Item = usize;
 
+    #[inline]
     fn next(&mut self) -> Option<Self::Item> {
         let non_visited_mask = (!self.visited_mask) & (self.inner.hart_mask);
         if non_visited_mask == 0 {